????
Current Path : C:/opt/ |
Current File : C:/opt/tadu.sql |
-- -- PostgreSQL database cluster dump -- SET default_transaction_read_only = off; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; -- -- Roles -- CREATE ROLE geoserver; ALTER ROLE geoserver WITH SUPERUSER INHERIT NOCREATEROLE CREATEDB LOGIN NOREPLICATION NOBYPASSRLS PASSWORD 'SCRAM-SHA-256$4096:CQWw4HyPHEeTrbCNdAwzZQ==$AkNCnSKXc4g5jFsCPzfw1iM4dHwkbmekFoFnqZHsAtg=:JfVjimsbDWGZWZD3QWQFiaKd7bwNsyfQdM8IJmMPcyQ='; CREATE ROLE gitea; ALTER ROLE gitea WITH NOSUPERUSER INHERIT NOCREATEROLE NOCREATEDB LOGIN NOREPLICATION NOBYPASSRLS PASSWORD 'SCRAM-SHA-256$4096:TPIzhmF+SlAqFXR7AmF4ag==$G2lyMYLtVf76W4Ttx74y5PGoWo19axch5M9pWifl1tM=:3cxUiQKU7CRxpgMQwxY/qyNVlJaBjnA2Sm14ypUYpOE='; CREATE ROLE postgres; ALTER ROLE postgres WITH SUPERUSER INHERIT CREATEROLE CREATEDB LOGIN REPLICATION BYPASSRLS; CREATE ROLE sdoc; ALTER ROLE sdoc WITH NOSUPERUSER INHERIT NOCREATEROLE CREATEDB LOGIN NOREPLICATION NOBYPASSRLS PASSWORD 'SCRAM-SHA-256$4096:L2eObKPuv92gRdKW9ykZzw==$uFztP1Xia8NOl37IhWGcj8MobYa5Aksc9MOkvEiij/A=:h4x+MOzjbdCKKoZk0WDcrSeynF9xgner2FwI2KoJwgY='; -- -- User Configurations -- -- -- Databases -- -- -- Database "template1" dump -- \connect template1 -- -- PostgreSQL database dump -- -- Dumped from database version 15.5 -- Dumped by pg_dump version 16.1 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; -- -- PostgreSQL database dump complete -- -- -- Database "giteadb" dump -- -- -- PostgreSQL database dump -- -- Dumped from database version 15.5 -- Dumped by pg_dump version 16.1 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; -- -- Name: giteadb; Type: DATABASE; Schema: -; Owner: gitea -- CREATE DATABASE giteadb WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE_PROVIDER = libc LOCALE = 'en_US.UTF-8'; ALTER DATABASE giteadb OWNER TO gitea; \connect giteadb SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; SET default_tablespace = ''; SET default_table_access_method = heap; -- -- Name: access; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.access ( id bigint NOT NULL, user_id bigint, repo_id bigint, mode integer ); ALTER TABLE public.access OWNER TO gitea; -- -- Name: access_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.access_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.access_id_seq OWNER TO gitea; -- -- Name: access_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.access_id_seq OWNED BY public.access.id; -- -- Name: access_token; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.access_token ( id bigint NOT NULL, uid bigint, name character varying(255), token_hash character varying(255), token_salt character varying(255), token_last_eight character varying(255), scope character varying(255), created_unix bigint, updated_unix bigint ); ALTER TABLE public.access_token OWNER TO gitea; -- -- Name: access_token_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.access_token_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.access_token_id_seq OWNER TO gitea; -- -- Name: access_token_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.access_token_id_seq OWNED BY public.access_token.id; -- -- Name: action; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.action ( id bigint NOT NULL, user_id bigint, op_type integer, act_user_id bigint, repo_id bigint, comment_id bigint, is_deleted boolean DEFAULT false NOT NULL, ref_name character varying(255), is_private boolean DEFAULT false NOT NULL, content text, created_unix bigint ); ALTER TABLE public.action OWNER TO gitea; -- -- Name: action_artifact; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.action_artifact ( id bigint NOT NULL, run_id bigint, runner_id bigint, repo_id bigint, owner_id bigint, commit_sha character varying(255), storage_path character varying(255), file_size bigint, file_compressed_size bigint, content_encoding character varying(255), artifact_path character varying(255), artifact_name character varying(255), status bigint, created_unix bigint, updated_unix bigint, expired_unix bigint ); ALTER TABLE public.action_artifact OWNER TO gitea; -- -- Name: action_artifact_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.action_artifact_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.action_artifact_id_seq OWNER TO gitea; -- -- Name: action_artifact_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.action_artifact_id_seq OWNED BY public.action_artifact.id; -- -- Name: action_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.action_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.action_id_seq OWNER TO gitea; -- -- Name: action_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.action_id_seq OWNED BY public.action.id; -- -- Name: action_run; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.action_run ( id bigint NOT NULL, title character varying(255), repo_id bigint, owner_id bigint, workflow_id character varying(255), index bigint, trigger_user_id bigint, ref character varying(255), commit_sha character varying(255), is_fork_pull_request boolean, event character varying(255), event_payload text, status integer, started bigint, stopped bigint, created bigint, updated bigint, need_approval boolean, approved_by bigint, trigger_event character varying(255), version integer DEFAULT 0, schedule_id bigint ); ALTER TABLE public.action_run OWNER TO gitea; -- -- Name: action_run_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.action_run_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.action_run_id_seq OWNER TO gitea; -- -- Name: action_run_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.action_run_id_seq OWNED BY public.action_run.id; -- -- Name: action_run_index; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.action_run_index ( group_id bigint NOT NULL, max_index bigint ); ALTER TABLE public.action_run_index OWNER TO gitea; -- -- Name: action_run_job; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.action_run_job ( id bigint NOT NULL, run_id bigint, repo_id bigint, owner_id bigint, commit_sha character varying(255), is_fork_pull_request boolean, name character varying(255), attempt bigint, workflow_payload bytea, job_id character varying(255), needs text, runs_on text, task_id bigint, status integer, started bigint, stopped bigint, created bigint, updated bigint ); ALTER TABLE public.action_run_job OWNER TO gitea; -- -- Name: action_run_job_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.action_run_job_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.action_run_job_id_seq OWNER TO gitea; -- -- Name: action_run_job_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.action_run_job_id_seq OWNED BY public.action_run_job.id; -- -- Name: action_runner; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.action_runner ( id bigint NOT NULL, uuid character(36), name character varying(255), owner_id bigint, repo_id bigint, description text, base integer, repo_range character varying(255), token_hash character varying(255), token_salt character varying(255), last_online bigint, last_active bigint, agent_labels text, created bigint, updated bigint, deleted bigint, version character varying(64) ); ALTER TABLE public.action_runner OWNER TO gitea; -- -- Name: action_runner_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.action_runner_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.action_runner_id_seq OWNER TO gitea; -- -- Name: action_runner_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.action_runner_id_seq OWNED BY public.action_runner.id; -- -- Name: action_runner_token; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.action_runner_token ( id bigint NOT NULL, token character varying(255), owner_id bigint, repo_id bigint, is_active boolean, created bigint, updated bigint, deleted bigint ); ALTER TABLE public.action_runner_token OWNER TO gitea; -- -- Name: action_runner_token_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.action_runner_token_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.action_runner_token_id_seq OWNER TO gitea; -- -- Name: action_runner_token_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.action_runner_token_id_seq OWNED BY public.action_runner_token.id; -- -- Name: action_schedule; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.action_schedule ( id bigint NOT NULL, title character varying(255), specs text, repo_id bigint, owner_id bigint, workflow_id character varying(255), trigger_user_id bigint, ref character varying(255), commit_sha character varying(255), event character varying(255), event_payload text, content bytea, created bigint, updated bigint ); ALTER TABLE public.action_schedule OWNER TO gitea; -- -- Name: action_schedule_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.action_schedule_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.action_schedule_id_seq OWNER TO gitea; -- -- Name: action_schedule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.action_schedule_id_seq OWNED BY public.action_schedule.id; -- -- Name: action_schedule_spec; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.action_schedule_spec ( id bigint NOT NULL, repo_id bigint, schedule_id bigint, spec character varying(255), next bigint, prev bigint, created bigint, updated bigint ); ALTER TABLE public.action_schedule_spec OWNER TO gitea; -- -- Name: action_schedule_spec_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.action_schedule_spec_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.action_schedule_spec_id_seq OWNER TO gitea; -- -- Name: action_schedule_spec_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.action_schedule_spec_id_seq OWNED BY public.action_schedule_spec.id; -- -- Name: action_task; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.action_task ( id bigint NOT NULL, job_id bigint, attempt bigint, runner_id bigint, status integer, started bigint, stopped bigint, repo_id bigint, owner_id bigint, commit_sha character varying(255), is_fork_pull_request boolean, token_hash character varying(255), token_salt character varying(255), token_last_eight character varying(255), log_filename character varying(255), log_in_storage boolean, log_length bigint, log_size bigint, log_indexes bytea, log_expired boolean, created bigint, updated bigint ); ALTER TABLE public.action_task OWNER TO gitea; -- -- Name: action_task_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.action_task_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.action_task_id_seq OWNER TO gitea; -- -- Name: action_task_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.action_task_id_seq OWNED BY public.action_task.id; -- -- Name: action_task_output; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.action_task_output ( id bigint NOT NULL, task_id bigint, output_key character varying(255), output_value text ); ALTER TABLE public.action_task_output OWNER TO gitea; -- -- Name: action_task_output_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.action_task_output_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.action_task_output_id_seq OWNER TO gitea; -- -- Name: action_task_output_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.action_task_output_id_seq OWNED BY public.action_task_output.id; -- -- Name: action_task_step; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.action_task_step ( id bigint NOT NULL, name character varying(255), task_id bigint, index bigint, repo_id bigint, status integer, log_index bigint, log_length bigint, started bigint, stopped bigint, created bigint, updated bigint ); ALTER TABLE public.action_task_step OWNER TO gitea; -- -- Name: action_task_step_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.action_task_step_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.action_task_step_id_seq OWNER TO gitea; -- -- Name: action_task_step_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.action_task_step_id_seq OWNED BY public.action_task_step.id; -- -- Name: action_tasks_version; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.action_tasks_version ( id bigint NOT NULL, owner_id bigint, repo_id bigint, version bigint, created_unix bigint, updated_unix bigint ); ALTER TABLE public.action_tasks_version OWNER TO gitea; -- -- Name: action_tasks_version_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.action_tasks_version_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.action_tasks_version_id_seq OWNER TO gitea; -- -- Name: action_tasks_version_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.action_tasks_version_id_seq OWNED BY public.action_tasks_version.id; -- -- Name: action_variable; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.action_variable ( id bigint NOT NULL, owner_id bigint, repo_id bigint, name character varying(255) NOT NULL, data text NOT NULL, created_unix bigint NOT NULL, updated_unix bigint ); ALTER TABLE public.action_variable OWNER TO gitea; -- -- Name: action_variable_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.action_variable_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.action_variable_id_seq OWNER TO gitea; -- -- Name: action_variable_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.action_variable_id_seq OWNED BY public.action_variable.id; -- -- Name: app_state; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.app_state ( id character varying(200) NOT NULL, revision bigint, content text ); ALTER TABLE public.app_state OWNER TO gitea; -- -- Name: attachment; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.attachment ( id bigint NOT NULL, uuid uuid, repo_id bigint, issue_id bigint, release_id bigint, uploader_id bigint DEFAULT 0, comment_id bigint, name character varying(255), download_count bigint DEFAULT 0, size bigint DEFAULT 0, created_unix bigint ); ALTER TABLE public.attachment OWNER TO gitea; -- -- Name: attachment_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.attachment_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.attachment_id_seq OWNER TO gitea; -- -- Name: attachment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.attachment_id_seq OWNED BY public.attachment.id; -- -- Name: badge; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.badge ( id bigint NOT NULL, description character varying(255), image_url character varying(255) ); ALTER TABLE public.badge OWNER TO gitea; -- -- Name: badge_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.badge_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.badge_id_seq OWNER TO gitea; -- -- Name: badge_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.badge_id_seq OWNED BY public.badge.id; -- -- Name: branch; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.branch ( id bigint NOT NULL, repo_id bigint, name character varying(255) NOT NULL, commit_id character varying(255), commit_message text, pusher_id bigint, is_deleted boolean, deleted_by_id bigint, deleted_unix bigint, commit_time bigint, created_unix bigint, updated_unix bigint ); ALTER TABLE public.branch OWNER TO gitea; -- -- Name: branch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.branch_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.branch_id_seq OWNER TO gitea; -- -- Name: branch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.branch_id_seq OWNED BY public.branch.id; -- -- Name: collaboration; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.collaboration ( id bigint NOT NULL, repo_id bigint NOT NULL, user_id bigint NOT NULL, mode integer DEFAULT 2 NOT NULL, created_unix bigint, updated_unix bigint ); ALTER TABLE public.collaboration OWNER TO gitea; -- -- Name: collaboration_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.collaboration_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.collaboration_id_seq OWNER TO gitea; -- -- Name: collaboration_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.collaboration_id_seq OWNED BY public.collaboration.id; -- -- Name: comment; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.comment ( id bigint NOT NULL, type integer, poster_id bigint, original_author character varying(255), original_author_id bigint, issue_id bigint, label_id bigint, old_project_id bigint, project_id bigint, old_milestone_id bigint, milestone_id bigint, time_id bigint, assignee_id bigint, removed_assignee boolean, assignee_team_id bigint DEFAULT 0 NOT NULL, resolve_doer_id bigint, old_title character varying(255), new_title character varying(255), old_ref character varying(255), new_ref character varying(255), dependent_issue_id bigint, commit_id bigint, line bigint, tree_path character varying(255), content text, patch text, created_unix bigint, updated_unix bigint, commit_sha character varying(40), review_id bigint, invalidated boolean, ref_repo_id bigint, ref_issue_id bigint, ref_comment_id bigint, ref_action smallint, ref_is_pull boolean ); ALTER TABLE public.comment OWNER TO gitea; -- -- Name: comment_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.comment_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.comment_id_seq OWNER TO gitea; -- -- Name: comment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.comment_id_seq OWNED BY public.comment.id; -- -- Name: commit_status; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.commit_status ( id bigint NOT NULL, index bigint, repo_id bigint, state character varying(7) NOT NULL, sha character varying(64) NOT NULL, target_url text, description text, context_hash character(40), context text, creator_id bigint, created_unix bigint, updated_unix bigint ); ALTER TABLE public.commit_status OWNER TO gitea; -- -- Name: commit_status_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.commit_status_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.commit_status_id_seq OWNER TO gitea; -- -- Name: commit_status_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.commit_status_id_seq OWNED BY public.commit_status.id; -- -- Name: commit_status_index; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.commit_status_index ( id bigint NOT NULL, repo_id bigint, sha character varying(255), max_index bigint ); ALTER TABLE public.commit_status_index OWNER TO gitea; -- -- Name: commit_status_index_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.commit_status_index_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.commit_status_index_id_seq OWNER TO gitea; -- -- Name: commit_status_index_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.commit_status_index_id_seq OWNED BY public.commit_status_index.id; -- -- Name: dbfs_data; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.dbfs_data ( id bigint NOT NULL, revision bigint NOT NULL, meta_id bigint NOT NULL, blob_offset bigint NOT NULL, blob_size bigint NOT NULL, blob_data bytea NOT NULL ); ALTER TABLE public.dbfs_data OWNER TO gitea; -- -- Name: dbfs_data_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.dbfs_data_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.dbfs_data_id_seq OWNER TO gitea; -- -- Name: dbfs_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.dbfs_data_id_seq OWNED BY public.dbfs_data.id; -- -- Name: dbfs_meta; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.dbfs_meta ( id bigint NOT NULL, full_path character varying(500) NOT NULL, block_size bigint NOT NULL, file_size bigint NOT NULL, create_timestamp bigint NOT NULL, modify_timestamp bigint NOT NULL ); ALTER TABLE public.dbfs_meta OWNER TO gitea; -- -- Name: dbfs_meta_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.dbfs_meta_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.dbfs_meta_id_seq OWNER TO gitea; -- -- Name: dbfs_meta_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.dbfs_meta_id_seq OWNED BY public.dbfs_meta.id; -- -- Name: deploy_key; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.deploy_key ( id bigint NOT NULL, key_id bigint, repo_id bigint, name character varying(255), fingerprint character varying(255), mode integer DEFAULT 1 NOT NULL, created_unix bigint, updated_unix bigint ); ALTER TABLE public.deploy_key OWNER TO gitea; -- -- Name: deploy_key_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.deploy_key_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.deploy_key_id_seq OWNER TO gitea; -- -- Name: deploy_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.deploy_key_id_seq OWNED BY public.deploy_key.id; -- -- Name: email_address; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.email_address ( id bigint NOT NULL, uid bigint NOT NULL, email character varying(255) NOT NULL, lower_email character varying(255) NOT NULL, is_activated boolean, is_primary boolean DEFAULT false NOT NULL ); ALTER TABLE public.email_address OWNER TO gitea; -- -- Name: email_address_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.email_address_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.email_address_id_seq OWNER TO gitea; -- -- Name: email_address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.email_address_id_seq OWNED BY public.email_address.id; -- -- Name: email_hash; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.email_hash ( hash character varying(32) NOT NULL, email character varying(255) NOT NULL ); ALTER TABLE public.email_hash OWNER TO gitea; -- -- Name: external_login_user; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.external_login_user ( external_id character varying(255) NOT NULL, user_id bigint NOT NULL, login_source_id bigint NOT NULL, raw_data json, provider character varying(25), email character varying(255), name character varying(255), first_name character varying(255), last_name character varying(255), nick_name character varying(255), description character varying(255), avatar_url text, location character varying(255), access_token text, access_token_secret text, refresh_token text, expires_at timestamp without time zone ); ALTER TABLE public.external_login_user OWNER TO gitea; -- -- Name: follow; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.follow ( id bigint NOT NULL, user_id bigint, follow_id bigint, created_unix bigint ); ALTER TABLE public.follow OWNER TO gitea; -- -- Name: follow_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.follow_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.follow_id_seq OWNER TO gitea; -- -- Name: follow_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.follow_id_seq OWNED BY public.follow.id; -- -- Name: gpg_key; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.gpg_key ( id bigint NOT NULL, owner_id bigint NOT NULL, key_id character(16) NOT NULL, primary_key_id character(16), content text NOT NULL, created_unix bigint, expired_unix bigint, added_unix bigint, emails text, verified boolean DEFAULT false NOT NULL, can_sign boolean, can_encrypt_comms boolean, can_encrypt_storage boolean, can_certify boolean ); ALTER TABLE public.gpg_key OWNER TO gitea; -- -- Name: gpg_key_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.gpg_key_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.gpg_key_id_seq OWNER TO gitea; -- -- Name: gpg_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.gpg_key_id_seq OWNED BY public.gpg_key.id; -- -- Name: gpg_key_import; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.gpg_key_import ( key_id character(16) NOT NULL, content text NOT NULL ); ALTER TABLE public.gpg_key_import OWNER TO gitea; -- -- Name: hook_task; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.hook_task ( id bigint NOT NULL, hook_id bigint, uuid character varying(255), payload_content text, event_type character varying(255), is_delivered boolean, delivered bigint, is_succeed boolean, request_content text, response_content text ); ALTER TABLE public.hook_task OWNER TO gitea; -- -- Name: hook_task_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.hook_task_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.hook_task_id_seq OWNER TO gitea; -- -- Name: hook_task_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.hook_task_id_seq OWNED BY public.hook_task.id; -- -- Name: issue; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.issue ( id bigint NOT NULL, repo_id bigint, index bigint, poster_id bigint, original_author character varying(255), original_author_id bigint, name character varying(255), content text, milestone_id bigint, priority integer, is_closed boolean, is_pull boolean, num_comments integer, ref character varying(255), deadline_unix bigint, created_unix bigint, updated_unix bigint, closed_unix bigint, is_locked boolean DEFAULT false NOT NULL, pin_order integer DEFAULT 0 ); ALTER TABLE public.issue OWNER TO gitea; -- -- Name: issue_assignees; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.issue_assignees ( id bigint NOT NULL, assignee_id bigint, issue_id bigint ); ALTER TABLE public.issue_assignees OWNER TO gitea; -- -- Name: issue_assignees_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.issue_assignees_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.issue_assignees_id_seq OWNER TO gitea; -- -- Name: issue_assignees_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.issue_assignees_id_seq OWNED BY public.issue_assignees.id; -- -- Name: issue_content_history; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.issue_content_history ( id bigint NOT NULL, poster_id bigint, issue_id bigint, comment_id bigint, edited_unix bigint, content_text text, is_first_created boolean, is_deleted boolean ); ALTER TABLE public.issue_content_history OWNER TO gitea; -- -- Name: issue_content_history_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.issue_content_history_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.issue_content_history_id_seq OWNER TO gitea; -- -- Name: issue_content_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.issue_content_history_id_seq OWNED BY public.issue_content_history.id; -- -- Name: issue_dependency; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.issue_dependency ( id bigint NOT NULL, user_id bigint NOT NULL, issue_id bigint NOT NULL, dependency_id bigint NOT NULL, created_unix bigint, updated_unix bigint ); ALTER TABLE public.issue_dependency OWNER TO gitea; -- -- Name: issue_dependency_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.issue_dependency_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.issue_dependency_id_seq OWNER TO gitea; -- -- Name: issue_dependency_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.issue_dependency_id_seq OWNED BY public.issue_dependency.id; -- -- Name: issue_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.issue_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.issue_id_seq OWNER TO gitea; -- -- Name: issue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.issue_id_seq OWNED BY public.issue.id; -- -- Name: issue_index; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.issue_index ( group_id bigint NOT NULL, max_index bigint ); ALTER TABLE public.issue_index OWNER TO gitea; -- -- Name: issue_label; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.issue_label ( id bigint NOT NULL, issue_id bigint, label_id bigint ); ALTER TABLE public.issue_label OWNER TO gitea; -- -- Name: issue_label_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.issue_label_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.issue_label_id_seq OWNER TO gitea; -- -- Name: issue_label_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.issue_label_id_seq OWNED BY public.issue_label.id; -- -- Name: issue_user; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.issue_user ( id bigint NOT NULL, uid bigint, issue_id bigint, is_read boolean, is_mentioned boolean ); ALTER TABLE public.issue_user OWNER TO gitea; -- -- Name: issue_user_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.issue_user_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.issue_user_id_seq OWNER TO gitea; -- -- Name: issue_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.issue_user_id_seq OWNED BY public.issue_user.id; -- -- Name: issue_watch; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.issue_watch ( id bigint NOT NULL, user_id bigint NOT NULL, issue_id bigint NOT NULL, is_watching boolean NOT NULL, created_unix bigint NOT NULL, updated_unix bigint NOT NULL ); ALTER TABLE public.issue_watch OWNER TO gitea; -- -- Name: issue_watch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.issue_watch_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.issue_watch_id_seq OWNER TO gitea; -- -- Name: issue_watch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.issue_watch_id_seq OWNED BY public.issue_watch.id; -- -- Name: label; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.label ( id bigint NOT NULL, repo_id bigint, org_id bigint, name character varying(255), exclusive boolean, description character varying(255), color character varying(7), num_issues integer, num_closed_issues integer, created_unix bigint, updated_unix bigint, archived_unix bigint ); ALTER TABLE public.label OWNER TO gitea; -- -- Name: label_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.label_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.label_id_seq OWNER TO gitea; -- -- Name: label_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.label_id_seq OWNED BY public.label.id; -- -- Name: language_stat; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.language_stat ( id bigint NOT NULL, repo_id bigint NOT NULL, commit_id character varying(255), is_primary boolean, language character varying(50) NOT NULL, size bigint DEFAULT 0 NOT NULL, created_unix bigint ); ALTER TABLE public.language_stat OWNER TO gitea; -- -- Name: language_stat_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.language_stat_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.language_stat_id_seq OWNER TO gitea; -- -- Name: language_stat_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.language_stat_id_seq OWNED BY public.language_stat.id; -- -- Name: lfs_lock; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.lfs_lock ( id bigint NOT NULL, repo_id bigint NOT NULL, owner_id bigint NOT NULL, path text, created timestamp without time zone ); ALTER TABLE public.lfs_lock OWNER TO gitea; -- -- Name: lfs_lock_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.lfs_lock_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.lfs_lock_id_seq OWNER TO gitea; -- -- Name: lfs_lock_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.lfs_lock_id_seq OWNED BY public.lfs_lock.id; -- -- Name: lfs_meta_object; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.lfs_meta_object ( id bigint NOT NULL, oid character varying(255) NOT NULL, size bigint NOT NULL, repository_id bigint NOT NULL, created_unix bigint, updated_unix bigint ); ALTER TABLE public.lfs_meta_object OWNER TO gitea; -- -- Name: lfs_meta_object_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.lfs_meta_object_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.lfs_meta_object_id_seq OWNER TO gitea; -- -- Name: lfs_meta_object_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.lfs_meta_object_id_seq OWNED BY public.lfs_meta_object.id; -- -- Name: login_source; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.login_source ( id bigint NOT NULL, type integer, name character varying(255), is_active boolean DEFAULT false NOT NULL, is_sync_enabled boolean DEFAULT false NOT NULL, cfg text, created_unix bigint, updated_unix bigint ); ALTER TABLE public.login_source OWNER TO gitea; -- -- Name: login_source_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.login_source_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.login_source_id_seq OWNER TO gitea; -- -- Name: login_source_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.login_source_id_seq OWNED BY public.login_source.id; -- -- Name: milestone; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.milestone ( id bigint NOT NULL, repo_id bigint, name character varying(255), content text, is_closed boolean, num_issues integer, num_closed_issues integer, completeness integer, created_unix bigint, updated_unix bigint, deadline_unix bigint, closed_date_unix bigint ); ALTER TABLE public.milestone OWNER TO gitea; -- -- Name: milestone_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.milestone_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.milestone_id_seq OWNER TO gitea; -- -- Name: milestone_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.milestone_id_seq OWNED BY public.milestone.id; -- -- Name: mirror; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.mirror ( id bigint NOT NULL, repo_id bigint, "interval" bigint, enable_prune boolean DEFAULT true NOT NULL, updated_unix bigint, next_update_unix bigint, lfs_enabled boolean DEFAULT false NOT NULL, lfs_endpoint text, remote_address character varying(2048) ); ALTER TABLE public.mirror OWNER TO gitea; -- -- Name: mirror_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.mirror_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.mirror_id_seq OWNER TO gitea; -- -- Name: mirror_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.mirror_id_seq OWNED BY public.mirror.id; -- -- Name: notice; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.notice ( id bigint NOT NULL, type integer, description text, created_unix bigint ); ALTER TABLE public.notice OWNER TO gitea; -- -- Name: notice_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.notice_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.notice_id_seq OWNER TO gitea; -- -- Name: notice_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.notice_id_seq OWNED BY public.notice.id; -- -- Name: notification; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.notification ( id bigint NOT NULL, user_id bigint NOT NULL, repo_id bigint NOT NULL, status smallint NOT NULL, source smallint NOT NULL, issue_id bigint NOT NULL, commit_id character varying(255), comment_id bigint, updated_by bigint NOT NULL, created_unix bigint NOT NULL, updated_unix bigint NOT NULL ); ALTER TABLE public.notification OWNER TO gitea; -- -- Name: notification_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.notification_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.notification_id_seq OWNER TO gitea; -- -- Name: notification_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.notification_id_seq OWNED BY public.notification.id; -- -- Name: oauth2_application; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.oauth2_application ( id bigint NOT NULL, uid bigint, name character varying(255), client_id character varying(255), client_secret character varying(255), confidential_client boolean DEFAULT true NOT NULL, redirect_uris text, created_unix bigint, updated_unix bigint ); ALTER TABLE public.oauth2_application OWNER TO gitea; -- -- Name: oauth2_application_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.oauth2_application_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.oauth2_application_id_seq OWNER TO gitea; -- -- Name: oauth2_application_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.oauth2_application_id_seq OWNED BY public.oauth2_application.id; -- -- Name: oauth2_authorization_code; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.oauth2_authorization_code ( id bigint NOT NULL, grant_id bigint, code character varying(255), code_challenge character varying(255), code_challenge_method character varying(255), redirect_uri character varying(255), valid_until bigint ); ALTER TABLE public.oauth2_authorization_code OWNER TO gitea; -- -- Name: oauth2_authorization_code_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.oauth2_authorization_code_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.oauth2_authorization_code_id_seq OWNER TO gitea; -- -- Name: oauth2_authorization_code_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.oauth2_authorization_code_id_seq OWNED BY public.oauth2_authorization_code.id; -- -- Name: oauth2_grant; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.oauth2_grant ( id bigint NOT NULL, user_id bigint, application_id bigint, counter bigint DEFAULT 1 NOT NULL, scope text, nonce text, created_unix bigint, updated_unix bigint ); ALTER TABLE public.oauth2_grant OWNER TO gitea; -- -- Name: oauth2_grant_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.oauth2_grant_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.oauth2_grant_id_seq OWNER TO gitea; -- -- Name: oauth2_grant_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.oauth2_grant_id_seq OWNED BY public.oauth2_grant.id; -- -- Name: org_user; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.org_user ( id bigint NOT NULL, uid bigint, org_id bigint, is_public boolean ); ALTER TABLE public.org_user OWNER TO gitea; -- -- Name: org_user_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.org_user_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.org_user_id_seq OWNER TO gitea; -- -- Name: org_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.org_user_id_seq OWNED BY public.org_user.id; -- -- Name: package; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.package ( id bigint NOT NULL, owner_id bigint NOT NULL, repo_id bigint, type character varying(255) NOT NULL, name character varying(255) NOT NULL, lower_name character varying(255) NOT NULL, semver_compatible boolean DEFAULT false NOT NULL, is_internal boolean DEFAULT false NOT NULL ); ALTER TABLE public.package OWNER TO gitea; -- -- Name: package_blob; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.package_blob ( id bigint NOT NULL, size bigint DEFAULT 0 NOT NULL, hash_md5 character(32) NOT NULL, hash_sha1 character(40) NOT NULL, hash_sha256 character(64) NOT NULL, hash_sha512 character(128) NOT NULL, created_unix bigint NOT NULL ); ALTER TABLE public.package_blob OWNER TO gitea; -- -- Name: package_blob_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.package_blob_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.package_blob_id_seq OWNER TO gitea; -- -- Name: package_blob_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.package_blob_id_seq OWNED BY public.package_blob.id; -- -- Name: package_blob_upload; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.package_blob_upload ( id character varying(255) NOT NULL, bytes_received bigint DEFAULT 0 NOT NULL, hash_state_bytes bytea, created_unix bigint NOT NULL, updated_unix bigint NOT NULL ); ALTER TABLE public.package_blob_upload OWNER TO gitea; -- -- Name: package_cleanup_rule; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.package_cleanup_rule ( id bigint NOT NULL, enabled boolean DEFAULT false NOT NULL, owner_id bigint DEFAULT 0 NOT NULL, type character varying(255) NOT NULL, keep_count integer DEFAULT 0 NOT NULL, keep_pattern character varying(255) DEFAULT ''::character varying NOT NULL, remove_days integer DEFAULT 0 NOT NULL, remove_pattern character varying(255) DEFAULT ''::character varying NOT NULL, match_full_name boolean DEFAULT false NOT NULL, created_unix bigint DEFAULT 0 NOT NULL, updated_unix bigint DEFAULT 0 NOT NULL ); ALTER TABLE public.package_cleanup_rule OWNER TO gitea; -- -- Name: package_cleanup_rule_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.package_cleanup_rule_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.package_cleanup_rule_id_seq OWNER TO gitea; -- -- Name: package_cleanup_rule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.package_cleanup_rule_id_seq OWNED BY public.package_cleanup_rule.id; -- -- Name: package_file; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.package_file ( id bigint NOT NULL, version_id bigint NOT NULL, blob_id bigint NOT NULL, name character varying(255) NOT NULL, lower_name character varying(255) NOT NULL, composite_key character varying(255), is_lead boolean DEFAULT false NOT NULL, created_unix bigint NOT NULL ); ALTER TABLE public.package_file OWNER TO gitea; -- -- Name: package_file_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.package_file_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.package_file_id_seq OWNER TO gitea; -- -- Name: package_file_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.package_file_id_seq OWNED BY public.package_file.id; -- -- Name: package_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.package_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.package_id_seq OWNER TO gitea; -- -- Name: package_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.package_id_seq OWNED BY public.package.id; -- -- Name: package_property; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.package_property ( id bigint NOT NULL, ref_type bigint NOT NULL, ref_id bigint NOT NULL, name character varying(255) NOT NULL, value text NOT NULL ); ALTER TABLE public.package_property OWNER TO gitea; -- -- Name: package_property_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.package_property_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.package_property_id_seq OWNER TO gitea; -- -- Name: package_property_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.package_property_id_seq OWNED BY public.package_property.id; -- -- Name: package_version; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.package_version ( id bigint NOT NULL, package_id bigint NOT NULL, creator_id bigint DEFAULT 0 NOT NULL, version character varying(255) NOT NULL, lower_version character varying(255) NOT NULL, created_unix bigint NOT NULL, is_internal boolean DEFAULT false NOT NULL, metadata_json text, download_count bigint DEFAULT 0 NOT NULL ); ALTER TABLE public.package_version OWNER TO gitea; -- -- Name: package_version_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.package_version_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.package_version_id_seq OWNER TO gitea; -- -- Name: package_version_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.package_version_id_seq OWNED BY public.package_version.id; -- -- Name: project; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.project ( id bigint NOT NULL, title character varying(255) NOT NULL, description text, owner_id bigint, repo_id bigint, creator_id bigint NOT NULL, is_closed boolean, board_type bigint, card_type bigint, type bigint, created_unix bigint, updated_unix bigint, closed_date_unix bigint ); ALTER TABLE public.project OWNER TO gitea; -- -- Name: project_board; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.project_board ( id bigint NOT NULL, title character varying(255), "default" boolean DEFAULT false NOT NULL, sorting integer DEFAULT 0 NOT NULL, color character varying(7), project_id bigint NOT NULL, creator_id bigint NOT NULL, created_unix bigint, updated_unix bigint ); ALTER TABLE public.project_board OWNER TO gitea; -- -- Name: project_board_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.project_board_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.project_board_id_seq OWNER TO gitea; -- -- Name: project_board_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.project_board_id_seq OWNED BY public.project_board.id; -- -- Name: project_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.project_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.project_id_seq OWNER TO gitea; -- -- Name: project_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.project_id_seq OWNED BY public.project.id; -- -- Name: project_issue; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.project_issue ( id bigint NOT NULL, issue_id bigint, project_id bigint, project_board_id bigint, sorting bigint DEFAULT 0 NOT NULL ); ALTER TABLE public.project_issue OWNER TO gitea; -- -- Name: project_issue_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.project_issue_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.project_issue_id_seq OWNER TO gitea; -- -- Name: project_issue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.project_issue_id_seq OWNED BY public.project_issue.id; -- -- Name: protected_branch; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.protected_branch ( id bigint NOT NULL, repo_id bigint, branch_name character varying(255), can_push boolean DEFAULT false NOT NULL, enable_whitelist boolean, whitelist_user_i_ds text, whitelist_team_i_ds text, enable_merge_whitelist boolean DEFAULT false NOT NULL, whitelist_deploy_keys boolean DEFAULT false NOT NULL, merge_whitelist_user_i_ds text, merge_whitelist_team_i_ds text, enable_status_check boolean DEFAULT false NOT NULL, status_check_contexts text, enable_approvals_whitelist boolean DEFAULT false NOT NULL, approvals_whitelist_user_i_ds text, approvals_whitelist_team_i_ds text, required_approvals bigint DEFAULT 0 NOT NULL, block_on_rejected_reviews boolean DEFAULT false NOT NULL, block_on_official_review_requests boolean DEFAULT false NOT NULL, block_on_outdated_branch boolean DEFAULT false NOT NULL, dismiss_stale_approvals boolean DEFAULT false NOT NULL, require_signed_commits boolean DEFAULT false NOT NULL, protected_file_patterns text, unprotected_file_patterns text, created_unix bigint, updated_unix bigint ); ALTER TABLE public.protected_branch OWNER TO gitea; -- -- Name: protected_branch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.protected_branch_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.protected_branch_id_seq OWNER TO gitea; -- -- Name: protected_branch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.protected_branch_id_seq OWNED BY public.protected_branch.id; -- -- Name: protected_tag; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.protected_tag ( id bigint NOT NULL, repo_id bigint, name_pattern character varying(255), allowlist_user_i_ds text, allowlist_team_i_ds text, created_unix bigint, updated_unix bigint ); ALTER TABLE public.protected_tag OWNER TO gitea; -- -- Name: protected_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.protected_tag_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.protected_tag_id_seq OWNER TO gitea; -- -- Name: protected_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.protected_tag_id_seq OWNED BY public.protected_tag.id; -- -- Name: public_key; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.public_key ( id bigint NOT NULL, owner_id bigint NOT NULL, name character varying(255) NOT NULL, fingerprint character varying(255) NOT NULL, content text NOT NULL, mode integer DEFAULT 2 NOT NULL, type integer DEFAULT 1 NOT NULL, login_source_id bigint DEFAULT 0 NOT NULL, created_unix bigint, updated_unix bigint, verified boolean DEFAULT false NOT NULL ); ALTER TABLE public.public_key OWNER TO gitea; -- -- Name: public_key_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.public_key_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.public_key_id_seq OWNER TO gitea; -- -- Name: public_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.public_key_id_seq OWNED BY public.public_key.id; -- -- Name: pull_auto_merge; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.pull_auto_merge ( id bigint NOT NULL, pull_id bigint, doer_id bigint NOT NULL, merge_style character varying(30), message text, created_unix bigint ); ALTER TABLE public.pull_auto_merge OWNER TO gitea; -- -- Name: pull_auto_merge_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.pull_auto_merge_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.pull_auto_merge_id_seq OWNER TO gitea; -- -- Name: pull_auto_merge_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.pull_auto_merge_id_seq OWNED BY public.pull_auto_merge.id; -- -- Name: pull_request; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.pull_request ( id bigint NOT NULL, type integer, status integer, conflicted_files json, commits_ahead integer, commits_behind integer, changed_protected_files json, issue_id bigint, index bigint, head_repo_id bigint, base_repo_id bigint, head_branch character varying(255), base_branch character varying(255), merge_base character varying(40), allow_maintainer_edit boolean DEFAULT false NOT NULL, has_merged boolean, merged_commit_id character varying(40), merger_id bigint, merged_unix bigint, flow integer DEFAULT 0 NOT NULL ); ALTER TABLE public.pull_request OWNER TO gitea; -- -- Name: pull_request_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.pull_request_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.pull_request_id_seq OWNER TO gitea; -- -- Name: pull_request_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.pull_request_id_seq OWNED BY public.pull_request.id; -- -- Name: push_mirror; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.push_mirror ( id bigint NOT NULL, repo_id bigint, remote_name character varying(255), sync_on_commit boolean DEFAULT true NOT NULL, "interval" bigint, created_unix bigint, last_update bigint, last_error text, remote_address character varying(2048) ); ALTER TABLE public.push_mirror OWNER TO gitea; -- -- Name: push_mirror_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.push_mirror_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.push_mirror_id_seq OWNER TO gitea; -- -- Name: push_mirror_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.push_mirror_id_seq OWNED BY public.push_mirror.id; -- -- Name: reaction; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.reaction ( id bigint NOT NULL, type character varying(255) NOT NULL, issue_id bigint NOT NULL, comment_id bigint, user_id bigint NOT NULL, original_author_id bigint DEFAULT 0 NOT NULL, original_author character varying(255), created_unix bigint ); ALTER TABLE public.reaction OWNER TO gitea; -- -- Name: reaction_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.reaction_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.reaction_id_seq OWNER TO gitea; -- -- Name: reaction_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.reaction_id_seq OWNED BY public.reaction.id; -- -- Name: release; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.release ( id bigint NOT NULL, repo_id bigint, publisher_id bigint, tag_name character varying(255), original_author character varying(255), original_author_id bigint, lower_tag_name character varying(255), target character varying(255), title character varying(255), sha1 character varying(40), num_commits bigint, note text, is_draft boolean DEFAULT false NOT NULL, is_prerelease boolean DEFAULT false NOT NULL, is_tag boolean DEFAULT false NOT NULL, created_unix bigint ); ALTER TABLE public.release OWNER TO gitea; -- -- Name: release_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.release_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.release_id_seq OWNER TO gitea; -- -- Name: release_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.release_id_seq OWNED BY public.release.id; -- -- Name: renamed_branch; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.renamed_branch ( id bigint NOT NULL, repo_id bigint NOT NULL, "from" character varying(255), "to" character varying(255), created_unix bigint ); ALTER TABLE public.renamed_branch OWNER TO gitea; -- -- Name: renamed_branch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.renamed_branch_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.renamed_branch_id_seq OWNER TO gitea; -- -- Name: renamed_branch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.renamed_branch_id_seq OWNED BY public.renamed_branch.id; -- -- Name: repo_archiver; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.repo_archiver ( id bigint NOT NULL, repo_id bigint, type integer, status integer, commit_id character varying(40), created_unix bigint NOT NULL ); ALTER TABLE public.repo_archiver OWNER TO gitea; -- -- Name: repo_archiver_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.repo_archiver_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.repo_archiver_id_seq OWNER TO gitea; -- -- Name: repo_archiver_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.repo_archiver_id_seq OWNED BY public.repo_archiver.id; -- -- Name: repo_indexer_status; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.repo_indexer_status ( id bigint NOT NULL, repo_id bigint, commit_sha character varying(40), indexer_type integer DEFAULT 0 NOT NULL ); ALTER TABLE public.repo_indexer_status OWNER TO gitea; -- -- Name: repo_indexer_status_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.repo_indexer_status_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.repo_indexer_status_id_seq OWNER TO gitea; -- -- Name: repo_indexer_status_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.repo_indexer_status_id_seq OWNED BY public.repo_indexer_status.id; -- -- Name: repo_redirect; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.repo_redirect ( id bigint NOT NULL, owner_id bigint, lower_name character varying(255) NOT NULL, redirect_repo_id bigint ); ALTER TABLE public.repo_redirect OWNER TO gitea; -- -- Name: repo_redirect_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.repo_redirect_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.repo_redirect_id_seq OWNER TO gitea; -- -- Name: repo_redirect_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.repo_redirect_id_seq OWNED BY public.repo_redirect.id; -- -- Name: repo_topic; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.repo_topic ( repo_id bigint NOT NULL, topic_id bigint NOT NULL ); ALTER TABLE public.repo_topic OWNER TO gitea; -- -- Name: repo_transfer; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.repo_transfer ( id bigint NOT NULL, doer_id bigint, recipient_id bigint, repo_id bigint, team_i_ds text, created_unix bigint NOT NULL, updated_unix bigint NOT NULL ); ALTER TABLE public.repo_transfer OWNER TO gitea; -- -- Name: repo_transfer_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.repo_transfer_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.repo_transfer_id_seq OWNER TO gitea; -- -- Name: repo_transfer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.repo_transfer_id_seq OWNED BY public.repo_transfer.id; -- -- Name: repo_unit; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.repo_unit ( id bigint NOT NULL, repo_id bigint, type integer, config text, created_unix bigint ); ALTER TABLE public.repo_unit OWNER TO gitea; -- -- Name: repo_unit_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.repo_unit_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.repo_unit_id_seq OWNER TO gitea; -- -- Name: repo_unit_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.repo_unit_id_seq OWNED BY public.repo_unit.id; -- -- Name: repository; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.repository ( id bigint NOT NULL, owner_id bigint, owner_name character varying(255), lower_name character varying(255) NOT NULL, name character varying(255) NOT NULL, description text, website character varying(2048), original_service_type integer, original_url character varying(2048), default_branch character varying(255), num_watches integer, num_stars integer, num_forks integer, num_issues integer, num_closed_issues integer, num_pulls integer, num_closed_pulls integer, num_milestones integer DEFAULT 0 NOT NULL, num_closed_milestones integer DEFAULT 0 NOT NULL, num_projects integer DEFAULT 0 NOT NULL, num_closed_projects integer DEFAULT 0 NOT NULL, num_action_runs integer DEFAULT 0 NOT NULL, num_closed_action_runs integer DEFAULT 0 NOT NULL, is_private boolean, is_empty boolean, is_archived boolean, is_mirror boolean, status integer DEFAULT 0 NOT NULL, is_fork boolean DEFAULT false NOT NULL, fork_id bigint, is_template boolean DEFAULT false NOT NULL, template_id bigint, size bigint DEFAULT 0 NOT NULL, is_fsck_enabled boolean DEFAULT true NOT NULL, close_issues_via_commit_in_any_branch boolean DEFAULT false NOT NULL, topics json, trust_model integer, avatar character varying(64), created_unix bigint, updated_unix bigint, archived_unix bigint DEFAULT 0, git_size bigint DEFAULT 0 NOT NULL, lfs_size bigint DEFAULT 0 NOT NULL ); ALTER TABLE public.repository OWNER TO gitea; -- -- Name: repository_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.repository_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.repository_id_seq OWNER TO gitea; -- -- Name: repository_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.repository_id_seq OWNED BY public.repository.id; -- -- Name: review; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.review ( id bigint NOT NULL, type integer, reviewer_id bigint, reviewer_team_id bigint DEFAULT 0 NOT NULL, original_author character varying(255), original_author_id bigint, issue_id bigint, content text, official boolean DEFAULT false NOT NULL, commit_id character varying(40), stale boolean DEFAULT false NOT NULL, dismissed boolean DEFAULT false NOT NULL, created_unix bigint, updated_unix bigint ); ALTER TABLE public.review OWNER TO gitea; -- -- Name: review_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.review_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.review_id_seq OWNER TO gitea; -- -- Name: review_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.review_id_seq OWNED BY public.review.id; -- -- Name: review_state; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.review_state ( id bigint NOT NULL, user_id bigint NOT NULL, pull_id bigint DEFAULT 0 NOT NULL, commit_sha character varying(40) NOT NULL, updated_files json NOT NULL, updated_unix bigint ); ALTER TABLE public.review_state OWNER TO gitea; -- -- Name: review_state_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.review_state_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.review_state_id_seq OWNER TO gitea; -- -- Name: review_state_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.review_state_id_seq OWNED BY public.review_state.id; -- -- Name: secret; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.secret ( id bigint NOT NULL, owner_id bigint NOT NULL, repo_id bigint DEFAULT 0 NOT NULL, name character varying(255) NOT NULL, data text, created_unix bigint NOT NULL ); ALTER TABLE public.secret OWNER TO gitea; -- -- Name: secret_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.secret_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.secret_id_seq OWNER TO gitea; -- -- Name: secret_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.secret_id_seq OWNED BY public.secret.id; -- -- Name: session; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.session ( key character(16) NOT NULL, data bytea, expiry bigint ); ALTER TABLE public.session OWNER TO gitea; -- -- Name: star; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.star ( id bigint NOT NULL, uid bigint, repo_id bigint, created_unix bigint ); ALTER TABLE public.star OWNER TO gitea; -- -- Name: star_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.star_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.star_id_seq OWNER TO gitea; -- -- Name: star_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.star_id_seq OWNED BY public.star.id; -- -- Name: stopwatch; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.stopwatch ( id bigint NOT NULL, issue_id bigint, user_id bigint, created_unix bigint ); ALTER TABLE public.stopwatch OWNER TO gitea; -- -- Name: stopwatch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.stopwatch_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.stopwatch_id_seq OWNER TO gitea; -- -- Name: stopwatch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.stopwatch_id_seq OWNED BY public.stopwatch.id; -- -- Name: system_setting; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.system_setting ( id bigint NOT NULL, setting_key character varying(255), setting_value text, version integer, created bigint, updated bigint ); ALTER TABLE public.system_setting OWNER TO gitea; -- -- Name: system_setting_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.system_setting_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.system_setting_id_seq OWNER TO gitea; -- -- Name: system_setting_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.system_setting_id_seq OWNED BY public.system_setting.id; -- -- Name: task; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.task ( id bigint NOT NULL, doer_id bigint, owner_id bigint, repo_id bigint, type integer, status integer, start_time bigint, end_time bigint, payload_content text, message text, created bigint ); ALTER TABLE public.task OWNER TO gitea; -- -- Name: task_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.task_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.task_id_seq OWNER TO gitea; -- -- Name: task_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.task_id_seq OWNED BY public.task.id; -- -- Name: team; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.team ( id bigint NOT NULL, org_id bigint, lower_name character varying(255), name character varying(255), description character varying(255), authorize integer, num_repos integer, num_members integer, includes_all_repositories boolean DEFAULT false NOT NULL, can_create_org_repo boolean DEFAULT false NOT NULL ); ALTER TABLE public.team OWNER TO gitea; -- -- Name: team_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.team_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.team_id_seq OWNER TO gitea; -- -- Name: team_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.team_id_seq OWNED BY public.team.id; -- -- Name: team_invite; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.team_invite ( id bigint NOT NULL, token character varying(255) DEFAULT ''::character varying NOT NULL, inviter_id bigint DEFAULT 0 NOT NULL, org_id bigint DEFAULT 0 NOT NULL, team_id bigint DEFAULT 0 NOT NULL, email character varying(255) DEFAULT ''::character varying NOT NULL, created_unix bigint, updated_unix bigint ); ALTER TABLE public.team_invite OWNER TO gitea; -- -- Name: team_invite_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.team_invite_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.team_invite_id_seq OWNER TO gitea; -- -- Name: team_invite_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.team_invite_id_seq OWNED BY public.team_invite.id; -- -- Name: team_repo; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.team_repo ( id bigint NOT NULL, org_id bigint, team_id bigint, repo_id bigint ); ALTER TABLE public.team_repo OWNER TO gitea; -- -- Name: team_repo_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.team_repo_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.team_repo_id_seq OWNER TO gitea; -- -- Name: team_repo_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.team_repo_id_seq OWNED BY public.team_repo.id; -- -- Name: team_unit; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.team_unit ( id bigint NOT NULL, org_id bigint, team_id bigint, type integer, access_mode integer ); ALTER TABLE public.team_unit OWNER TO gitea; -- -- Name: team_unit_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.team_unit_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.team_unit_id_seq OWNER TO gitea; -- -- Name: team_unit_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.team_unit_id_seq OWNED BY public.team_unit.id; -- -- Name: team_user; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.team_user ( id bigint NOT NULL, org_id bigint, team_id bigint, uid bigint ); ALTER TABLE public.team_user OWNER TO gitea; -- -- Name: team_user_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.team_user_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.team_user_id_seq OWNER TO gitea; -- -- Name: team_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.team_user_id_seq OWNED BY public.team_user.id; -- -- Name: topic; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.topic ( id bigint NOT NULL, name character varying(50), repo_count integer, created_unix bigint, updated_unix bigint ); ALTER TABLE public.topic OWNER TO gitea; -- -- Name: topic_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.topic_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.topic_id_seq OWNER TO gitea; -- -- Name: topic_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.topic_id_seq OWNED BY public.topic.id; -- -- Name: tracked_time; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.tracked_time ( id bigint NOT NULL, issue_id bigint, user_id bigint, created_unix bigint, "time" bigint NOT NULL, deleted boolean DEFAULT false NOT NULL ); ALTER TABLE public.tracked_time OWNER TO gitea; -- -- Name: tracked_time_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.tracked_time_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.tracked_time_id_seq OWNER TO gitea; -- -- Name: tracked_time_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.tracked_time_id_seq OWNED BY public.tracked_time.id; -- -- Name: two_factor; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.two_factor ( id bigint NOT NULL, uid bigint, secret character varying(255), scratch_salt character varying(255), scratch_hash character varying(255), last_used_passcode character varying(10), created_unix bigint, updated_unix bigint ); ALTER TABLE public.two_factor OWNER TO gitea; -- -- Name: two_factor_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.two_factor_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.two_factor_id_seq OWNER TO gitea; -- -- Name: two_factor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.two_factor_id_seq OWNED BY public.two_factor.id; -- -- Name: upload; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.upload ( id bigint NOT NULL, uuid uuid, name character varying(255) ); ALTER TABLE public.upload OWNER TO gitea; -- -- Name: upload_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.upload_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.upload_id_seq OWNER TO gitea; -- -- Name: upload_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.upload_id_seq OWNED BY public.upload.id; -- -- Name: user; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public."user" ( id bigint NOT NULL, lower_name character varying(255) NOT NULL, name character varying(255) NOT NULL, full_name character varying(255), email character varying(255) NOT NULL, keep_email_private boolean, email_notifications_preference character varying(20) DEFAULT 'enabled'::character varying NOT NULL, passwd character varying(255) NOT NULL, passwd_hash_algo character varying(255) DEFAULT 'argon2'::character varying NOT NULL, must_change_password boolean DEFAULT false NOT NULL, login_type integer, login_source bigint DEFAULT 0 NOT NULL, login_name character varying(255), type integer, location character varying(255), website character varying(255), rands character varying(32), salt character varying(32), language character varying(5), description character varying(255), created_unix bigint, updated_unix bigint, last_login_unix bigint, last_repo_visibility boolean, max_repo_creation integer DEFAULT '-1'::integer NOT NULL, is_active boolean, is_admin boolean, is_restricted boolean DEFAULT false NOT NULL, allow_git_hook boolean, allow_import_local boolean, allow_create_organization boolean DEFAULT true, prohibit_login boolean DEFAULT false NOT NULL, avatar character varying(2048) NOT NULL, avatar_email character varying(255) NOT NULL, use_custom_avatar boolean, num_followers integer, num_following integer DEFAULT 0 NOT NULL, num_stars integer, num_repos integer, num_teams integer, num_members integer, visibility integer DEFAULT 0 NOT NULL, repo_admin_change_team_access boolean DEFAULT false NOT NULL, diff_view_style character varying(255) DEFAULT ''::character varying NOT NULL, theme character varying(255) DEFAULT ''::character varying NOT NULL, keep_activity_private boolean DEFAULT false NOT NULL ); ALTER TABLE public."user" OWNER TO gitea; -- -- Name: user_badge; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.user_badge ( id bigint NOT NULL, badge_id bigint, user_id bigint ); ALTER TABLE public.user_badge OWNER TO gitea; -- -- Name: user_badge_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.user_badge_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.user_badge_id_seq OWNER TO gitea; -- -- Name: user_badge_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.user_badge_id_seq OWNED BY public.user_badge.id; -- -- Name: user_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.user_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.user_id_seq OWNER TO gitea; -- -- Name: user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.user_id_seq OWNED BY public."user".id; -- -- Name: user_open_id; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.user_open_id ( id bigint NOT NULL, uid bigint NOT NULL, uri character varying(255) NOT NULL, show boolean DEFAULT false ); ALTER TABLE public.user_open_id OWNER TO gitea; -- -- Name: user_open_id_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.user_open_id_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.user_open_id_id_seq OWNER TO gitea; -- -- Name: user_open_id_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.user_open_id_id_seq OWNED BY public.user_open_id.id; -- -- Name: user_redirect; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.user_redirect ( id bigint NOT NULL, lower_name character varying(255) NOT NULL, redirect_user_id bigint ); ALTER TABLE public.user_redirect OWNER TO gitea; -- -- Name: user_redirect_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.user_redirect_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.user_redirect_id_seq OWNER TO gitea; -- -- Name: user_redirect_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.user_redirect_id_seq OWNED BY public.user_redirect.id; -- -- Name: user_setting; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.user_setting ( id bigint NOT NULL, user_id bigint, setting_key character varying(255), setting_value text ); ALTER TABLE public.user_setting OWNER TO gitea; -- -- Name: user_setting_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.user_setting_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.user_setting_id_seq OWNER TO gitea; -- -- Name: user_setting_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.user_setting_id_seq OWNED BY public.user_setting.id; -- -- Name: version; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.version ( id bigint NOT NULL, version bigint ); ALTER TABLE public.version OWNER TO gitea; -- -- Name: version_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.version_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.version_id_seq OWNER TO gitea; -- -- Name: version_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.version_id_seq OWNED BY public.version.id; -- -- Name: watch; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.watch ( id bigint NOT NULL, user_id bigint, repo_id bigint, mode smallint DEFAULT 1 NOT NULL, created_unix bigint, updated_unix bigint ); ALTER TABLE public.watch OWNER TO gitea; -- -- Name: watch_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.watch_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.watch_id_seq OWNER TO gitea; -- -- Name: watch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.watch_id_seq OWNED BY public.watch.id; -- -- Name: webauthn_credential; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.webauthn_credential ( id bigint NOT NULL, name character varying(255), lower_name character varying(255), user_id bigint, credential_id bytea, public_key bytea, attestation_type character varying(255), aaguid bytea, sign_count bigint, clone_warning boolean, created_unix bigint, updated_unix bigint ); ALTER TABLE public.webauthn_credential OWNER TO gitea; -- -- Name: webauthn_credential_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.webauthn_credential_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.webauthn_credential_id_seq OWNER TO gitea; -- -- Name: webauthn_credential_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.webauthn_credential_id_seq OWNED BY public.webauthn_credential.id; -- -- Name: webhook; Type: TABLE; Schema: public; Owner: gitea -- CREATE TABLE public.webhook ( id bigint NOT NULL, repo_id bigint, owner_id bigint, is_system_webhook boolean, url text, http_method character varying(255), content_type integer, secret text, events text, is_active boolean, type character varying(16), meta text, last_status integer, header_authorization_encrypted text, created_unix bigint, updated_unix bigint ); ALTER TABLE public.webhook OWNER TO gitea; -- -- Name: webhook_id_seq; Type: SEQUENCE; Schema: public; Owner: gitea -- CREATE SEQUENCE public.webhook_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER SEQUENCE public.webhook_id_seq OWNER TO gitea; -- -- Name: webhook_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: gitea -- ALTER SEQUENCE public.webhook_id_seq OWNED BY public.webhook.id; -- -- Name: access id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.access ALTER COLUMN id SET DEFAULT nextval('public.access_id_seq'::regclass); -- -- Name: access_token id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.access_token ALTER COLUMN id SET DEFAULT nextval('public.access_token_id_seq'::regclass); -- -- Name: action id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.action ALTER COLUMN id SET DEFAULT nextval('public.action_id_seq'::regclass); -- -- Name: action_artifact id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.action_artifact ALTER COLUMN id SET DEFAULT nextval('public.action_artifact_id_seq'::regclass); -- -- Name: action_run id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.action_run ALTER COLUMN id SET DEFAULT nextval('public.action_run_id_seq'::regclass); -- -- Name: action_run_job id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.action_run_job ALTER COLUMN id SET DEFAULT nextval('public.action_run_job_id_seq'::regclass); -- -- Name: action_runner id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.action_runner ALTER COLUMN id SET DEFAULT nextval('public.action_runner_id_seq'::regclass); -- -- Name: action_runner_token id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.action_runner_token ALTER COLUMN id SET DEFAULT nextval('public.action_runner_token_id_seq'::regclass); -- -- Name: action_schedule id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.action_schedule ALTER COLUMN id SET DEFAULT nextval('public.action_schedule_id_seq'::regclass); -- -- Name: action_schedule_spec id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.action_schedule_spec ALTER COLUMN id SET DEFAULT nextval('public.action_schedule_spec_id_seq'::regclass); -- -- Name: action_task id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.action_task ALTER COLUMN id SET DEFAULT nextval('public.action_task_id_seq'::regclass); -- -- Name: action_task_output id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.action_task_output ALTER COLUMN id SET DEFAULT nextval('public.action_task_output_id_seq'::regclass); -- -- Name: action_task_step id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.action_task_step ALTER COLUMN id SET DEFAULT nextval('public.action_task_step_id_seq'::regclass); -- -- Name: action_tasks_version id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.action_tasks_version ALTER COLUMN id SET DEFAULT nextval('public.action_tasks_version_id_seq'::regclass); -- -- Name: action_variable id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.action_variable ALTER COLUMN id SET DEFAULT nextval('public.action_variable_id_seq'::regclass); -- -- Name: attachment id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.attachment ALTER COLUMN id SET DEFAULT nextval('public.attachment_id_seq'::regclass); -- -- Name: badge id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.badge ALTER COLUMN id SET DEFAULT nextval('public.badge_id_seq'::regclass); -- -- Name: branch id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.branch ALTER COLUMN id SET DEFAULT nextval('public.branch_id_seq'::regclass); -- -- Name: collaboration id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.collaboration ALTER COLUMN id SET DEFAULT nextval('public.collaboration_id_seq'::regclass); -- -- Name: comment id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.comment ALTER COLUMN id SET DEFAULT nextval('public.comment_id_seq'::regclass); -- -- Name: commit_status id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.commit_status ALTER COLUMN id SET DEFAULT nextval('public.commit_status_id_seq'::regclass); -- -- Name: commit_status_index id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.commit_status_index ALTER COLUMN id SET DEFAULT nextval('public.commit_status_index_id_seq'::regclass); -- -- Name: dbfs_data id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.dbfs_data ALTER COLUMN id SET DEFAULT nextval('public.dbfs_data_id_seq'::regclass); -- -- Name: dbfs_meta id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.dbfs_meta ALTER COLUMN id SET DEFAULT nextval('public.dbfs_meta_id_seq'::regclass); -- -- Name: deploy_key id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.deploy_key ALTER COLUMN id SET DEFAULT nextval('public.deploy_key_id_seq'::regclass); -- -- Name: email_address id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.email_address ALTER COLUMN id SET DEFAULT nextval('public.email_address_id_seq'::regclass); -- -- Name: follow id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.follow ALTER COLUMN id SET DEFAULT nextval('public.follow_id_seq'::regclass); -- -- Name: gpg_key id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.gpg_key ALTER COLUMN id SET DEFAULT nextval('public.gpg_key_id_seq'::regclass); -- -- Name: hook_task id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.hook_task ALTER COLUMN id SET DEFAULT nextval('public.hook_task_id_seq'::regclass); -- -- Name: issue id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.issue ALTER COLUMN id SET DEFAULT nextval('public.issue_id_seq'::regclass); -- -- Name: issue_assignees id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.issue_assignees ALTER COLUMN id SET DEFAULT nextval('public.issue_assignees_id_seq'::regclass); -- -- Name: issue_content_history id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.issue_content_history ALTER COLUMN id SET DEFAULT nextval('public.issue_content_history_id_seq'::regclass); -- -- Name: issue_dependency id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.issue_dependency ALTER COLUMN id SET DEFAULT nextval('public.issue_dependency_id_seq'::regclass); -- -- Name: issue_label id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.issue_label ALTER COLUMN id SET DEFAULT nextval('public.issue_label_id_seq'::regclass); -- -- Name: issue_user id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.issue_user ALTER COLUMN id SET DEFAULT nextval('public.issue_user_id_seq'::regclass); -- -- Name: issue_watch id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.issue_watch ALTER COLUMN id SET DEFAULT nextval('public.issue_watch_id_seq'::regclass); -- -- Name: label id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.label ALTER COLUMN id SET DEFAULT nextval('public.label_id_seq'::regclass); -- -- Name: language_stat id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.language_stat ALTER COLUMN id SET DEFAULT nextval('public.language_stat_id_seq'::regclass); -- -- Name: lfs_lock id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.lfs_lock ALTER COLUMN id SET DEFAULT nextval('public.lfs_lock_id_seq'::regclass); -- -- Name: lfs_meta_object id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.lfs_meta_object ALTER COLUMN id SET DEFAULT nextval('public.lfs_meta_object_id_seq'::regclass); -- -- Name: login_source id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.login_source ALTER COLUMN id SET DEFAULT nextval('public.login_source_id_seq'::regclass); -- -- Name: milestone id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.milestone ALTER COLUMN id SET DEFAULT nextval('public.milestone_id_seq'::regclass); -- -- Name: mirror id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.mirror ALTER COLUMN id SET DEFAULT nextval('public.mirror_id_seq'::regclass); -- -- Name: notice id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.notice ALTER COLUMN id SET DEFAULT nextval('public.notice_id_seq'::regclass); -- -- Name: notification id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.notification ALTER COLUMN id SET DEFAULT nextval('public.notification_id_seq'::regclass); -- -- Name: oauth2_application id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.oauth2_application ALTER COLUMN id SET DEFAULT nextval('public.oauth2_application_id_seq'::regclass); -- -- Name: oauth2_authorization_code id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.oauth2_authorization_code ALTER COLUMN id SET DEFAULT nextval('public.oauth2_authorization_code_id_seq'::regclass); -- -- Name: oauth2_grant id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.oauth2_grant ALTER COLUMN id SET DEFAULT nextval('public.oauth2_grant_id_seq'::regclass); -- -- Name: org_user id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.org_user ALTER COLUMN id SET DEFAULT nextval('public.org_user_id_seq'::regclass); -- -- Name: package id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.package ALTER COLUMN id SET DEFAULT nextval('public.package_id_seq'::regclass); -- -- Name: package_blob id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.package_blob ALTER COLUMN id SET DEFAULT nextval('public.package_blob_id_seq'::regclass); -- -- Name: package_cleanup_rule id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.package_cleanup_rule ALTER COLUMN id SET DEFAULT nextval('public.package_cleanup_rule_id_seq'::regclass); -- -- Name: package_file id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.package_file ALTER COLUMN id SET DEFAULT nextval('public.package_file_id_seq'::regclass); -- -- Name: package_property id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.package_property ALTER COLUMN id SET DEFAULT nextval('public.package_property_id_seq'::regclass); -- -- Name: package_version id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.package_version ALTER COLUMN id SET DEFAULT nextval('public.package_version_id_seq'::regclass); -- -- Name: project id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.project ALTER COLUMN id SET DEFAULT nextval('public.project_id_seq'::regclass); -- -- Name: project_board id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.project_board ALTER COLUMN id SET DEFAULT nextval('public.project_board_id_seq'::regclass); -- -- Name: project_issue id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.project_issue ALTER COLUMN id SET DEFAULT nextval('public.project_issue_id_seq'::regclass); -- -- Name: protected_branch id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.protected_branch ALTER COLUMN id SET DEFAULT nextval('public.protected_branch_id_seq'::regclass); -- -- Name: protected_tag id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.protected_tag ALTER COLUMN id SET DEFAULT nextval('public.protected_tag_id_seq'::regclass); -- -- Name: public_key id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.public_key ALTER COLUMN id SET DEFAULT nextval('public.public_key_id_seq'::regclass); -- -- Name: pull_auto_merge id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.pull_auto_merge ALTER COLUMN id SET DEFAULT nextval('public.pull_auto_merge_id_seq'::regclass); -- -- Name: pull_request id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.pull_request ALTER COLUMN id SET DEFAULT nextval('public.pull_request_id_seq'::regclass); -- -- Name: push_mirror id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.push_mirror ALTER COLUMN id SET DEFAULT nextval('public.push_mirror_id_seq'::regclass); -- -- Name: reaction id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.reaction ALTER COLUMN id SET DEFAULT nextval('public.reaction_id_seq'::regclass); -- -- Name: release id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.release ALTER COLUMN id SET DEFAULT nextval('public.release_id_seq'::regclass); -- -- Name: renamed_branch id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.renamed_branch ALTER COLUMN id SET DEFAULT nextval('public.renamed_branch_id_seq'::regclass); -- -- Name: repo_archiver id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.repo_archiver ALTER COLUMN id SET DEFAULT nextval('public.repo_archiver_id_seq'::regclass); -- -- Name: repo_indexer_status id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.repo_indexer_status ALTER COLUMN id SET DEFAULT nextval('public.repo_indexer_status_id_seq'::regclass); -- -- Name: repo_redirect id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.repo_redirect ALTER COLUMN id SET DEFAULT nextval('public.repo_redirect_id_seq'::regclass); -- -- Name: repo_transfer id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.repo_transfer ALTER COLUMN id SET DEFAULT nextval('public.repo_transfer_id_seq'::regclass); -- -- Name: repo_unit id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.repo_unit ALTER COLUMN id SET DEFAULT nextval('public.repo_unit_id_seq'::regclass); -- -- Name: repository id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.repository ALTER COLUMN id SET DEFAULT nextval('public.repository_id_seq'::regclass); -- -- Name: review id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.review ALTER COLUMN id SET DEFAULT nextval('public.review_id_seq'::regclass); -- -- Name: review_state id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.review_state ALTER COLUMN id SET DEFAULT nextval('public.review_state_id_seq'::regclass); -- -- Name: secret id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.secret ALTER COLUMN id SET DEFAULT nextval('public.secret_id_seq'::regclass); -- -- Name: star id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.star ALTER COLUMN id SET DEFAULT nextval('public.star_id_seq'::regclass); -- -- Name: stopwatch id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.stopwatch ALTER COLUMN id SET DEFAULT nextval('public.stopwatch_id_seq'::regclass); -- -- Name: system_setting id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.system_setting ALTER COLUMN id SET DEFAULT nextval('public.system_setting_id_seq'::regclass); -- -- Name: task id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.task ALTER COLUMN id SET DEFAULT nextval('public.task_id_seq'::regclass); -- -- Name: team id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.team ALTER COLUMN id SET DEFAULT nextval('public.team_id_seq'::regclass); -- -- Name: team_invite id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.team_invite ALTER COLUMN id SET DEFAULT nextval('public.team_invite_id_seq'::regclass); -- -- Name: team_repo id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.team_repo ALTER COLUMN id SET DEFAULT nextval('public.team_repo_id_seq'::regclass); -- -- Name: team_unit id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.team_unit ALTER COLUMN id SET DEFAULT nextval('public.team_unit_id_seq'::regclass); -- -- Name: team_user id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.team_user ALTER COLUMN id SET DEFAULT nextval('public.team_user_id_seq'::regclass); -- -- Name: topic id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.topic ALTER COLUMN id SET DEFAULT nextval('public.topic_id_seq'::regclass); -- -- Name: tracked_time id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.tracked_time ALTER COLUMN id SET DEFAULT nextval('public.tracked_time_id_seq'::regclass); -- -- Name: two_factor id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.two_factor ALTER COLUMN id SET DEFAULT nextval('public.two_factor_id_seq'::regclass); -- -- Name: upload id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.upload ALTER COLUMN id SET DEFAULT nextval('public.upload_id_seq'::regclass); -- -- Name: user id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public."user" ALTER COLUMN id SET DEFAULT nextval('public.user_id_seq'::regclass); -- -- Name: user_badge id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.user_badge ALTER COLUMN id SET DEFAULT nextval('public.user_badge_id_seq'::regclass); -- -- Name: user_open_id id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.user_open_id ALTER COLUMN id SET DEFAULT nextval('public.user_open_id_id_seq'::regclass); -- -- Name: user_redirect id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.user_redirect ALTER COLUMN id SET DEFAULT nextval('public.user_redirect_id_seq'::regclass); -- -- Name: user_setting id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.user_setting ALTER COLUMN id SET DEFAULT nextval('public.user_setting_id_seq'::regclass); -- -- Name: version id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.version ALTER COLUMN id SET DEFAULT nextval('public.version_id_seq'::regclass); -- -- Name: watch id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.watch ALTER COLUMN id SET DEFAULT nextval('public.watch_id_seq'::regclass); -- -- Name: webauthn_credential id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.webauthn_credential ALTER COLUMN id SET DEFAULT nextval('public.webauthn_credential_id_seq'::regclass); -- -- Name: webhook id; Type: DEFAULT; Schema: public; Owner: gitea -- ALTER TABLE ONLY public.webhook ALTER COLUMN id SET DEFAULT nextval('public.webhook_id_seq'::regclass); -- -- Data for Name: access; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.access VALUES (3, 1, 7, 4); INSERT INTO public.access VALUES (4, 4, 7, 4); INSERT INTO public.access VALUES (5, 1, 8, 4); INSERT INTO public.access VALUES (6, 4, 8, 4); INSERT INTO public.access VALUES (114, 16, 21, 1); INSERT INTO public.access VALUES (115, 16, 23, 1); INSERT INTO public.access VALUES (116, 16, 22, 1); INSERT INTO public.access VALUES (117, 16, 12, 1); INSERT INTO public.access VALUES (193, 15, 29, 1); INSERT INTO public.access VALUES (125, 1, 25, 4); INSERT INTO public.access VALUES (126, 5, 25, 4); INSERT INTO public.access VALUES (152, 1, 24, 4); INSERT INTO public.access VALUES (153, 2, 24, 1); INSERT INTO public.access VALUES (155, 15, 24, 3); INSERT INTO public.access VALUES (156, 9, 24, 1); INSERT INTO public.access VALUES (157, 15, 26, 1); INSERT INTO public.access VALUES (158, 2, 26, 3); INSERT INTO public.access VALUES (159, 9, 26, 1); INSERT INTO public.access VALUES (55, 9, 9, 1); INSERT INTO public.access VALUES (56, 4, 9, 4); INSERT INTO public.access VALUES (57, 1, 9, 4); INSERT INTO public.access VALUES (58, 4, 10, 4); INSERT INTO public.access VALUES (59, 9, 10, 1); INSERT INTO public.access VALUES (60, 1, 10, 4); INSERT INTO public.access VALUES (61, 1, 11, 4); INSERT INTO public.access VALUES (62, 4, 11, 4); INSERT INTO public.access VALUES (63, 9, 11, 2); INSERT INTO public.access VALUES (64, 4, 12, 4); INSERT INTO public.access VALUES (65, 1, 12, 4); INSERT INTO public.access VALUES (66, 11, 12, 1); INSERT INTO public.access VALUES (69, 5, 6, 4); INSERT INTO public.access VALUES (70, 1, 6, 4); INSERT INTO public.access VALUES (161, 1, 26, 4); INSERT INTO public.access VALUES (162, 2, 15, 1); INSERT INTO public.access VALUES (73, 1, 17, 4); INSERT INTO public.access VALUES (74, 4, 17, 4); INSERT INTO public.access VALUES (75, 4, 18, 4); INSERT INTO public.access VALUES (76, 1, 18, 4); INSERT INTO public.access VALUES (163, 9, 15, 1); INSERT INTO public.access VALUES (164, 15, 15, 1); INSERT INTO public.access VALUES (79, 4, 20, 4); INSERT INTO public.access VALUES (80, 1, 20, 4); INSERT INTO public.access VALUES (166, 1, 15, 4); INSERT INTO public.access VALUES (170, 5, 26, 4); INSERT INTO public.access VALUES (171, 5, 15, 4); INSERT INTO public.access VALUES (172, 5, 24, 4); INSERT INTO public.access VALUES (173, 11, 15, 1); INSERT INTO public.access VALUES (174, 11, 24, 1); INSERT INTO public.access VALUES (175, 11, 26, 1); INSERT INTO public.access VALUES (93, 1, 23, 4); INSERT INTO public.access VALUES (94, 2, 23, 1); INSERT INTO public.access VALUES (95, 5, 23, 4); INSERT INTO public.access VALUES (96, 11, 23, 1); INSERT INTO public.access VALUES (97, 11, 22, 1); INSERT INTO public.access VALUES (98, 2, 22, 1); INSERT INTO public.access VALUES (99, 5, 22, 4); INSERT INTO public.access VALUES (100, 1, 22, 4); INSERT INTO public.access VALUES (178, 2, 27, 1); INSERT INTO public.access VALUES (179, 1, 27, 4); INSERT INTO public.access VALUES (180, 15, 27, 1); INSERT INTO public.access VALUES (105, 1, 21, 4); INSERT INTO public.access VALUES (106, 11, 21, 1); INSERT INTO public.access VALUES (107, 2, 21, 1); INSERT INTO public.access VALUES (108, 5, 21, 4); INSERT INTO public.access VALUES (181, 5, 27, 4); INSERT INTO public.access VALUES (184, 1, 28, 4); INSERT INTO public.access VALUES (185, 5, 28, 4); INSERT INTO public.access VALUES (186, 2, 28, 1); INSERT INTO public.access VALUES (187, 15, 28, 1); INSERT INTO public.access VALUES (190, 5, 29, 4); INSERT INTO public.access VALUES (191, 2, 29, 1); INSERT INTO public.access VALUES (192, 1, 29, 4); -- -- Data for Name: access_token; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.access_token VALUES (2, 9, 'Jenkins Token', 'a5b6de7d5566afb3decc4d4236fafffef803985eecaad17ff4dba664e099ec6f19be653e5de18f8529fdef2ad20612e5923f', 'fgruGZXHxC', '6e1529c5', 'read:organization,write:repository', 1686809422, 1704685751); INSERT INTO public.access_token VALUES (3, 9, 'JenkinsCI', '18ed9acc4f9b129c7d625c05d05343165cd3d0ed0e6b8d223be324eddd8b8ce3874b53445ed643c4398c8b66fb95f7d8c63f', '50Wtra7BL3', '866ec69b', 'read:organization,write:repository', 1704686694, 1705636510); -- -- Data for Name: action; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.action VALUES (1, 2, 1, 2, 1, 0, false, '', false, '', 1685008493); INSERT INTO public.action VALUES (2, 2, 5, 2, 1, 0, false, 'refs/heads/main', false, '', 1685008695); INSERT INTO public.action VALUES (3, 2, 5, 2, 1, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"69239c62fdf7a0f80d409af5ec5be9fdacb7f57c","Message":"init\n","AuthorEmail":"tuan1996n@gmail.com","AuthorName":"tuan1996qn","CommitterEmail":"tuan1996n@gmail.com","CommitterName":"tuan1996qn","Timestamp":"2023-05-25T16:57:33+07:00"}],"HeadCommit":{"Sha1":"69239c62fdf7a0f80d409af5ec5be9fdacb7f57c","Message":"init\n","AuthorEmail":"tuan1996n@gmail.com","AuthorName":"tuan1996qn","CommitterEmail":"tuan1996n@gmail.com","CommitterName":"tuan1996qn","Timestamp":"2023-05-25T16:57:33+07:00"},"CompareURL":"","Len":1}', 1685008695); INSERT INTO public.action VALUES (378, 11, 7, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268903); INSERT INTO public.action VALUES (6, 1, 6, 1, 1, 0, false, '', false, '1|Test tạo issue', 1685071485); INSERT INTO public.action VALUES (7, 2, 6, 1, 1, 0, false, '', false, '1|Test tạo issue', 1685071485); INSERT INTO public.action VALUES (8, 1, 10, 1, 1, 1, false, '', false, '1|Test tag tên @tuan ', 1685071535); INSERT INTO public.action VALUES (9, 2, 10, 1, 1, 1, false, '', false, '1|Test tag tên @tuan ', 1685071535); INSERT INTO public.action VALUES (10, 1, 1, 1, 6, 0, false, '', false, '', 1685353318); INSERT INTO public.action VALUES (11, 6, 1, 1, 6, 0, false, '', false, '', 1685353318); INSERT INTO public.action VALUES (12, 1, 5, 1, 6, 0, false, 'refs/heads/main', false, '', 1685353381); INSERT INTO public.action VALUES (13, 6, 5, 1, 6, 0, false, 'refs/heads/main', false, '', 1685353381); INSERT INTO public.action VALUES (14, 1, 5, 1, 6, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ea13e1d90318274180b5572fbf7d109463ce01b0","Message":"change session idleTimeout\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-05-29T16:42:42+07:00"},{"Sha1":"f9140e66f64601e3b3debae3bbbdbe17aa0fce28","Message":"enrich tracing\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-04-19T08:23:27+07:00"},{"Sha1":"a8a0e3817b8d1a5e16e44d76ca740a1a80a10466","Message":"add OpenTelemetry\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-04-06T09:52:35+07:00"},{"Sha1":"b5ff9381ecb99067cacd0f50f8030b62af6ede78","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-02-28T09:10:34+07:00"},{"Sha1":"44ad2a5fba944f3ae86d58fe51d01143b8ea8ddf","Message":"Add .gitattributes, .gitignore, and README.md.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-02-28T09:10:32+07:00"}],"HeadCommit":{"Sha1":"ea13e1d90318274180b5572fbf7d109463ce01b0","Message":"change session idleTimeout\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-05-29T16:42:42+07:00"},"CompareURL":"","Len":5}', 1685353382); INSERT INTO public.action VALUES (15, 6, 5, 1, 6, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ea13e1d90318274180b5572fbf7d109463ce01b0","Message":"change session idleTimeout\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-05-29T16:42:42+07:00"},{"Sha1":"f9140e66f64601e3b3debae3bbbdbe17aa0fce28","Message":"enrich tracing\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-04-19T08:23:27+07:00"},{"Sha1":"a8a0e3817b8d1a5e16e44d76ca740a1a80a10466","Message":"add OpenTelemetry\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-04-06T09:52:35+07:00"},{"Sha1":"b5ff9381ecb99067cacd0f50f8030b62af6ede78","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-02-28T09:10:34+07:00"},{"Sha1":"44ad2a5fba944f3ae86d58fe51d01143b8ea8ddf","Message":"Add .gitattributes, .gitignore, and README.md.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-02-28T09:10:32+07:00"}],"HeadCommit":{"Sha1":"ea13e1d90318274180b5572fbf7d109463ce01b0","Message":"change session idleTimeout\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-05-29T16:42:42+07:00"},"CompareURL":"","Len":5}', 1685353382); INSERT INTO public.action VALUES (16, 1, 1, 1, 7, 0, false, '', true, '', 1685678587); INSERT INTO public.action VALUES (17, 7, 1, 1, 7, 0, false, '', true, '', 1685678587); INSERT INTO public.action VALUES (18, 1, 5, 1, 7, 0, false, 'refs/heads/dev', true, '', 1685678669); INSERT INTO public.action VALUES (19, 7, 5, 1, 7, 0, false, 'refs/heads/dev', true, '', 1685678669); INSERT INTO public.action VALUES (20, 4, 5, 1, 7, 0, false, 'refs/heads/dev', true, '', 1685678669); INSERT INTO public.action VALUES (21, 1, 5, 1, 7, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"db631c23c653da1f63b740d7e7814fc345df17c0","Message":"big update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T11:04:06+07:00"},{"Sha1":"82cea2fc68a9734583f81963cdb41bed2b855b45","Message":"export diem dau tu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T14:36:13+07:00"},{"Sha1":"7d9708ce2b1513835c9bb82a7ef69ec21b9255c4","Message":"xuất excel doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-14T17:04:01+07:00"},{"Sha1":"ed4ba7826063bd14064efce1bda51a3030f3f825","Message":"thong ke lai doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-13T14:35:44+07:00"},{"Sha1":"027ec3b56ed043fa98cac72a7a844be096fbd3be","Message":"them ten nguoi dai dien doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-12T10:26:32+07:00"}],"HeadCommit":{"Sha1":"db631c23c653da1f63b740d7e7814fc345df17c0","Message":"big update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T11:04:06+07:00"},"CompareURL":"xuc-tien-dau-tu/api/compare/482132de2202fc2bf0c0814ea89c6f3519087701...db631c23c653da1f63b740d7e7814fc345df17c0","Len":10}', 1685678670); INSERT INTO public.action VALUES (91, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/98fac2b1708b47d60818e009363f5c231120e66a...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":0}', 1686812494); INSERT INTO public.action VALUES (22, 7, 5, 1, 7, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"db631c23c653da1f63b740d7e7814fc345df17c0","Message":"big update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T11:04:06+07:00"},{"Sha1":"82cea2fc68a9734583f81963cdb41bed2b855b45","Message":"export diem dau tu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T14:36:13+07:00"},{"Sha1":"7d9708ce2b1513835c9bb82a7ef69ec21b9255c4","Message":"xuất excel doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-14T17:04:01+07:00"},{"Sha1":"ed4ba7826063bd14064efce1bda51a3030f3f825","Message":"thong ke lai doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-13T14:35:44+07:00"},{"Sha1":"027ec3b56ed043fa98cac72a7a844be096fbd3be","Message":"them ten nguoi dai dien doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-12T10:26:32+07:00"}],"HeadCommit":{"Sha1":"db631c23c653da1f63b740d7e7814fc345df17c0","Message":"big update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T11:04:06+07:00"},"CompareURL":"xuc-tien-dau-tu/api/compare/482132de2202fc2bf0c0814ea89c6f3519087701...db631c23c653da1f63b740d7e7814fc345df17c0","Len":10}', 1685678670); INSERT INTO public.action VALUES (23, 4, 5, 1, 7, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"db631c23c653da1f63b740d7e7814fc345df17c0","Message":"big update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T11:04:06+07:00"},{"Sha1":"82cea2fc68a9734583f81963cdb41bed2b855b45","Message":"export diem dau tu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T14:36:13+07:00"},{"Sha1":"7d9708ce2b1513835c9bb82a7ef69ec21b9255c4","Message":"xuất excel doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-14T17:04:01+07:00"},{"Sha1":"ed4ba7826063bd14064efce1bda51a3030f3f825","Message":"thong ke lai doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-13T14:35:44+07:00"},{"Sha1":"027ec3b56ed043fa98cac72a7a844be096fbd3be","Message":"them ten nguoi dai dien doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-10-12T10:26:32+07:00"}],"HeadCommit":{"Sha1":"db631c23c653da1f63b740d7e7814fc345df17c0","Message":"big update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T11:04:06+07:00"},"CompareURL":"xuc-tien-dau-tu/api/compare/482132de2202fc2bf0c0814ea89c6f3519087701...db631c23c653da1f63b740d7e7814fc345df17c0","Len":10}', 1685678670); INSERT INTO public.action VALUES (24, 1, 1, 1, 8, 0, false, '', true, '', 1685678896); INSERT INTO public.action VALUES (25, 7, 1, 1, 8, 0, false, '', true, '', 1685678896); INSERT INTO public.action VALUES (26, 4, 1, 1, 8, 0, false, '', true, '', 1685678896); INSERT INTO public.action VALUES (27, 1, 5, 1, 8, 0, false, 'refs/heads/main', true, '', 1685679005); INSERT INTO public.action VALUES (28, 7, 5, 1, 8, 0, false, 'refs/heads/main', true, '', 1685679005); INSERT INTO public.action VALUES (29, 4, 5, 1, 8, 0, false, 'refs/heads/main', true, '', 1685679005); INSERT INTO public.action VALUES (30, 1, 5, 1, 8, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Message":"fix route, loading detail\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-16T15:39:30+07:00"},{"Sha1":"3561ccf596ffc2b9132aa9cf872250c54a8fc57d","Message":"logo\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-11T08:45:11+07:00"},{"Sha1":"18e0ac4db5b179598bd6c81e15084303b0858e41","Message":"change environment\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2021-03-08T16:19:11+07:00"},{"Sha1":"3f8ee16e05c495d435b73bcf900418353ff41479","Message":"print map\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T16:56:28+07:00"},{"Sha1":"c7909abcefc08e6c59b81f07aeefd08f61c8397e","Message":"cap nhat file huong dan\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T16:20:54+07:00"}],"HeadCommit":{"Sha1":"ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Message":"fix route, loading detail\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-16T15:39:30+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/964db9de9829af27ceb252f77294481e61ef947b...ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Len":10}', 1685679006); INSERT INTO public.action VALUES (31, 7, 5, 1, 8, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Message":"fix route, loading detail\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-16T15:39:30+07:00"},{"Sha1":"3561ccf596ffc2b9132aa9cf872250c54a8fc57d","Message":"logo\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-11T08:45:11+07:00"},{"Sha1":"18e0ac4db5b179598bd6c81e15084303b0858e41","Message":"change environment\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2021-03-08T16:19:11+07:00"},{"Sha1":"3f8ee16e05c495d435b73bcf900418353ff41479","Message":"print map\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T16:56:28+07:00"},{"Sha1":"c7909abcefc08e6c59b81f07aeefd08f61c8397e","Message":"cap nhat file huong dan\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T16:20:54+07:00"}],"HeadCommit":{"Sha1":"ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Message":"fix route, loading detail\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-16T15:39:30+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/964db9de9829af27ceb252f77294481e61ef947b...ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Len":10}', 1685679006); INSERT INTO public.action VALUES (379, 14, 7, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268903); INSERT INTO public.action VALUES (380, 1, 7, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268903); INSERT INTO public.action VALUES (381, 5, 7, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268903); INSERT INTO public.action VALUES (32, 4, 5, 1, 8, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Message":"fix route, loading detail\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-16T15:39:30+07:00"},{"Sha1":"3561ccf596ffc2b9132aa9cf872250c54a8fc57d","Message":"logo\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-11T08:45:11+07:00"},{"Sha1":"18e0ac4db5b179598bd6c81e15084303b0858e41","Message":"change environment\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2021-03-08T16:19:11+07:00"},{"Sha1":"3f8ee16e05c495d435b73bcf900418353ff41479","Message":"print map\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T16:56:28+07:00"},{"Sha1":"c7909abcefc08e6c59b81f07aeefd08f61c8397e","Message":"cap nhat file huong dan\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-12-17T16:20:54+07:00"}],"HeadCommit":{"Sha1":"ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Message":"fix route, loading detail\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-08-16T15:39:30+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/964db9de9829af27ceb252f77294481e61ef947b...ae103a15da6e4c7a95edef828a80c3b9d3c17ddd","Len":10}', 1685679006); INSERT INTO public.action VALUES (33, 1, 5, 1, 8, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"997c70fb991ad1c41df5d8dd04873f291b57becd","Message":"update to angular 10\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T15:46:34+07:00"}],"HeadCommit":{"Sha1":"997c70fb991ad1c41df5d8dd04873f291b57becd","Message":"update to angular 10\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T15:46:34+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/ae103a15da6e4c7a95edef828a80c3b9d3c17ddd...997c70fb991ad1c41df5d8dd04873f291b57becd","Len":1}', 1685695908); INSERT INTO public.action VALUES (34, 7, 5, 1, 8, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"997c70fb991ad1c41df5d8dd04873f291b57becd","Message":"update to angular 10\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T15:46:34+07:00"}],"HeadCommit":{"Sha1":"997c70fb991ad1c41df5d8dd04873f291b57becd","Message":"update to angular 10\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T15:46:34+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/ae103a15da6e4c7a95edef828a80c3b9d3c17ddd...997c70fb991ad1c41df5d8dd04873f291b57becd","Len":1}', 1685695908); INSERT INTO public.action VALUES (35, 4, 5, 1, 8, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"997c70fb991ad1c41df5d8dd04873f291b57becd","Message":"update to angular 10\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T15:46:34+07:00"}],"HeadCommit":{"Sha1":"997c70fb991ad1c41df5d8dd04873f291b57becd","Message":"update to angular 10\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-02T15:46:34+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/ae103a15da6e4c7a95edef828a80c3b9d3c17ddd...997c70fb991ad1c41df5d8dd04873f291b57becd","Len":1}', 1685695908); INSERT INTO public.action VALUES (159, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"}],"HeadCommit":{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/b5727ad2eac7d277d7a7a3cd78c24c798abffc65...d3f9d622311007abad8020be3259e8de092c2223","Len":1}', 1701072279); INSERT INTO public.action VALUES (160, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"}],"HeadCommit":{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/b5727ad2eac7d277d7a7a3cd78c24c798abffc65...d3f9d622311007abad8020be3259e8de092c2223","Len":1}', 1701072279); INSERT INTO public.action VALUES (173, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"}],"HeadCommit":{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc...e4a5176a30ebf1bc13a19cc272e09556838f0966","Len":1}', 1701152540); INSERT INTO public.action VALUES (382, 11, 11, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268923); INSERT INTO public.action VALUES (383, 14, 11, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268923); INSERT INTO public.action VALUES (384, 1, 11, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268923); INSERT INTO public.action VALUES (385, 5, 11, 11, 21, 0, false, '', false, '3|update nguoi tao filter', 1702268923); INSERT INTO public.action VALUES (416, 1, 11, 11, 21, 0, false, '', false, '5|update row nld', 1702372549); INSERT INTO public.action VALUES (36, 1, 1, 1, 9, 0, false, '', true, '', 1685933300); INSERT INTO public.action VALUES (37, 8, 1, 1, 9, 0, false, '', true, '', 1685933300); INSERT INTO public.action VALUES (38, 4, 1, 1, 9, 0, false, '', true, '', 1685933300); INSERT INTO public.action VALUES (39, 1, 5, 1, 9, 0, false, 'refs/heads/main', true, '', 1685933369); INSERT INTO public.action VALUES (40, 8, 5, 1, 9, 0, false, 'refs/heads/main', true, '', 1685933369); INSERT INTO public.action VALUES (41, 4, 5, 1, 9, 0, false, 'refs/heads/main', true, '', 1685933369); INSERT INTO public.action VALUES (117, 4, 5, 4, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"bf773b54733cc3351f271603748cf63fe426de36","Message":"fix complete cu form\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-04T11:05:23+07:00"},{"Sha1":"88ab5242f09ef2c918b16a28b83d14b368286d5f","Message":"refactor UI add \u0026 update phuong tien do\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-06-23T16:57:23+07:00"}],"HeadCommit":{"Sha1":"bf773b54733cc3351f271603748cf63fe426de36","Message":"fix complete cu form\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-04T11:05:23+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c...bf773b54733cc3351f271603748cf63fe426de36","Len":2}', 1700798066); INSERT INTO public.action VALUES (118, 10, 5, 4, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"bf773b54733cc3351f271603748cf63fe426de36","Message":"fix complete cu form\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-04T11:05:23+07:00"},{"Sha1":"88ab5242f09ef2c918b16a28b83d14b368286d5f","Message":"refactor UI add \u0026 update phuong tien do\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-06-23T16:57:23+07:00"}],"HeadCommit":{"Sha1":"bf773b54733cc3351f271603748cf63fe426de36","Message":"fix complete cu form\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-04T11:05:23+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c...bf773b54733cc3351f271603748cf63fe426de36","Len":2}', 1700798066); INSERT INTO public.action VALUES (119, 1, 5, 4, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"bf773b54733cc3351f271603748cf63fe426de36","Message":"fix complete cu form\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-04T11:05:23+07:00"},{"Sha1":"88ab5242f09ef2c918b16a28b83d14b368286d5f","Message":"refactor UI add \u0026 update phuong tien do\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-06-23T16:57:23+07:00"}],"HeadCommit":{"Sha1":"bf773b54733cc3351f271603748cf63fe426de36","Message":"fix complete cu form\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-04T11:05:23+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c...bf773b54733cc3351f271603748cf63fe426de36","Len":2}', 1700798066); INSERT INTO public.action VALUES (125, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"}],"HeadCommit":{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/bf773b54733cc3351f271603748cf63fe426de36...36685007ea7cb1ed55029bf25e99f8fafd0005c3","Len":1}', 1700814613); INSERT INTO public.action VALUES (472, 14, 11, 11, 21, 0, false, '', false, '8|up code', 1702610184); INSERT INTO public.action VALUES (45, 1, 1, 1, 10, 0, false, '', true, '', 1685933663); INSERT INTO public.action VALUES (46, 8, 1, 1, 10, 0, false, '', true, '', 1685933663); INSERT INTO public.action VALUES (43, 8, 5, 1, 9, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Message":"fix build lỗi sau 1 thời gian dài\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T09:40:13+07:00"},{"Sha1":"59390456c00c4a15895278bf7d4371861b089254","Message":"update add huyen/tp diem dich vu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-12-07T08:56:14+07:00"},{"Sha1":"cf1ca9fa11bf6391bed4d535bc1394433bc94f50","Message":"fix add diem dich vu ko DN\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-12-07T08:43:33+07:00"},{"Sha1":"d043bd66297e3556f609f4f78026834fd10f8ee4","Message":"change argis rest url env\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-06-24T09:54:09+07:00"},{"Sha1":"9db562154c151ef4f59f53ede1beb1af8d848b59","Message":"favicon\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-10-15T14:55:15+07:00"}],"HeadCommit":{"Sha1":"eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Message":"fix build lỗi sau 1 thời gian dài\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T09:40:13+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/fadd8cd3dd5fe23a597c675b4fb0c750fcd01e4c...eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Len":10}', 1685933370); INSERT INTO public.action VALUES (44, 4, 5, 1, 9, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Message":"fix build lỗi sau 1 thời gian dài\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T09:40:13+07:00"},{"Sha1":"59390456c00c4a15895278bf7d4371861b089254","Message":"update add huyen/tp diem dich vu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-12-07T08:56:14+07:00"},{"Sha1":"cf1ca9fa11bf6391bed4d535bc1394433bc94f50","Message":"fix add diem dich vu ko DN\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-12-07T08:43:33+07:00"},{"Sha1":"d043bd66297e3556f609f4f78026834fd10f8ee4","Message":"change argis rest url env\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-06-24T09:54:09+07:00"},{"Sha1":"9db562154c151ef4f59f53ede1beb1af8d848b59","Message":"favicon\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-10-15T14:55:15+07:00"}],"HeadCommit":{"Sha1":"eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Message":"fix build lỗi sau 1 thời gian dài\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T09:40:13+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/fadd8cd3dd5fe23a597c675b4fb0c750fcd01e4c...eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Len":10}', 1685933370); INSERT INTO public.action VALUES (121, 5, 1, 5, 15, 0, false, '', false, '', 1700798589); INSERT INTO public.action VALUES (122, 12, 1, 5, 15, 0, false, '', false, '', 1700798589); INSERT INTO public.action VALUES (123, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5983684e9d5976b8a5f1c302230691faf2cbcd24","Message":"init source\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-11-24T11:13:40+07:00"}],"HeadCommit":{"Sha1":"5983684e9d5976b8a5f1c302230691faf2cbcd24","Message":"init source\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-11-24T11:13:40+07:00"},"CompareURL":"Khieu-nai/backend/compare/faebefc16e6b3eeef35e781ad52e91ba9ac8aecb...5983684e9d5976b8a5f1c302230691faf2cbcd24","Len":1}', 1700799254); INSERT INTO public.action VALUES (124, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5983684e9d5976b8a5f1c302230691faf2cbcd24","Message":"init source\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-11-24T11:13:40+07:00"}],"HeadCommit":{"Sha1":"5983684e9d5976b8a5f1c302230691faf2cbcd24","Message":"init source\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-11-24T11:13:40+07:00"},"CompareURL":"Khieu-nai/backend/compare/faebefc16e6b3eeef35e781ad52e91ba9ac8aecb...5983684e9d5976b8a5f1c302230691faf2cbcd24","Len":1}', 1700799254); INSERT INTO public.action VALUES (126, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"}],"HeadCommit":{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/bf773b54733cc3351f271603748cf63fe426de36...36685007ea7cb1ed55029bf25e99f8fafd0005c3","Len":1}', 1700814613); INSERT INTO public.action VALUES (127, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"}],"HeadCommit":{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/bf773b54733cc3351f271603748cf63fe426de36...36685007ea7cb1ed55029bf25e99f8fafd0005c3","Len":1}', 1700814613); INSERT INTO public.action VALUES (128, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"}],"HeadCommit":{"Sha1":"36685007ea7cb1ed55029bf25e99f8fafd0005c3","Message":"update name PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T15:30:02+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/bf773b54733cc3351f271603748cf63fe426de36...36685007ea7cb1ed55029bf25e99f8fafd0005c3","Len":1}', 1700814613); INSERT INTO public.action VALUES (417, 5, 11, 11, 21, 0, false, '', false, '5|update row nld', 1702372549); INSERT INTO public.action VALUES (473, 1, 11, 11, 21, 0, false, '', false, '8|up code', 1702610184); INSERT INTO public.action VALUES (53, 4, 5, 1, 10, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"6127ed198d03b85f471a9cf2fbba33b49efecad4","Message":"quan lý hồ sơ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-07-09T13:38:14+07:00"},{"Sha1":"49c610146e4e0dd9c0cbdce4b2fe5d144a246ac1","Message":"tải phụ lục\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-06-09T16:47:40+07:00"},{"Sha1":"8f56a28d5deb2a7400964527099d00a3ce5ef7d0","Message":"dọn dẹp sạch sẽ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T15:19:19+07:00"},{"Sha1":"a2896b6c2cc19f7c9d855c8af59fb5299f44e182","Message":"new\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-15T14:37:14+07:00"},{"Sha1":"8f7ee392c1f8dbb4dc23af6f6a36b7c58f565fa1","Message":"web.config\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-13T09:06:06+07:00"}],"HeadCommit":{"Sha1":"6127ed198d03b85f471a9cf2fbba33b49efecad4","Message":"quan lý hồ sơ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-07-09T13:38:14+07:00"},"CompareURL":"","Len":8}', 1685933866); INSERT INTO public.action VALUES (54, 1, 5, 1, 10, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"580251b795de3f4ab4760b74af176873ee4129d7","Message":"update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T10:13:28+07:00"}],"HeadCommit":{"Sha1":"580251b795de3f4ab4760b74af176873ee4129d7","Message":"update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T10:13:28+07:00"},"CompareURL":"buu-chinh-vien-thong/api/compare/6127ed198d03b85f471a9cf2fbba33b49efecad4...580251b795de3f4ab4760b74af176873ee4129d7","Len":1}', 1685934824); INSERT INTO public.action VALUES (55, 8, 5, 1, 10, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"580251b795de3f4ab4760b74af176873ee4129d7","Message":"update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T10:13:28+07:00"}],"HeadCommit":{"Sha1":"580251b795de3f4ab4760b74af176873ee4129d7","Message":"update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T10:13:28+07:00"},"CompareURL":"buu-chinh-vien-thong/api/compare/6127ed198d03b85f471a9cf2fbba33b49efecad4...580251b795de3f4ab4760b74af176873ee4129d7","Len":1}', 1685934824); INSERT INTO public.action VALUES (57, 1, 1, 1, 11, 0, false, '', true, '', 1685934907); INSERT INTO public.action VALUES (129, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"}],"HeadCommit":{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36685007ea7cb1ed55029bf25e99f8fafd0005c3...caec7dea1404154a5d531a76760c5cf72740edf8","Len":1}', 1700817469); INSERT INTO public.action VALUES (130, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"}],"HeadCommit":{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36685007ea7cb1ed55029bf25e99f8fafd0005c3...caec7dea1404154a5d531a76760c5cf72740edf8","Len":1}', 1700817469); INSERT INTO public.action VALUES (131, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"}],"HeadCommit":{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36685007ea7cb1ed55029bf25e99f8fafd0005c3...caec7dea1404154a5d531a76760c5cf72740edf8","Len":1}', 1700817469); INSERT INTO public.action VALUES (132, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"}],"HeadCommit":{"Sha1":"caec7dea1404154a5d531a76760c5cf72740edf8","Message":"update url DacDiemPTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-24T16:17:35+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36685007ea7cb1ed55029bf25e99f8fafd0005c3...caec7dea1404154a5d531a76760c5cf72740edf8","Len":1}', 1700817469); INSERT INTO public.action VALUES (161, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"}],"HeadCommit":{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d3f9d622311007abad8020be3259e8de092c2223...ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Len":1}', 1701078721); INSERT INTO public.action VALUES (69, 1, 5, 1, 8, 0, false, 'refs/heads/nocms', true, '', 1686109358); INSERT INTO public.action VALUES (70, 7, 5, 1, 8, 0, false, 'refs/heads/nocms', true, '', 1686109358); INSERT INTO public.action VALUES (71, 4, 5, 1, 8, 0, false, 'refs/heads/nocms', true, '', 1686109358); INSERT INTO public.action VALUES (72, 1, 5, 1, 8, 0, false, 'refs/heads/nocms', true, '{"Commits":[{"Sha1":"c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Message":"fix arcgis service url\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T10:39:26+07:00"},{"Sha1":"f9c480a14776574e9fa018717881085801093db2","Message":"fix build\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T09:13:51+07:00"},{"Sha1":"6e7e608bba95346f1b99cd150f35c4535b019054","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-06T17:16:19+07:00"},{"Sha1":"e6fdf64c29aa52df6eaf9e1199b06bb2ca04d56b","Message":"update doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-05-06T16:40:13+07:00"},{"Sha1":"795f2e6ecb4a953e3a6e49a49238805f3bbe113a","Message":"chỉnh giao diện\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2021-03-08T16:16:50+07:00"}],"HeadCommit":{"Sha1":"c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Message":"fix arcgis service url\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T10:39:26+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/5bbb10cce9d247b57e7dee3bcd126304c6fbd141...c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Len":10}', 1686109359); INSERT INTO public.action VALUES (162, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"}],"HeadCommit":{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d3f9d622311007abad8020be3259e8de092c2223...ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Len":1}', 1701078721); INSERT INTO public.action VALUES (426, 11, 7, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438667); INSERT INTO public.action VALUES (427, 14, 7, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438667); INSERT INTO public.action VALUES (428, 1, 7, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438667); INSERT INTO public.action VALUES (73, 7, 5, 1, 8, 0, false, 'refs/heads/nocms', true, '{"Commits":[{"Sha1":"c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Message":"fix arcgis service url\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T10:39:26+07:00"},{"Sha1":"f9c480a14776574e9fa018717881085801093db2","Message":"fix build\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T09:13:51+07:00"},{"Sha1":"6e7e608bba95346f1b99cd150f35c4535b019054","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-06T17:16:19+07:00"},{"Sha1":"e6fdf64c29aa52df6eaf9e1199b06bb2ca04d56b","Message":"update doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-05-06T16:40:13+07:00"},{"Sha1":"795f2e6ecb4a953e3a6e49a49238805f3bbe113a","Message":"chỉnh giao diện\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2021-03-08T16:16:50+07:00"}],"HeadCommit":{"Sha1":"c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Message":"fix arcgis service url\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T10:39:26+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/5bbb10cce9d247b57e7dee3bcd126304c6fbd141...c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Len":10}', 1686109359); INSERT INTO public.action VALUES (74, 4, 5, 1, 8, 0, false, 'refs/heads/nocms', true, '{"Commits":[{"Sha1":"c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Message":"fix arcgis service url\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T10:39:26+07:00"},{"Sha1":"f9c480a14776574e9fa018717881085801093db2","Message":"fix build\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T09:13:51+07:00"},{"Sha1":"6e7e608bba95346f1b99cd150f35c4535b019054","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-06T17:16:19+07:00"},{"Sha1":"e6fdf64c29aa52df6eaf9e1199b06bb2ca04d56b","Message":"update doanh nghiep\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-05-06T16:40:13+07:00"},{"Sha1":"795f2e6ecb4a953e3a6e49a49238805f3bbe113a","Message":"chỉnh giao diện\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2021-03-08T16:16:50+07:00"}],"HeadCommit":{"Sha1":"c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Message":"fix arcgis service url\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-07T10:39:26+07:00"},"CompareURL":"xuc-tien-dau-tu/frontend/compare/5bbb10cce9d247b57e7dee3bcd126304c6fbd141...c76f7a74cf41fdd1c705fc9f019a697413ba8af7","Len":10}', 1686109359); INSERT INTO public.action VALUES (133, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"}],"HeadCommit":{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/caec7dea1404154a5d531a76760c5cf72740edf8...ed4c25e6303e122960b503d0d3186aa6c0924866","Len":1}', 1700980578); INSERT INTO public.action VALUES (134, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"}],"HeadCommit":{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/caec7dea1404154a5d531a76760c5cf72740edf8...ed4c25e6303e122960b503d0d3186aa6c0924866","Len":1}', 1700980578); INSERT INTO public.action VALUES (135, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"}],"HeadCommit":{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/caec7dea1404154a5d531a76760c5cf72740edf8...ed4c25e6303e122960b503d0d3186aa6c0924866","Len":1}', 1700980578); INSERT INTO public.action VALUES (136, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"}],"HeadCommit":{"Sha1":"ed4c25e6303e122960b503d0d3186aa6c0924866","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-26T13:36:05+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/caec7dea1404154a5d531a76760c5cf72740edf8...ed4c25e6303e122960b503d0d3186aa6c0924866","Len":1}', 1700980578); INSERT INTO public.action VALUES (429, 5, 7, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438667); INSERT INTO public.action VALUES (92, 9, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/98fac2b1708b47d60818e009363f5c231120e66a...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":0}', 1686812494); INSERT INTO public.action VALUES (474, 5, 11, 11, 21, 0, false, '', false, '8|up code', 1702610184); INSERT INTO public.action VALUES (689, 11, 11, 11, 21, 0, false, '', false, '18|import hoc vien', 1702953626); INSERT INTO public.action VALUES (137, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"}],"HeadCommit":{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ed4c25e6303e122960b503d0d3186aa6c0924866...93231c0c43f66b17577f50181d002e05c8fae830","Len":1}', 1701048937); INSERT INTO public.action VALUES (138, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"}],"HeadCommit":{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ed4c25e6303e122960b503d0d3186aa6c0924866...93231c0c43f66b17577f50181d002e05c8fae830","Len":1}', 1701048937); INSERT INTO public.action VALUES (139, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"}],"HeadCommit":{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ed4c25e6303e122960b503d0d3186aa6c0924866...93231c0c43f66b17577f50181d002e05c8fae830","Len":1}', 1701048937); INSERT INTO public.action VALUES (140, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"}],"HeadCommit":{"Sha1":"93231c0c43f66b17577f50181d002e05c8fae830","Message":"fix them moi ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T08:35:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ed4c25e6303e122960b503d0d3186aa6c0924866...93231c0c43f66b17577f50181d002e05c8fae830","Len":1}', 1701048937); INSERT INTO public.action VALUES (163, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"}],"HeadCommit":{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d3f9d622311007abad8020be3259e8de092c2223...ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Len":1}', 1701078722); INSERT INTO public.action VALUES (164, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"}],"HeadCommit":{"Sha1":"ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Message":"update fix loi add ptd trong danh sach tk\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:51:52+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d3f9d622311007abad8020be3259e8de092c2223...ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7","Len":1}', 1701078722); INSERT INTO public.action VALUES (174, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"}],"HeadCommit":{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc...e4a5176a30ebf1bc13a19cc272e09556838f0966","Len":1}', 1701152540); INSERT INTO public.action VALUES (60, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '', 1685934955); INSERT INTO public.action VALUES (81, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"}],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/a5b7c1734d5ed5f76db0664b9e6641407c521cc2...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":1}', 1686802472); INSERT INTO public.action VALUES (59, 4, 1, 1, 11, 0, false, '', true, '', 1685934907); INSERT INTO public.action VALUES (62, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '', 1685934955); INSERT INTO public.action VALUES (430, 11, 11, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438682); INSERT INTO public.action VALUES (431, 14, 11, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438682); INSERT INTO public.action VALUES (432, 1, 11, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438682); INSERT INTO public.action VALUES (433, 5, 11, 11, 21, 0, false, '', false, '6|cmt QMTS + edit url KeHoachTuyenSinh', 1702438682); INSERT INTO public.action VALUES (141, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"}],"HeadCommit":{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/93231c0c43f66b17577f50181d002e05c8fae830...3851a5e19d0466c9594e7a8ea754b3f9b5601594","Len":1}', 1701055458); INSERT INTO public.action VALUES (142, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"}],"HeadCommit":{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/93231c0c43f66b17577f50181d002e05c8fae830...3851a5e19d0466c9594e7a8ea754b3f9b5601594","Len":1}', 1701055458); INSERT INTO public.action VALUES (143, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"}],"HeadCommit":{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/93231c0c43f66b17577f50181d002e05c8fae830...3851a5e19d0466c9594e7a8ea754b3f9b5601594","Len":1}', 1701055458); INSERT INTO public.action VALUES (144, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"}],"HeadCommit":{"Sha1":"3851a5e19d0466c9594e7a8ea754b3f9b5601594","Message":"fix ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T10:24:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/93231c0c43f66b17577f50181d002e05c8fae830...3851a5e19d0466c9594e7a8ea754b3f9b5601594","Len":1}', 1701055458); INSERT INTO public.action VALUES (165, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"}],"HeadCommit":{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7...9c57d2cf2ca0da2086e5456b2726730571563db7","Len":1}', 1701079211); INSERT INTO public.action VALUES (166, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"}],"HeadCommit":{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7...9c57d2cf2ca0da2086e5456b2726730571563db7","Len":1}', 1701079211); INSERT INTO public.action VALUES (167, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"}],"HeadCommit":{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7...9c57d2cf2ca0da2086e5456b2726730571563db7","Len":1}', 1701079211); INSERT INTO public.action VALUES (58, 8, 1, 1, 11, 0, false, '', true, '', 1685934907); INSERT INTO public.action VALUES (61, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '', 1685934955); INSERT INTO public.action VALUES (168, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"}],"HeadCommit":{"Sha1":"9c57d2cf2ca0da2086e5456b2726730571563db7","Message":"fix requit\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T16:59:59+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/ecf58a3f21e0622fea9f6849d91ab2d4ca196fc7...9c57d2cf2ca0da2086e5456b2726730571563db7","Len":1}', 1701079211); INSERT INTO public.action VALUES (483, 11, 7, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615292); INSERT INTO public.action VALUES (484, 14, 7, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615292); INSERT INTO public.action VALUES (485, 1, 7, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615292); INSERT INTO public.action VALUES (486, 5, 7, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615292); INSERT INTO public.action VALUES (487, 11, 11, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615307); INSERT INTO public.action VALUES (488, 14, 11, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615307); INSERT INTO public.action VALUES (489, 1, 11, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615307); INSERT INTO public.action VALUES (145, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"}],"HeadCommit":{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3851a5e19d0466c9594e7a8ea754b3f9b5601594...f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Len":1}', 1701067729); INSERT INTO public.action VALUES (146, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"}],"HeadCommit":{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3851a5e19d0466c9594e7a8ea754b3f9b5601594...f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Len":1}', 1701067729); INSERT INTO public.action VALUES (147, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"}],"HeadCommit":{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3851a5e19d0466c9594e7a8ea754b3f9b5601594...f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Len":1}', 1701067729); INSERT INTO public.action VALUES (148, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"}],"HeadCommit":{"Sha1":"f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T13:48:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3851a5e19d0466c9594e7a8ea754b3f9b5601594...f62ca2e0feab5f1ca4d9a35de999748b5949d1d3","Len":1}', 1701067729); INSERT INTO public.action VALUES (149, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"}],"HeadCommit":{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/f62ca2e0feab5f1ca4d9a35de999748b5949d1d3...4bd5d4db6e0193f220385eb1ddd6e400398970e4","Len":1}', 1701068438); INSERT INTO public.action VALUES (99, 4, 5, 4, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T08:23:22+07:00"},{"Sha1":"456cba1d9f42df2c2e89f33c39020910caa1a70a","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T07:51:01+07:00"},{"Sha1":"16798cb6703ed5788c4ebe8c7ecb899de7bfb78d","Message":"update reply soan van ban\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T15:01:24+07:00"},{"Sha1":"2b95f61052932964a0914349390cc0d5af5fa94c","Message":"update PhamViDo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T11:01:18+07:00"},{"Sha1":"da16d0714327c73e6fa44064aa83e1db23730f82","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T08:59:28+07:00"}],"HeadCommit":{"Sha1":"9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T08:23:22+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/440a1f54ebd86fef26b1f2b4715f8c22bf04bd0e...9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Len":10}', 1686814497); INSERT INTO public.action VALUES (100, 10, 5, 4, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T08:23:22+07:00"},{"Sha1":"456cba1d9f42df2c2e89f33c39020910caa1a70a","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T07:51:01+07:00"},{"Sha1":"16798cb6703ed5788c4ebe8c7ecb899de7bfb78d","Message":"update reply soan van ban\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T15:01:24+07:00"},{"Sha1":"2b95f61052932964a0914349390cc0d5af5fa94c","Message":"update PhamViDo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T11:01:18+07:00"},{"Sha1":"da16d0714327c73e6fa44064aa83e1db23730f82","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T08:59:28+07:00"}],"HeadCommit":{"Sha1":"9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T08:23:22+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/440a1f54ebd86fef26b1f2b4715f8c22bf04bd0e...9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Len":10}', 1686814497); INSERT INTO public.action VALUES (47, 4, 1, 1, 10, 0, false, '', true, '', 1685933663); INSERT INTO public.action VALUES (48, 1, 5, 1, 10, 0, false, 'refs/heads/dev', true, '', 1685933865); INSERT INTO public.action VALUES (79, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Message":"convert to vite\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T16:06:36+07:00"}],"HeadCommit":{"Sha1":"a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Message":"convert to vite\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T16:06:36+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/d39023ac6221ece5fcb22228c67ffb67a86162ef...a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Len":1}', 1686733627); INSERT INTO public.action VALUES (84, 9, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"}],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/a5b7c1734d5ed5f76db0664b9e6641407c521cc2...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":1}', 1686802472); INSERT INTO public.action VALUES (490, 5, 11, 11, 21, 0, false, '', false, '9|add PLTDDT', 1702615307); INSERT INTO public.action VALUES (690, 14, 11, 11, 21, 0, false, '', false, '18|import hoc vien', 1702953626); INSERT INTO public.action VALUES (691, 1, 11, 11, 21, 0, false, '', false, '18|import hoc vien', 1702953626); INSERT INTO public.action VALUES (150, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"}],"HeadCommit":{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/f62ca2e0feab5f1ca4d9a35de999748b5949d1d3...4bd5d4db6e0193f220385eb1ddd6e400398970e4","Len":1}', 1701068438); INSERT INTO public.action VALUES (151, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"}],"HeadCommit":{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/f62ca2e0feab5f1ca4d9a35de999748b5949d1d3...4bd5d4db6e0193f220385eb1ddd6e400398970e4","Len":1}', 1701068438); INSERT INTO public.action VALUES (152, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"}],"HeadCommit":{"Sha1":"4bd5d4db6e0193f220385eb1ddd6e400398970e4","Message":"add PTD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:00:27+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/f62ca2e0feab5f1ca4d9a35de999748b5949d1d3...4bd5d4db6e0193f220385eb1ddd6e400398970e4","Len":1}', 1701068438); INSERT INTO public.action VALUES (169, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"}],"HeadCommit":{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/9c57d2cf2ca0da2086e5456b2726730571563db7...7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Len":1}', 1701135453); INSERT INTO public.action VALUES (170, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"}],"HeadCommit":{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/9c57d2cf2ca0da2086e5456b2726730571563db7...7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Len":1}', 1701135453); INSERT INTO public.action VALUES (171, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"}],"HeadCommit":{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/9c57d2cf2ca0da2086e5456b2726730571563db7...7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Len":1}', 1701135453); INSERT INTO public.action VALUES (93, 4, 1, 4, 12, 0, false, '', true, '', 1686814439); INSERT INTO public.action VALUES (94, 10, 1, 4, 12, 0, false, '', true, '', 1686814439); INSERT INTO public.action VALUES (95, 1, 1, 4, 12, 0, false, '', true, '', 1686814439); INSERT INTO public.action VALUES (96, 4, 5, 4, 12, 0, false, 'refs/heads/main', true, '', 1686814496); INSERT INTO public.action VALUES (97, 10, 5, 4, 12, 0, false, 'refs/heads/main', true, '', 1686814496); INSERT INTO public.action VALUES (98, 1, 5, 4, 12, 0, false, 'refs/heads/main', true, '', 1686814496); INSERT INTO public.action VALUES (85, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"}],"HeadCommit":{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66...98fac2b1708b47d60818e009363f5c231120e66a","Len":1}', 1686812262); INSERT INTO public.action VALUES (86, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"}],"HeadCommit":{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66...98fac2b1708b47d60818e009363f5c231120e66a","Len":1}', 1686812262); INSERT INTO public.action VALUES (89, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/98fac2b1708b47d60818e009363f5c231120e66a...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":0}', 1686812494); INSERT INTO public.action VALUES (101, 1, 5, 4, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T08:23:22+07:00"},{"Sha1":"456cba1d9f42df2c2e89f33c39020910caa1a70a","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T07:51:01+07:00"},{"Sha1":"16798cb6703ed5788c4ebe8c7ecb899de7bfb78d","Message":"update reply soan van ban\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T15:01:24+07:00"},{"Sha1":"2b95f61052932964a0914349390cc0d5af5fa94c","Message":"update PhamViDo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T11:01:18+07:00"},{"Sha1":"da16d0714327c73e6fa44064aa83e1db23730f82","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-05-31T08:59:28+07:00"}],"HeadCommit":{"Sha1":"9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Message":"update Required email\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-06-01T08:23:22+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/440a1f54ebd86fef26b1f2b4715f8c22bf04bd0e...9a3c0eaa99e6a1d5c0036fffc7545b3b9d60f13c","Len":10}', 1686814497); INSERT INTO public.action VALUES (153, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"}],"HeadCommit":{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4bd5d4db6e0193f220385eb1ddd6e400398970e4...b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Len":1}', 1701070242); INSERT INTO public.action VALUES (154, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"}],"HeadCommit":{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4bd5d4db6e0193f220385eb1ddd6e400398970e4...b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Len":1}', 1701070242); INSERT INTO public.action VALUES (155, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"}],"HeadCommit":{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4bd5d4db6e0193f220385eb1ddd6e400398970e4...b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Len":1}', 1701070242); INSERT INTO public.action VALUES (156, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"}],"HeadCommit":{"Sha1":"b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Message":"fix issue\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T14:30:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4bd5d4db6e0193f220385eb1ddd6e400398970e4...b5727ad2eac7d277d7a7a3cd78c24c798abffc65","Len":1}', 1701070242); INSERT INTO public.action VALUES (172, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"}],"HeadCommit":{"Sha1":"7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Message":"fix reload ptd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T08:30:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/9c57d2cf2ca0da2086e5456b2726730571563db7...7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc","Len":1}', 1701135453); INSERT INTO public.action VALUES (175, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"}],"HeadCommit":{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc...e4a5176a30ebf1bc13a19cc272e09556838f0966","Len":1}', 1701152540); INSERT INTO public.action VALUES (102, 1, 5, 1, 9, 0, false, 'refs/heads/master', true, '', 1688616860); INSERT INTO public.action VALUES (103, 8, 5, 1, 9, 0, false, 'refs/heads/master', true, '', 1688616860); INSERT INTO public.action VALUES (104, 4, 5, 1, 9, 0, false, 'refs/heads/master', true, '', 1688616860); INSERT INTO public.action VALUES (105, 9, 5, 1, 9, 0, false, 'refs/heads/master', true, '', 1688616860); INSERT INTO public.action VALUES (176, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"}],"HeadCommit":{"Sha1":"e4a5176a30ebf1bc13a19cc272e09556838f0966","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T13:22:09+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7c22a03b36dac7cfe130f4fa0558d4d7511f6dcc...e4a5176a30ebf1bc13a19cc272e09556838f0966","Len":1}', 1701152540); INSERT INTO public.action VALUES (523, 11, 11, 11, 21, 0, false, '', false, '11|thinh', 1702626248); INSERT INTO public.action VALUES (524, 14, 11, 11, 21, 0, false, '', false, '11|thinh', 1702626248); INSERT INTO public.action VALUES (525, 1, 11, 11, 21, 0, false, '', false, '11|thinh', 1702626248); INSERT INTO public.action VALUES (526, 5, 11, 11, 21, 0, false, '', false, '11|thinh', 1702626248); INSERT INTO public.action VALUES (692, 5, 11, 11, 21, 0, false, '', false, '18|import hoc vien', 1702953626); INSERT INTO public.action VALUES (1209, 11, 7, 11, 21, 0, false, '', false, '32|thinh', 1704270128); INSERT INTO public.action VALUES (157, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"}],"HeadCommit":{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/b5727ad2eac7d277d7a7a3cd78c24c798abffc65...d3f9d622311007abad8020be3259e8de092c2223","Len":1}', 1701072279); INSERT INTO public.action VALUES (158, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"}],"HeadCommit":{"Sha1":"d3f9d622311007abad8020be3259e8de092c2223","Message":"update thong bao chinh sua tt co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-27T15:04:28+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/b5727ad2eac7d277d7a7a3cd78c24c798abffc65...d3f9d622311007abad8020be3259e8de092c2223","Len":1}', 1701072279); INSERT INTO public.action VALUES (42, 1, 5, 1, 9, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Message":"fix build lỗi sau 1 thời gian dài\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T09:40:13+07:00"},{"Sha1":"59390456c00c4a15895278bf7d4371861b089254","Message":"update add huyen/tp diem dich vu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-12-07T08:56:14+07:00"},{"Sha1":"cf1ca9fa11bf6391bed4d535bc1394433bc94f50","Message":"fix add diem dich vu ko DN\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-12-07T08:43:33+07:00"},{"Sha1":"d043bd66297e3556f609f4f78026834fd10f8ee4","Message":"change argis rest url env\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2022-06-24T09:54:09+07:00"},{"Sha1":"9db562154c151ef4f59f53ede1beb1af8d848b59","Message":"favicon\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2021-10-15T14:55:15+07:00"}],"HeadCommit":{"Sha1":"eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Message":"fix build lỗi sau 1 thời gian dài\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T09:40:13+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/fadd8cd3dd5fe23a597c675b4fb0c750fcd01e4c...eecc690536ed3f49a97cbb6bb416175b0ff4eb06","Len":10}', 1685933370); INSERT INTO public.action VALUES (106, 1, 5, 1, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},{"Sha1":"a42099afa0558efbca571dce5b7b98906a1585bb","Message":"hidden fields BTS\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-06T10:09:11+07:00"}],"HeadCommit":{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/eecc690536ed3f49a97cbb6bb416175b0ff4eb06...9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Len":2}', 1688616861); INSERT INTO public.action VALUES (107, 8, 5, 1, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},{"Sha1":"a42099afa0558efbca571dce5b7b98906a1585bb","Message":"hidden fields BTS\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-06T10:09:11+07:00"}],"HeadCommit":{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/eecc690536ed3f49a97cbb6bb416175b0ff4eb06...9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Len":2}', 1688616861); INSERT INTO public.action VALUES (108, 4, 5, 1, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},{"Sha1":"a42099afa0558efbca571dce5b7b98906a1585bb","Message":"hidden fields BTS\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-06T10:09:11+07:00"}],"HeadCommit":{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/eecc690536ed3f49a97cbb6bb416175b0ff4eb06...9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Len":2}', 1688616861); INSERT INTO public.action VALUES (109, 9, 5, 1, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},{"Sha1":"a42099afa0558efbca571dce5b7b98906a1585bb","Message":"hidden fields BTS\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-06T10:09:11+07:00"}],"HeadCommit":{"Sha1":"9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T11:13:54+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/eecc690536ed3f49a97cbb6bb416175b0ff4eb06...9b214c9e5bb595c7b91c72d4276a0121e43c25c6","Len":2}', 1688616861); INSERT INTO public.action VALUES (708, 5, 11, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957100); INSERT INTO public.action VALUES (1210, 14, 7, 11, 21, 0, false, '', false, '32|thinh', 1704270128); INSERT INTO public.action VALUES (110, 4, 5, 4, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},{"Sha1":"f1dc49846352a48d337ee3428bf78e4e500e0e2a","Message":"add web.config\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T13:26:23+07:00"}],"HeadCommit":{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/9b214c9e5bb595c7b91c72d4276a0121e43c25c6...d9808de1f02ff6939def557ccc6e2bc9e56f335d","Len":2}', 1689230559); INSERT INTO public.action VALUES (111, 8, 5, 4, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},{"Sha1":"f1dc49846352a48d337ee3428bf78e4e500e0e2a","Message":"add web.config\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T13:26:23+07:00"}],"HeadCommit":{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/9b214c9e5bb595c7b91c72d4276a0121e43c25c6...d9808de1f02ff6939def557ccc6e2bc9e56f335d","Len":2}', 1689230559); INSERT INTO public.action VALUES (112, 1, 5, 4, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},{"Sha1":"f1dc49846352a48d337ee3428bf78e4e500e0e2a","Message":"add web.config\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T13:26:23+07:00"}],"HeadCommit":{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/9b214c9e5bb595c7b91c72d4276a0121e43c25c6...d9808de1f02ff6939def557ccc6e2bc9e56f335d","Len":2}', 1689230559); INSERT INTO public.action VALUES (113, 9, 5, 4, 9, 0, false, 'refs/heads/master', true, '{"Commits":[{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},{"Sha1":"f1dc49846352a48d337ee3428bf78e4e500e0e2a","Message":"add web.config\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-07-06T13:26:23+07:00"}],"HeadCommit":{"Sha1":"d9808de1f02ff6939def557ccc6e2bc9e56f335d","Message":"update dashboard\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-07-13T10:39:13+07:00"},"CompareURL":"buu-chinh-vien-thong/web-gis/compare/9b214c9e5bb595c7b91c72d4276a0121e43c25c6...d9808de1f02ff6939def557ccc6e2bc9e56f335d","Len":2}', 1689230559); INSERT INTO public.action VALUES (49, 8, 5, 1, 10, 0, false, 'refs/heads/dev', true, '', 1685933865); INSERT INTO public.action VALUES (50, 4, 5, 1, 10, 0, false, 'refs/heads/dev', true, '', 1685933865); INSERT INTO public.action VALUES (51, 1, 5, 1, 10, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"6127ed198d03b85f471a9cf2fbba33b49efecad4","Message":"quan lý hồ sơ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-07-09T13:38:14+07:00"},{"Sha1":"49c610146e4e0dd9c0cbdce4b2fe5d144a246ac1","Message":"tải phụ lục\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-06-09T16:47:40+07:00"},{"Sha1":"8f56a28d5deb2a7400964527099d00a3ce5ef7d0","Message":"dọn dẹp sạch sẽ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T15:19:19+07:00"},{"Sha1":"a2896b6c2cc19f7c9d855c8af59fb5299f44e182","Message":"new\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-15T14:37:14+07:00"},{"Sha1":"8f7ee392c1f8dbb4dc23af6f6a36b7c58f565fa1","Message":"web.config\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-13T09:06:06+07:00"}],"HeadCommit":{"Sha1":"6127ed198d03b85f471a9cf2fbba33b49efecad4","Message":"quan lý hồ sơ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-07-09T13:38:14+07:00"},"CompareURL":"","Len":8}', 1685933866); INSERT INTO public.action VALUES (52, 8, 5, 1, 10, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"6127ed198d03b85f471a9cf2fbba33b49efecad4","Message":"quan lý hồ sơ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-07-09T13:38:14+07:00"},{"Sha1":"49c610146e4e0dd9c0cbdce4b2fe5d144a246ac1","Message":"tải phụ lục\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-06-09T16:47:40+07:00"},{"Sha1":"8f56a28d5deb2a7400964527099d00a3ce5ef7d0","Message":"dọn dẹp sạch sẽ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T15:19:19+07:00"},{"Sha1":"a2896b6c2cc19f7c9d855c8af59fb5299f44e182","Message":"new\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-15T14:37:14+07:00"},{"Sha1":"8f7ee392c1f8dbb4dc23af6f6a36b7c58f565fa1","Message":"web.config\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-13T09:06:06+07:00"}],"HeadCommit":{"Sha1":"6127ed198d03b85f471a9cf2fbba33b49efecad4","Message":"quan lý hồ sơ\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-07-09T13:38:14+07:00"},"CompareURL":"","Len":8}', 1685933866); INSERT INTO public.action VALUES (721, 11, 7, 11, 21, 0, false, '', false, '20|thinh', 1702958706); INSERT INTO public.action VALUES (56, 4, 5, 1, 10, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"580251b795de3f4ab4760b74af176873ee4129d7","Message":"update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T10:13:28+07:00"}],"HeadCommit":{"Sha1":"580251b795de3f4ab4760b74af176873ee4129d7","Message":"update\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T10:13:28+07:00"},"CompareURL":"buu-chinh-vien-thong/api/compare/6127ed198d03b85f471a9cf2fbba33b49efecad4...580251b795de3f4ab4760b74af176873ee4129d7","Len":1}', 1685934824); INSERT INTO public.action VALUES (63, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"f91352c431379dce1be028e51b3d0c99ebcff400","Message":"chỉnh sửa thông tin ok\n","AuthorEmail":"dungnthFX00443@funix.edu.vn","AuthorName":"dungnguyn","CommitterEmail":"dungnthFX00443@funix.edu.vn","CommitterName":"dungnguyn","Timestamp":"2020-08-18T08:15:49+07:00"},{"Sha1":"a6746493d8c60b12707c8869a1617f6860cb11f0","Message":"dọn dẹp admin\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T15:45:45+07:00"},{"Sha1":"fc6ab2edc380cab80d146db5ec26e2889e4c1686","Message":"clean tiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T13:27:13+07:00"},{"Sha1":"cfd082ebc123e4a3998560576f0da435d5b9c31b","Message":"clean source\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T10:06:43+07:00"},{"Sha1":"382fc58396db1bf4e29ec0024c9d1076fde5b6d7","Message":"Initial commit\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-04-25T09:21:38+07:00"}],"HeadCommit":{"Sha1":"f91352c431379dce1be028e51b3d0c99ebcff400","Message":"chỉnh sửa thông tin ok\n","AuthorEmail":"dungnthFX00443@funix.edu.vn","AuthorName":"dungnguyn","CommitterEmail":"dungnthFX00443@funix.edu.vn","CommitterName":"dungnguyn","Timestamp":"2020-08-18T08:15:49+07:00"},"CompareURL":"","Len":5}', 1685934955); INSERT INTO public.action VALUES (66, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"0af9c340bcd9d70847d5f64aa980d5690265d3ac","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T14:25:21+07:00"}],"HeadCommit":{"Sha1":"0af9c340bcd9d70847d5f64aa980d5690265d3ac","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T14:25:21+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/f91352c431379dce1be028e51b3d0c99ebcff400...0af9c340bcd9d70847d5f64aa980d5690265d3ac","Len":1}', 1685949973); INSERT INTO public.action VALUES (75, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"d39023ac6221ece5fcb22228c67ffb67a86162ef","Message":"change website domain\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T09:46:04+07:00"}],"HeadCommit":{"Sha1":"d39023ac6221ece5fcb22228c67ffb67a86162ef","Message":"change website domain\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T09:46:04+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/0af9c340bcd9d70847d5f64aa980d5690265d3ac...d39023ac6221ece5fcb22228c67ffb67a86162ef","Len":1}', 1686710845); INSERT INTO public.action VALUES (78, 1, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Message":"convert to vite\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T16:06:36+07:00"}],"HeadCommit":{"Sha1":"a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Message":"convert to vite\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T16:06:36+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/d39023ac6221ece5fcb22228c67ffb67a86162ef...a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Len":1}', 1686733627); INSERT INTO public.action VALUES (80, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Message":"convert to vite\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T16:06:36+07:00"}],"HeadCommit":{"Sha1":"a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Message":"convert to vite\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T16:06:36+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/d39023ac6221ece5fcb22228c67ffb67a86162ef...a5b7c1734d5ed5f76db0664b9e6641407c521cc2","Len":1}', 1686733627); INSERT INTO public.action VALUES (83, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"}],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/a5b7c1734d5ed5f76db0664b9e6641407c521cc2...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":1}', 1686802472); INSERT INTO public.action VALUES (87, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"}],"HeadCommit":{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66...98fac2b1708b47d60818e009363f5c231120e66a","Len":1}', 1686812262); INSERT INTO public.action VALUES (88, 9, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"}],"HeadCommit":{"Sha1":"98fac2b1708b47d60818e009363f5c231120e66a","Message":"Test empty commit\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T13:57:32+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66...98fac2b1708b47d60818e009363f5c231120e66a","Len":1}', 1686812262); INSERT INTO public.action VALUES (65, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"f91352c431379dce1be028e51b3d0c99ebcff400","Message":"chỉnh sửa thông tin ok\n","AuthorEmail":"dungnthFX00443@funix.edu.vn","AuthorName":"dungnguyn","CommitterEmail":"dungnthFX00443@funix.edu.vn","CommitterName":"dungnguyn","Timestamp":"2020-08-18T08:15:49+07:00"},{"Sha1":"a6746493d8c60b12707c8869a1617f6860cb11f0","Message":"dọn dẹp admin\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T15:45:45+07:00"},{"Sha1":"fc6ab2edc380cab80d146db5ec26e2889e4c1686","Message":"clean tiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T13:27:13+07:00"},{"Sha1":"cfd082ebc123e4a3998560576f0da435d5b9c31b","Message":"clean source\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T10:06:43+07:00"},{"Sha1":"382fc58396db1bf4e29ec0024c9d1076fde5b6d7","Message":"Initial commit\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-04-25T09:21:38+07:00"}],"HeadCommit":{"Sha1":"f91352c431379dce1be028e51b3d0c99ebcff400","Message":"chỉnh sửa thông tin ok\n","AuthorEmail":"dungnthFX00443@funix.edu.vn","AuthorName":"dungnguyn","CommitterEmail":"dungnthFX00443@funix.edu.vn","CommitterName":"dungnguyn","Timestamp":"2020-08-18T08:15:49+07:00"},"CompareURL":"","Len":5}', 1685934955); INSERT INTO public.action VALUES (68, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"0af9c340bcd9d70847d5f64aa980d5690265d3ac","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T14:25:21+07:00"}],"HeadCommit":{"Sha1":"0af9c340bcd9d70847d5f64aa980d5690265d3ac","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T14:25:21+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/f91352c431379dce1be028e51b3d0c99ebcff400...0af9c340bcd9d70847d5f64aa980d5690265d3ac","Len":1}', 1685949973); INSERT INTO public.action VALUES (77, 4, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"d39023ac6221ece5fcb22228c67ffb67a86162ef","Message":"change website domain\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T09:46:04+07:00"}],"HeadCommit":{"Sha1":"d39023ac6221ece5fcb22228c67ffb67a86162ef","Message":"change website domain\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T09:46:04+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/0af9c340bcd9d70847d5f64aa980d5690265d3ac...d39023ac6221ece5fcb22228c67ffb67a86162ef","Len":1}', 1686710845); INSERT INTO public.action VALUES (82, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"}],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/a5b7c1734d5ed5f76db0664b9e6641407c521cc2...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":1}', 1686802472); INSERT INTO public.action VALUES (64, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"f91352c431379dce1be028e51b3d0c99ebcff400","Message":"chỉnh sửa thông tin ok\n","AuthorEmail":"dungnthFX00443@funix.edu.vn","AuthorName":"dungnguyn","CommitterEmail":"dungnthFX00443@funix.edu.vn","CommitterName":"dungnguyn","Timestamp":"2020-08-18T08:15:49+07:00"},{"Sha1":"a6746493d8c60b12707c8869a1617f6860cb11f0","Message":"dọn dẹp admin\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T15:45:45+07:00"},{"Sha1":"fc6ab2edc380cab80d146db5ec26e2889e4c1686","Message":"clean tiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T13:27:13+07:00"},{"Sha1":"cfd082ebc123e4a3998560576f0da435d5b9c31b","Message":"clean source\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2020-05-16T10:06:43+07:00"},{"Sha1":"382fc58396db1bf4e29ec0024c9d1076fde5b6d7","Message":"Initial commit\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"dongtv","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"dongtv","Timestamp":"2020-04-25T09:21:38+07:00"}],"HeadCommit":{"Sha1":"f91352c431379dce1be028e51b3d0c99ebcff400","Message":"chỉnh sửa thông tin ok\n","AuthorEmail":"dungnthFX00443@funix.edu.vn","AuthorName":"dungnguyn","CommitterEmail":"dungnthFX00443@funix.edu.vn","CommitterName":"dungnguyn","Timestamp":"2020-08-18T08:15:49+07:00"},"CompareURL":"","Len":5}', 1685934955); INSERT INTO public.action VALUES (67, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"0af9c340bcd9d70847d5f64aa980d5690265d3ac","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T14:25:21+07:00"}],"HeadCommit":{"Sha1":"0af9c340bcd9d70847d5f64aa980d5690265d3ac","Message":"fix để lâu ngày build lỗi\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-05T14:25:21+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/f91352c431379dce1be028e51b3d0c99ebcff400...0af9c340bcd9d70847d5f64aa980d5690265d3ac","Len":1}', 1685949973); INSERT INTO public.action VALUES (76, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[{"Sha1":"d39023ac6221ece5fcb22228c67ffb67a86162ef","Message":"change website domain\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T09:46:04+07:00"}],"HeadCommit":{"Sha1":"d39023ac6221ece5fcb22228c67ffb67a86162ef","Message":"change website domain\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-14T09:46:04+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/0af9c340bcd9d70847d5f64aa980d5690265d3ac...d39023ac6221ece5fcb22228c67ffb67a86162ef","Len":1}', 1686710845); INSERT INTO public.action VALUES (90, 8, 5, 1, 11, 0, false, 'refs/heads/dev', true, '{"Commits":[],"HeadCommit":{"Sha1":"7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Message":"add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Le Hong Ngoc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Le Hong Ngoc","Timestamp":"2023-06-15T11:14:05+07:00"},"CompareURL":"buu-chinh-vien-thong/web-admin/compare/98fac2b1708b47d60818e009363f5c231120e66a...7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66","Len":0}', 1686812494); INSERT INTO public.action VALUES (177, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"}],"HeadCommit":{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e4a5176a30ebf1bc13a19cc272e09556838f0966...d5ec7ac807a96042f9f830e18351bcd04f19e93f","Len":1}', 1701156957); INSERT INTO public.action VALUES (178, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"}],"HeadCommit":{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e4a5176a30ebf1bc13a19cc272e09556838f0966...d5ec7ac807a96042f9f830e18351bcd04f19e93f","Len":1}', 1701156957); INSERT INTO public.action VALUES (179, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"}],"HeadCommit":{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e4a5176a30ebf1bc13a19cc272e09556838f0966...d5ec7ac807a96042f9f830e18351bcd04f19e93f","Len":1}', 1701156957); INSERT INTO public.action VALUES (180, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"}],"HeadCommit":{"Sha1":"d5ec7ac807a96042f9f830e18351bcd04f19e93f","Message":"update fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T14:35:43+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e4a5176a30ebf1bc13a19cc272e09556838f0966...d5ec7ac807a96042f9f830e18351bcd04f19e93f","Len":1}', 1701156957); INSERT INTO public.action VALUES (181, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"}],"HeadCommit":{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d5ec7ac807a96042f9f830e18351bcd04f19e93f...2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Len":1}', 1701159376); INSERT INTO public.action VALUES (182, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"}],"HeadCommit":{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d5ec7ac807a96042f9f830e18351bcd04f19e93f...2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Len":1}', 1701159376); INSERT INTO public.action VALUES (183, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"}],"HeadCommit":{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d5ec7ac807a96042f9f830e18351bcd04f19e93f...2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Len":1}', 1701159376); INSERT INTO public.action VALUES (184, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"}],"HeadCommit":{"Sha1":"2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Message":"fix ThemMoi thong tin co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-28T15:16:06+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d5ec7ac807a96042f9f830e18351bcd04f19e93f...2fcd5d81544a61a5e7962ada3a735fb3bde9a441","Len":1}', 1701159376); INSERT INTO public.action VALUES (234, 4, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8c427fb4de68adec3228e13f736a547a36df3b03","Message":"feat: race 50%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-11-29T10:00:14+07:00"}],"HeadCommit":{"Sha1":"8c427fb4de68adec3228e13f736a547a36df3b03","Message":"feat: race 50%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-11-29T10:00:14+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/8455cf857b1b0496fb34707f1bbd7bf2a56d19b2...8c427fb4de68adec3228e13f736a547a36df3b03","Len":1}', 1701256062); INSERT INTO public.action VALUES (185, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"}],"HeadCommit":{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/2fcd5d81544a61a5e7962ada3a735fb3bde9a441...0746a90962001df31d366ad9c63eb74e04a6e3f4","Len":1}', 1701220446); INSERT INTO public.action VALUES (186, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"}],"HeadCommit":{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/2fcd5d81544a61a5e7962ada3a735fb3bde9a441...0746a90962001df31d366ad9c63eb74e04a6e3f4","Len":1}', 1701220446); INSERT INTO public.action VALUES (187, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"}],"HeadCommit":{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/2fcd5d81544a61a5e7962ada3a735fb3bde9a441...0746a90962001df31d366ad9c63eb74e04a6e3f4","Len":1}', 1701220446); INSERT INTO public.action VALUES (188, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"}],"HeadCommit":{"Sha1":"0746a90962001df31d366ad9c63eb74e04a6e3f4","Message":"update url delete donvi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T08:13:51+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/2fcd5d81544a61a5e7962ada3a735fb3bde9a441...0746a90962001df31d366ad9c63eb74e04a6e3f4","Len":1}', 1701220446); INSERT INTO public.action VALUES (189, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"}],"HeadCommit":{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/0746a90962001df31d366ad9c63eb74e04a6e3f4...7eaef6c1be4993406bce848f259583da50e14768","Len":1}', 1701224083); INSERT INTO public.action VALUES (190, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"}],"HeadCommit":{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/0746a90962001df31d366ad9c63eb74e04a6e3f4...7eaef6c1be4993406bce848f259583da50e14768","Len":1}', 1701224083); INSERT INTO public.action VALUES (191, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"}],"HeadCommit":{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/0746a90962001df31d366ad9c63eb74e04a6e3f4...7eaef6c1be4993406bce848f259583da50e14768","Len":1}', 1701224083); INSERT INTO public.action VALUES (192, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"}],"HeadCommit":{"Sha1":"7eaef6c1be4993406bce848f259583da50e14768","Message":"fix callapi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T09:14:29+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/0746a90962001df31d366ad9c63eb74e04a6e3f4...7eaef6c1be4993406bce848f259583da50e14768","Len":1}', 1701224083); INSERT INTO public.action VALUES (235, 13, 18, 13, 18, 0, false, 'refs/heads/test', false, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1701256062); INSERT INTO public.action VALUES (236, 1, 18, 13, 18, 0, false, 'refs/heads/test', false, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1701256062); INSERT INTO public.action VALUES (237, 4, 18, 13, 18, 0, false, 'refs/heads/test', false, '{"Commits":null,"HeadCommit":null,"CompareURL":"","Len":0}', 1701256062); INSERT INTO public.action VALUES (238, 13, 19, 13, 18, 0, false, 'refs/heads/test', false, '', 1701256062); INSERT INTO public.action VALUES (239, 1, 19, 13, 18, 0, false, 'refs/heads/test', false, '', 1701256062); INSERT INTO public.action VALUES (722, 14, 7, 11, 21, 0, false, '', false, '20|thinh', 1702958706); INSERT INTO public.action VALUES (193, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"}],"HeadCommit":{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7eaef6c1be4993406bce848f259583da50e14768...5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Len":1}', 1701229601); INSERT INTO public.action VALUES (194, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"}],"HeadCommit":{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7eaef6c1be4993406bce848f259583da50e14768...5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Len":1}', 1701229601); INSERT INTO public.action VALUES (195, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"}],"HeadCommit":{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7eaef6c1be4993406bce848f259583da50e14768...5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Len":1}', 1701229601); INSERT INTO public.action VALUES (196, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"}],"HeadCommit":{"Sha1":"5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Message":"giay phep kinh doanh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T10:46:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/7eaef6c1be4993406bce848f259583da50e14768...5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b","Len":1}', 1701229601); INSERT INTO public.action VALUES (197, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"}],"HeadCommit":{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b...36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Len":1}', 1701230432); INSERT INTO public.action VALUES (198, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"}],"HeadCommit":{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b...36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Len":1}', 1701230432); INSERT INTO public.action VALUES (199, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"}],"HeadCommit":{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b...36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Len":1}', 1701230433); INSERT INTO public.action VALUES (200, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"}],"HeadCommit":{"Sha1":"36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Message":"add messeger\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:00:17+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5474ead9c47ff0ae0d45db0ac3c35cdd854dae0b...36bd296edbc2fd0b8d44ff94349e01bbf0b16e39","Len":1}', 1701230433); INSERT INTO public.action VALUES (240, 4, 19, 13, 18, 0, false, 'refs/heads/test', false, '', 1701256062); INSERT INTO public.action VALUES (723, 1, 7, 11, 21, 0, false, '', false, '20|thinh', 1702958706); INSERT INTO public.action VALUES (724, 5, 7, 11, 21, 0, false, '', false, '20|thinh', 1702958706); INSERT INTO public.action VALUES (725, 11, 11, 11, 21, 0, false, '', false, '20|thinh', 1702958722); INSERT INTO public.action VALUES (726, 14, 11, 11, 21, 0, false, '', false, '20|thinh', 1702958722); INSERT INTO public.action VALUES (727, 1, 11, 11, 21, 0, false, '', false, '20|thinh', 1702958722); INSERT INTO public.action VALUES (728, 5, 11, 11, 21, 0, false, '', false, '20|thinh', 1702958722); INSERT INTO public.action VALUES (1034, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/203/head', false, '', 1704077438); INSERT INTO public.action VALUES (201, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"}],"HeadCommit":{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36bd296edbc2fd0b8d44ff94349e01bbf0b16e39...e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Len":1}', 1701231074); INSERT INTO public.action VALUES (202, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"}],"HeadCommit":{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36bd296edbc2fd0b8d44ff94349e01bbf0b16e39...e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Len":1}', 1701231074); INSERT INTO public.action VALUES (203, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"}],"HeadCommit":{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36bd296edbc2fd0b8d44ff94349e01bbf0b16e39...e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Len":1}', 1701231074); INSERT INTO public.action VALUES (204, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"}],"HeadCommit":{"Sha1":"e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Message":"check duyet du lieu diachi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T11:11:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/36bd296edbc2fd0b8d44ff94349e01bbf0b16e39...e9a1f3cd92ad00b063de013eb746a3d187d7c5fd","Len":1}', 1701231074); INSERT INTO public.action VALUES (205, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"}],"HeadCommit":{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e9a1f3cd92ad00b063de013eb746a3d187d7c5fd...5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Len":1}', 1701243129); INSERT INTO public.action VALUES (206, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"}],"HeadCommit":{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e9a1f3cd92ad00b063de013eb746a3d187d7c5fd...5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Len":1}', 1701243129); INSERT INTO public.action VALUES (207, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"}],"HeadCommit":{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e9a1f3cd92ad00b063de013eb746a3d187d7c5fd...5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Len":1}', 1701243129); INSERT INTO public.action VALUES (208, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"}],"HeadCommit":{"Sha1":"5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Message":"update orderby hoidap\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T14:31:57+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/e9a1f3cd92ad00b063de013eb746a3d187d7c5fd...5d61d18c61657832bc27a3c7955ad6eeeb74fa1d","Len":1}', 1701243129); INSERT INTO public.action VALUES (741, 11, 11, 11, 21, 0, false, '', false, '21|fix giao dien', 1702979014); INSERT INTO public.action VALUES (742, 14, 11, 11, 21, 0, false, '', false, '21|fix giao dien', 1702979014); INSERT INTO public.action VALUES (743, 1, 11, 11, 21, 0, false, '', false, '21|fix giao dien', 1702979014); INSERT INTO public.action VALUES (744, 5, 11, 11, 21, 0, false, '', false, '21|fix giao dien', 1702979014); INSERT INTO public.action VALUES (1035, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/203/merge', false, '', 1704077438); INSERT INTO public.action VALUES (1036, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/203/merge', false, '', 1704077438); INSERT INTO public.action VALUES (209, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"}],"HeadCommit":{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5d61d18c61657832bc27a3c7955ad6eeeb74fa1d...538716d331bd4d8febd9047f728866193897d25c","Len":1}', 1701246112); INSERT INTO public.action VALUES (210, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"}],"HeadCommit":{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5d61d18c61657832bc27a3c7955ad6eeeb74fa1d...538716d331bd4d8febd9047f728866193897d25c","Len":1}', 1701246112); INSERT INTO public.action VALUES (211, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"}],"HeadCommit":{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5d61d18c61657832bc27a3c7955ad6eeeb74fa1d...538716d331bd4d8febd9047f728866193897d25c","Len":1}', 1701246112); INSERT INTO public.action VALUES (212, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"}],"HeadCommit":{"Sha1":"538716d331bd4d8febd9047f728866193897d25c","Message":"update giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:21:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/5d61d18c61657832bc27a3c7955ad6eeeb74fa1d...538716d331bd4d8febd9047f728866193897d25c","Len":1}', 1701246112); INSERT INTO public.action VALUES (213, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"}],"HeadCommit":{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/538716d331bd4d8febd9047f728866193897d25c...d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Len":1}', 1701246795); INSERT INTO public.action VALUES (214, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"}],"HeadCommit":{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/538716d331bd4d8febd9047f728866193897d25c...d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Len":1}', 1701246795); INSERT INTO public.action VALUES (215, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"}],"HeadCommit":{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/538716d331bd4d8febd9047f728866193897d25c...d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Len":1}', 1701246795); INSERT INTO public.action VALUES (216, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"}],"HeadCommit":{"Sha1":"d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Message":"update hidden change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:33:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/538716d331bd4d8febd9047f728866193897d25c...d7a97478b688ab49b24c5b33d7d657ccfdffdbfe","Len":1}', 1701246795); INSERT INTO public.action VALUES (267, 4, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"014019f5ab2fec0e0dc861a6e442ba162c81499e","Message":"feat: race 30%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-05T11:19:46+07:00"}],"HeadCommit":{"Sha1":"014019f5ab2fec0e0dc861a6e442ba162c81499e","Message":"feat: race 30%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-05T11:19:46+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/8c427fb4de68adec3228e13f736a547a36df3b03...014019f5ab2fec0e0dc861a6e442ba162c81499e","Len":1}', 1701755860); INSERT INTO public.action VALUES (217, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"}],"HeadCommit":{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d7a97478b688ab49b24c5b33d7d657ccfdffdbfe...8acaae955fcd477ae20eeae470a10e019e660d8d","Len":1}', 1701247175); INSERT INTO public.action VALUES (218, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"}],"HeadCommit":{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d7a97478b688ab49b24c5b33d7d657ccfdffdbfe...8acaae955fcd477ae20eeae470a10e019e660d8d","Len":1}', 1701247175); INSERT INTO public.action VALUES (219, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"}],"HeadCommit":{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d7a97478b688ab49b24c5b33d7d657ccfdffdbfe...8acaae955fcd477ae20eeae470a10e019e660d8d","Len":1}', 1701247175); INSERT INTO public.action VALUES (220, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"}],"HeadCommit":{"Sha1":"8acaae955fcd477ae20eeae470a10e019e660d8d","Message":"change img\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:39:22+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/d7a97478b688ab49b24c5b33d7d657ccfdffdbfe...8acaae955fcd477ae20eeae470a10e019e660d8d","Len":1}', 1701247175); INSERT INTO public.action VALUES (221, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"}],"HeadCommit":{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8acaae955fcd477ae20eeae470a10e019e660d8d...4efcd197e1775bb5f4326bf20dae7d6b460910dd","Len":1}', 1701248160); INSERT INTO public.action VALUES (222, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"}],"HeadCommit":{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8acaae955fcd477ae20eeae470a10e019e660d8d...4efcd197e1775bb5f4326bf20dae7d6b460910dd","Len":1}', 1701248160); INSERT INTO public.action VALUES (223, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"}],"HeadCommit":{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8acaae955fcd477ae20eeae470a10e019e660d8d...4efcd197e1775bb5f4326bf20dae7d6b460910dd","Len":1}', 1701248160); INSERT INTO public.action VALUES (224, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"}],"HeadCommit":{"Sha1":"4efcd197e1775bb5f4326bf20dae7d6b460910dd","Message":"update form info\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T15:55:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8acaae955fcd477ae20eeae470a10e019e660d8d...4efcd197e1775bb5f4326bf20dae7d6b460910dd","Len":1}', 1701248160); INSERT INTO public.action VALUES (1382, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/207/head', false, '', 1704371439); INSERT INTO public.action VALUES (1383, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/207/head', false, '', 1704371439); INSERT INTO public.action VALUES (1384, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/207/head', false, '', 1704371439); INSERT INTO public.action VALUES (1385, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/207/merge', false, '', 1704371439); INSERT INTO public.action VALUES (1386, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/207/merge', false, '', 1704371439); INSERT INTO public.action VALUES (1387, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/207/merge', false, '', 1704371439); INSERT INTO public.action VALUES (1517, 11, 7, 11, 21, 0, false, '', false, '41|thinh', 1704464890); INSERT INTO public.action VALUES (225, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"}],"HeadCommit":{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4efcd197e1775bb5f4326bf20dae7d6b460910dd...16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Len":1}', 1701249946); INSERT INTO public.action VALUES (226, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"}],"HeadCommit":{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4efcd197e1775bb5f4326bf20dae7d6b460910dd...16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Len":1}', 1701249946); INSERT INTO public.action VALUES (227, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"}],"HeadCommit":{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4efcd197e1775bb5f4326bf20dae7d6b460910dd...16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Len":1}', 1701249946); INSERT INTO public.action VALUES (228, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"}],"HeadCommit":{"Sha1":"16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Message":"format year ban do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-11-29T16:25:33+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/4efcd197e1775bb5f4326bf20dae7d6b460910dd...16dc820b6d47c950f9cb70842af5b5031b2c9aa1","Len":1}', 1701249946); INSERT INTO public.action VALUES (229, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"}],"HeadCommit":{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},"CompareURL":"binh-dinh-f1/website/compare/9d797bd5faec016986868b1218b1c2490c049c51...efc169ce5f3f170164972cf893b10163cb8b8d1a","Len":1}', 1701256057); INSERT INTO public.action VALUES (230, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"}],"HeadCommit":{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},"CompareURL":"binh-dinh-f1/website/compare/9d797bd5faec016986868b1218b1c2490c049c51...efc169ce5f3f170164972cf893b10163cb8b8d1a","Len":1}', 1701256057); INSERT INTO public.action VALUES (231, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"}],"HeadCommit":{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},"CompareURL":"binh-dinh-f1/website/compare/9d797bd5faec016986868b1218b1c2490c049c51...efc169ce5f3f170164972cf893b10163cb8b8d1a","Len":1}', 1701256057); INSERT INTO public.action VALUES (232, 13, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8c427fb4de68adec3228e13f736a547a36df3b03","Message":"feat: race 50%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-11-29T10:00:14+07:00"}],"HeadCommit":{"Sha1":"8c427fb4de68adec3228e13f736a547a36df3b03","Message":"feat: race 50%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-11-29T10:00:14+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/8455cf857b1b0496fb34707f1bbd7bf2a56d19b2...8c427fb4de68adec3228e13f736a547a36df3b03","Len":1}', 1701256062); INSERT INTO public.action VALUES (233, 1, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8c427fb4de68adec3228e13f736a547a36df3b03","Message":"feat: race 50%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-11-29T10:00:14+07:00"}],"HeadCommit":{"Sha1":"8c427fb4de68adec3228e13f736a547a36df3b03","Message":"feat: race 50%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-11-29T10:00:14+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/8455cf857b1b0496fb34707f1bbd7bf2a56d19b2...8c427fb4de68adec3228e13f736a547a36df3b03","Len":1}', 1701256062); INSERT INTO public.action VALUES (342, 1, 7, 1, 21, 0, false, '', false, '1|thinh', 1702096329); INSERT INTO public.action VALUES (343, 14, 7, 1, 21, 0, false, '', false, '1|thinh', 1702096329); INSERT INTO public.action VALUES (344, 5, 7, 1, 21, 0, false, '', false, '1|thinh', 1702096329); INSERT INTO public.action VALUES (1037, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/203/merge', false, '', 1704077438); INSERT INTO public.action VALUES (1038, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/204/head', false, '', 1704077438); INSERT INTO public.action VALUES (241, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},{"Sha1":"b700083fa188f320535bfe960904fe3a3a268b92","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:28:23+07:00"}],"HeadCommit":{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/16dc820b6d47c950f9cb70842af5b5031b2c9aa1...44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Len":2}', 1701412208); INSERT INTO public.action VALUES (242, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},{"Sha1":"b700083fa188f320535bfe960904fe3a3a268b92","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:28:23+07:00"}],"HeadCommit":{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/16dc820b6d47c950f9cb70842af5b5031b2c9aa1...44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Len":2}', 1701412208); INSERT INTO public.action VALUES (243, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},{"Sha1":"b700083fa188f320535bfe960904fe3a3a268b92","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:28:23+07:00"}],"HeadCommit":{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/16dc820b6d47c950f9cb70842af5b5031b2c9aa1...44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Len":2}', 1701412208); INSERT INTO public.action VALUES (244, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},{"Sha1":"b700083fa188f320535bfe960904fe3a3a268b92","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:28:23+07:00"}],"HeadCommit":{"Sha1":"44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Message":"fix loi tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-01T13:29:03+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/16dc820b6d47c950f9cb70842af5b5031b2c9aa1...44a011b23d9f9eb783476b5f15b5b5bd8bb8198e","Len":2}', 1701412208); INSERT INTO public.action VALUES (245, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"}],"HeadCommit":{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},"CompareURL":"binh-dinh-f1/website/compare/9ba0bb21097d9ae80502d9fb28ed6ce0b552cd77...fefd962a14f222715a4da9ffb70c72ba14bfed2e","Len":4}', 1701432460); INSERT INTO public.action VALUES (257, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},{"Sha1":"611b827f4123c4b3637ec8f8ff77188150dcf705","Message":"fix render filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T13:32:04+07:00"}],"HeadCommit":{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/44a011b23d9f9eb783476b5f15b5b5bd8bb8198e...65964434718cceec2ee64605d0e1cba7402e8857","Len":2}', 1701678173); INSERT INTO public.action VALUES (1039, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/204/head', false, '', 1704077438); INSERT INTO public.action VALUES (1040, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/204/head', false, '', 1704077438); INSERT INTO public.action VALUES (246, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"}],"HeadCommit":{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},"CompareURL":"binh-dinh-f1/website/compare/9ba0bb21097d9ae80502d9fb28ed6ce0b552cd77...fefd962a14f222715a4da9ffb70c72ba14bfed2e","Len":4}', 1701432460); INSERT INTO public.action VALUES (247, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"}],"HeadCommit":{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},"CompareURL":"binh-dinh-f1/website/compare/9ba0bb21097d9ae80502d9fb28ed6ce0b552cd77...fefd962a14f222715a4da9ffb70c72ba14bfed2e","Len":4}', 1701432460); INSERT INTO public.action VALUES (248, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"}],"HeadCommit":{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},"CompareURL":"binh-dinh-f1/website/compare/efc169ce5f3f170164972cf893b10163cb8b8d1a...f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Len":1}', 1701432461); INSERT INTO public.action VALUES (249, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"}],"HeadCommit":{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},"CompareURL":"binh-dinh-f1/website/compare/efc169ce5f3f170164972cf893b10163cb8b8d1a...f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Len":1}', 1701432461); INSERT INTO public.action VALUES (250, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"}],"HeadCommit":{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},"CompareURL":"binh-dinh-f1/website/compare/efc169ce5f3f170164972cf893b10163cb8b8d1a...f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Len":1}', 1701432461); INSERT INTO public.action VALUES (251, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!188","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:48:51Z"},{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"}],"HeadCommit":{"Sha1":"e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!188","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:48:51Z"},"CompareURL":"binh-dinh-f1/website/compare/705afc6696f34de37be2b0f581d604c276fc4035...e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Len":5}', 1701432462); INSERT INTO public.action VALUES (1041, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/204/merge', false, '', 1704077438); INSERT INTO public.action VALUES (1042, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/204/merge', false, '', 1704077438); INSERT INTO public.action VALUES (1043, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/204/merge', false, '', 1704077438); INSERT INTO public.action VALUES (252, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!188","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:48:51Z"},{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"}],"HeadCommit":{"Sha1":"e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!188","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:48:51Z"},"CompareURL":"binh-dinh-f1/website/compare/705afc6696f34de37be2b0f581d604c276fc4035...e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Len":5}', 1701432462); INSERT INTO public.action VALUES (253, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!188","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:48:51Z"},{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"}],"HeadCommit":{"Sha1":"e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!188","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:48:51Z"},"CompareURL":"binh-dinh-f1/website/compare/705afc6696f34de37be2b0f581d604c276fc4035...e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90","Len":5}', 1701432462); INSERT INTO public.action VALUES (254, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},{"Sha1":"611b827f4123c4b3637ec8f8ff77188150dcf705","Message":"fix render filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T13:32:04+07:00"}],"HeadCommit":{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/44a011b23d9f9eb783476b5f15b5b5bd8bb8198e...65964434718cceec2ee64605d0e1cba7402e8857","Len":2}', 1701678173); INSERT INTO public.action VALUES (255, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},{"Sha1":"611b827f4123c4b3637ec8f8ff77188150dcf705","Message":"fix render filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T13:32:04+07:00"}],"HeadCommit":{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/44a011b23d9f9eb783476b5f15b5b5bd8bb8198e...65964434718cceec2ee64605d0e1cba7402e8857","Len":2}', 1701678173); INSERT INTO public.action VALUES (256, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},{"Sha1":"611b827f4123c4b3637ec8f8ff77188150dcf705","Message":"fix render filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T13:32:04+07:00"}],"HeadCommit":{"Sha1":"65964434718cceec2ee64605d0e1cba7402e8857","Message":"fix input search co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-04T15:22:36+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/44a011b23d9f9eb783476b5f15b5b5bd8bb8198e...65964434718cceec2ee64605d0e1cba7402e8857","Len":2}', 1701678173); INSERT INTO public.action VALUES (1044, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/199/head', false, '', 1704106839); INSERT INTO public.action VALUES (1045, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/199/head', false, '', 1704106839); INSERT INTO public.action VALUES (1211, 1, 7, 11, 21, 0, false, '', false, '32|thinh', 1704270128); INSERT INTO public.action VALUES (258, 13, 18, 13, 17, 0, false, 'refs/heads/hoang-dev', false, '{"Commits":[{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"},{"Sha1":"9ba0bb21097d9ae80502d9fb28ed6ce0b552cd77","Message":"Merge branch ''dong-dev'' into ''develop''\n\ndevide riders\n\nSee merge request binh-dinh-f1/binhdinhf1-website!185","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-24T09:41:41Z"}],"HeadCommit":{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},"CompareURL":"binh-dinh-f1/website/compare/7a91090888bd26b04141cfbccfc1a5dc1680a8b0...fefd962a14f222715a4da9ffb70c72ba14bfed2e","Len":12}', 1701697059); INSERT INTO public.action VALUES (259, 1, 18, 13, 17, 0, false, 'refs/heads/hoang-dev', false, '{"Commits":[{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"},{"Sha1":"9ba0bb21097d9ae80502d9fb28ed6ce0b552cd77","Message":"Merge branch ''dong-dev'' into ''develop''\n\ndevide riders\n\nSee merge request binh-dinh-f1/binhdinhf1-website!185","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-24T09:41:41Z"}],"HeadCommit":{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},"CompareURL":"binh-dinh-f1/website/compare/7a91090888bd26b04141cfbccfc1a5dc1680a8b0...fefd962a14f222715a4da9ffb70c72ba14bfed2e","Len":12}', 1701697059); INSERT INTO public.action VALUES (260, 4, 18, 13, 17, 0, false, 'refs/heads/hoang-dev', false, '{"Commits":[{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},{"Sha1":"f3fbbaae6e9825e29a22254adeba2626a9a3cd3a","Message":"feat result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T16:42:24+07:00"},{"Sha1":"efc169ce5f3f170164972cf893b10163cb8b8d1a","Message":"feat api drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-29T16:59:29+07:00"},{"Sha1":"9d797bd5faec016986868b1218b1c2490c049c51","Message":"feat event detail + team f1h2o\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-28T16:32:27+07:00"},{"Sha1":"9ba0bb21097d9ae80502d9fb28ed6ce0b552cd77","Message":"Merge branch ''dong-dev'' into ''develop''\n\ndevide riders\n\nSee merge request binh-dinh-f1/binhdinhf1-website!185","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-11-24T09:41:41Z"}],"HeadCommit":{"Sha1":"fefd962a14f222715a4da9ffb70c72ba14bfed2e","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!187","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-01T09:44:06Z"},"CompareURL":"binh-dinh-f1/website/compare/7a91090888bd26b04141cfbccfc1a5dc1680a8b0...fefd962a14f222715a4da9ffb70c72ba14bfed2e","Len":12}', 1701697059); INSERT INTO public.action VALUES (261, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"}],"HeadCommit":{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/65964434718cceec2ee64605d0e1cba7402e8857...a711a00e9e20635f5d9ec9e569bf566d6a844f13","Len":1}', 1701749186); INSERT INTO public.action VALUES (262, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"}],"HeadCommit":{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/65964434718cceec2ee64605d0e1cba7402e8857...a711a00e9e20635f5d9ec9e569bf566d6a844f13","Len":1}', 1701749186); INSERT INTO public.action VALUES (263, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"}],"HeadCommit":{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/65964434718cceec2ee64605d0e1cba7402e8857...a711a00e9e20635f5d9ec9e569bf566d6a844f13","Len":1}', 1701749186); INSERT INTO public.action VALUES (264, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"}],"HeadCommit":{"Sha1":"a711a00e9e20635f5d9ec9e569bf566d6a844f13","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-05T11:06:14+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/65964434718cceec2ee64605d0e1cba7402e8857...a711a00e9e20635f5d9ec9e569bf566d6a844f13","Len":1}', 1701749186); INSERT INTO public.action VALUES (265, 13, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"014019f5ab2fec0e0dc861a6e442ba162c81499e","Message":"feat: race 30%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-05T11:19:46+07:00"}],"HeadCommit":{"Sha1":"014019f5ab2fec0e0dc861a6e442ba162c81499e","Message":"feat: race 30%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-05T11:19:46+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/8c427fb4de68adec3228e13f736a547a36df3b03...014019f5ab2fec0e0dc861a6e442ba162c81499e","Len":1}', 1701755860); INSERT INTO public.action VALUES (266, 1, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"014019f5ab2fec0e0dc861a6e442ba162c81499e","Message":"feat: race 30%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-05T11:19:46+07:00"}],"HeadCommit":{"Sha1":"014019f5ab2fec0e0dc861a6e442ba162c81499e","Message":"feat: race 30%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-05T11:19:46+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/8c427fb4de68adec3228e13f736a547a36df3b03...014019f5ab2fec0e0dc861a6e442ba162c81499e","Len":1}', 1701755860); INSERT INTO public.action VALUES (1046, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/199/head', false, '', 1704106839); INSERT INTO public.action VALUES (1047, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/199/merge', false, '', 1704106839); INSERT INTO public.action VALUES (268, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},"CompareURL":"binh-dinh-f1/website/compare/fefd962a14f222715a4da9ffb70c72ba14bfed2e...5fe890433f51e82dfac0a39170aa373296b17767","Len":3}', 1701873458); INSERT INTO public.action VALUES (269, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},"CompareURL":"binh-dinh-f1/website/compare/fefd962a14f222715a4da9ffb70c72ba14bfed2e...5fe890433f51e82dfac0a39170aa373296b17767","Len":3}', 1701873458); INSERT INTO public.action VALUES (270, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},"CompareURL":"binh-dinh-f1/website/compare/fefd962a14f222715a4da9ffb70c72ba14bfed2e...5fe890433f51e82dfac0a39170aa373296b17767","Len":3}', 1701873458); INSERT INTO public.action VALUES (271, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},"CompareURL":"binh-dinh-f1/website/compare/f3fbbaae6e9825e29a22254adeba2626a9a3cd3a...b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Len":2}', 1701873459); INSERT INTO public.action VALUES (272, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},"CompareURL":"binh-dinh-f1/website/compare/f3fbbaae6e9825e29a22254adeba2626a9a3cd3a...b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Len":2}', 1701873459); INSERT INTO public.action VALUES (273, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},"CompareURL":"binh-dinh-f1/website/compare/f3fbbaae6e9825e29a22254adeba2626a9a3cd3a...b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Len":2}', 1701873459); INSERT INTO public.action VALUES (773, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"},"CompareURL":"binh-dinh-f1/website/compare/50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f...cc2ba7984c996de04607bf68b220fba28c67ec04","Len":1}', 1703166312); INSERT INTO public.action VALUES (274, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2a42e399dc69de6776a33573fec1d45a612a8ee2","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!190","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:24:09Z"},{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"2a42e399dc69de6776a33573fec1d45a612a8ee2","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!190","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:24:09Z"},"CompareURL":"binh-dinh-f1/website/compare/e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90...2a42e399dc69de6776a33573fec1d45a612a8ee2","Len":4}', 1701873461); INSERT INTO public.action VALUES (275, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2a42e399dc69de6776a33573fec1d45a612a8ee2","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!190","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:24:09Z"},{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"2a42e399dc69de6776a33573fec1d45a612a8ee2","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!190","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:24:09Z"},"CompareURL":"binh-dinh-f1/website/compare/e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90...2a42e399dc69de6776a33573fec1d45a612a8ee2","Len":4}', 1701873461); INSERT INTO public.action VALUES (276, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2a42e399dc69de6776a33573fec1d45a612a8ee2","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!190","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:24:09Z"},{"Sha1":"5fe890433f51e82dfac0a39170aa373296b17767","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!189","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:23:40Z"},{"Sha1":"b7f6abf678ce952dbd452fb3d4a6c69c28f132a9","Message":"result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T16:22:17+07:00"},{"Sha1":"9925a569938dae73448a1cb503b21b1518078a93","Message":"result \u0026 slide\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T14:29:34+07:00"}],"HeadCommit":{"Sha1":"2a42e399dc69de6776a33573fec1d45a612a8ee2","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!190","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-06T09:24:09Z"},"CompareURL":"binh-dinh-f1/website/compare/e3226a3ac11b9d7bcaa9cfd98ce1705e6737cd90...2a42e399dc69de6776a33573fec1d45a612a8ee2","Len":4}', 1701873461); INSERT INTO public.action VALUES (277, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"}],"HeadCommit":{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/a711a00e9e20635f5d9ec9e569bf566d6a844f13...cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Len":1}', 1701918662); INSERT INTO public.action VALUES (278, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"}],"HeadCommit":{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/a711a00e9e20635f5d9ec9e569bf566d6a844f13...cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Len":1}', 1701918662); INSERT INTO public.action VALUES (279, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"}],"HeadCommit":{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/a711a00e9e20635f5d9ec9e569bf566d6a844f13...cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Len":1}', 1701918662); INSERT INTO public.action VALUES (280, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"}],"HeadCommit":{"Sha1":"cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Message":"update cap nhat thong tin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:10:41+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/a711a00e9e20635f5d9ec9e569bf566d6a844f13...cda7791493467cd4cb676d6a2dd4b9580e2c7f2c","Len":1}', 1701918662); INSERT INTO public.action VALUES (281, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"}],"HeadCommit":{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/cda7791493467cd4cb676d6a2dd4b9580e2c7f2c...c217654d5b30d2005109204a95c6a60439957bd1","Len":1}', 1701918801); INSERT INTO public.action VALUES (282, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"}],"HeadCommit":{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/cda7791493467cd4cb676d6a2dd4b9580e2c7f2c...c217654d5b30d2005109204a95c6a60439957bd1","Len":1}', 1701918801); INSERT INTO public.action VALUES (283, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"}],"HeadCommit":{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/cda7791493467cd4cb676d6a2dd4b9580e2c7f2c...c217654d5b30d2005109204a95c6a60439957bd1","Len":1}', 1701918801); INSERT INTO public.action VALUES (284, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"}],"HeadCommit":{"Sha1":"c217654d5b30d2005109204a95c6a60439957bd1","Message":"update trang chu mac dinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T10:13:04+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/cda7791493467cd4cb676d6a2dd4b9580e2c7f2c...c217654d5b30d2005109204a95c6a60439957bd1","Len":1}', 1701918801); INSERT INTO public.action VALUES (285, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"}],"HeadCommit":{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/c217654d5b30d2005109204a95c6a60439957bd1...8e2a7e7c4d64b6385ada897dd2992587328c9f87","Len":1}', 1701930431); INSERT INTO public.action VALUES (286, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"}],"HeadCommit":{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/c217654d5b30d2005109204a95c6a60439957bd1...8e2a7e7c4d64b6385ada897dd2992587328c9f87","Len":1}', 1701930431); INSERT INTO public.action VALUES (287, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"}],"HeadCommit":{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/c217654d5b30d2005109204a95c6a60439957bd1...8e2a7e7c4d64b6385ada897dd2992587328c9f87","Len":1}', 1701930431); INSERT INTO public.action VALUES (994, 6, 5, 1, 25, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d6c2e64af79bb97a5b57cf8e173d2f2d29f3019b","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-29T14:27:31+07:00"}],"HeadCommit":{"Sha1":"d6c2e64af79bb97a5b57cf8e173d2f2d29f3019b","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-29T14:27:31+07:00"},"CompareURL":"","Len":1}', 1703835148); INSERT INTO public.action VALUES (288, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"}],"HeadCommit":{"Sha1":"8e2a7e7c4d64b6385ada897dd2992587328c9f87","Message":"update title so hieu pd mau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:27:00+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/c217654d5b30d2005109204a95c6a60439957bd1...8e2a7e7c4d64b6385ada897dd2992587328c9f87","Len":1}', 1701930431); INSERT INTO public.action VALUES (289, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"}],"HeadCommit":{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8e2a7e7c4d64b6385ada897dd2992587328c9f87...3657d91a96665741b6c51e61a79a18e54b38d4be","Len":1}', 1701936724); INSERT INTO public.action VALUES (290, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"}],"HeadCommit":{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8e2a7e7c4d64b6385ada897dd2992587328c9f87...3657d91a96665741b6c51e61a79a18e54b38d4be","Len":1}', 1701936724); INSERT INTO public.action VALUES (291, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"}],"HeadCommit":{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8e2a7e7c4d64b6385ada897dd2992587328c9f87...3657d91a96665741b6c51e61a79a18e54b38d4be","Len":1}', 1701936724); INSERT INTO public.action VALUES (292, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"}],"HeadCommit":{"Sha1":"3657d91a96665741b6c51e61a79a18e54b38d4be","Message":"add filter tong quan\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:11:50+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/8e2a7e7c4d64b6385ada897dd2992587328c9f87...3657d91a96665741b6c51e61a79a18e54b38d4be","Len":1}', 1701936724); INSERT INTO public.action VALUES (293, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"}],"HeadCommit":{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3657d91a96665741b6c51e61a79a18e54b38d4be...73801603492a19d3732296558a135c90295b4e23","Len":1}', 1701938938); INSERT INTO public.action VALUES (294, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"}],"HeadCommit":{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3657d91a96665741b6c51e61a79a18e54b38d4be...73801603492a19d3732296558a135c90295b4e23","Len":1}', 1701938938); INSERT INTO public.action VALUES (295, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"}],"HeadCommit":{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3657d91a96665741b6c51e61a79a18e54b38d4be...73801603492a19d3732296558a135c90295b4e23","Len":1}', 1701938938); INSERT INTO public.action VALUES (806, 13, 18, 13, 20, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Message":"thanh lý\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-25T10:02:31+07:00"}],"HeadCommit":{"Sha1":"28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Message":"thanh lý\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-25T10:02:31+07:00"},"CompareURL":"binh-dinh-f1/webapi/compare/ccfdd34f3f3d17beddd582294bd246c0a822c5d8...28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Len":1}', 1703490038); INSERT INTO public.action VALUES (296, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"}],"HeadCommit":{"Sha1":"73801603492a19d3732296558a135c90295b4e23","Message":"add icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T15:48:45+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/3657d91a96665741b6c51e61a79a18e54b38d4be...73801603492a19d3732296558a135c90295b4e23","Len":1}', 1701938938); INSERT INTO public.action VALUES (297, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"}],"HeadCommit":{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/73801603492a19d3732296558a135c90295b4e23...132b1688e06321da4a18a1fff334a67778165cf0","Len":1}', 1701939873); INSERT INTO public.action VALUES (298, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"}],"HeadCommit":{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/73801603492a19d3732296558a135c90295b4e23...132b1688e06321da4a18a1fff334a67778165cf0","Len":1}', 1701939873); INSERT INTO public.action VALUES (299, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"}],"HeadCommit":{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/73801603492a19d3732296558a135c90295b4e23...132b1688e06321da4a18a1fff334a67778165cf0","Len":1}', 1701939874); INSERT INTO public.action VALUES (300, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"}],"HeadCommit":{"Sha1":"132b1688e06321da4a18a1fff334a67778165cf0","Message":"update icon download\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:04:24+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/73801603492a19d3732296558a135c90295b4e23...132b1688e06321da4a18a1fff334a67778165cf0","Len":1}', 1701939874); INSERT INTO public.action VALUES (301, 14, 18, 14, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},{"Sha1":"cb7989a1617457d3e1e2a32c1a381da2049f3c4b","Message":"add thong tin ho so nhu cau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:08:51+07:00"},{"Sha1":"31edd20452e53b75d4f9192248bb4938b6e8070d","Message":"Merge branch ''thinh'' into ''dev''\n\nadd drop cho nam ho so\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!269","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T06:52:51Z"},{"Sha1":"3c4e14f7251e837c538767428ac5611a20371682","Message":"add drop cho nam ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:52:00+07:00"},{"Sha1":"2ee1b375759d0d76919d65c219b7e6fe3a9bc6f9","Message":"Merge branch ''thinh'' into ''dev''\n\nupdate them nam\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!268","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T04:35:52Z"}],"HeadCommit":{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8c594d72ad6bc552c125d09ad10cdeae937a2357...bb4b7cde991a6d61c41c9502f88912f6184c1194","Len":6}', 1701950859); INSERT INTO public.action VALUES (302, 1, 18, 14, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},{"Sha1":"cb7989a1617457d3e1e2a32c1a381da2049f3c4b","Message":"add thong tin ho so nhu cau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:08:51+07:00"},{"Sha1":"31edd20452e53b75d4f9192248bb4938b6e8070d","Message":"Merge branch ''thinh'' into ''dev''\n\nadd drop cho nam ho so\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!269","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T06:52:51Z"},{"Sha1":"3c4e14f7251e837c538767428ac5611a20371682","Message":"add drop cho nam ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:52:00+07:00"},{"Sha1":"2ee1b375759d0d76919d65c219b7e6fe3a9bc6f9","Message":"Merge branch ''thinh'' into ''dev''\n\nupdate them nam\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!268","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T04:35:52Z"}],"HeadCommit":{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8c594d72ad6bc552c125d09ad10cdeae937a2357...bb4b7cde991a6d61c41c9502f88912f6184c1194","Len":6}', 1701950859); INSERT INTO public.action VALUES (303, 5, 18, 14, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},{"Sha1":"cb7989a1617457d3e1e2a32c1a381da2049f3c4b","Message":"add thong tin ho so nhu cau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:08:51+07:00"},{"Sha1":"31edd20452e53b75d4f9192248bb4938b6e8070d","Message":"Merge branch ''thinh'' into ''dev''\n\nadd drop cho nam ho so\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!269","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T06:52:51Z"},{"Sha1":"3c4e14f7251e837c538767428ac5611a20371682","Message":"add drop cho nam ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:52:00+07:00"},{"Sha1":"2ee1b375759d0d76919d65c219b7e6fe3a9bc6f9","Message":"Merge branch ''thinh'' into ''dev''\n\nupdate them nam\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!268","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T04:35:52Z"}],"HeadCommit":{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8c594d72ad6bc552c125d09ad10cdeae937a2357...bb4b7cde991a6d61c41c9502f88912f6184c1194","Len":6}', 1701950859); INSERT INTO public.action VALUES (304, 14, 18, 14, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},{"Sha1":"ae51cc0f551ce9657addab6a0faf8c14000bff1e","Message":"update render detail ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:43:28+07:00"},{"Sha1":"5e37279435f45e05686744b8cb4cf7e7db8a6928","Message":"check rang buoc chon nguoi lao dong\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:39:24+07:00"},{"Sha1":"cb7989a1617457d3e1e2a32c1a381da2049f3c4b","Message":"add thong tin ho so nhu cau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:08:51+07:00"},{"Sha1":"3c4e14f7251e837c538767428ac5611a20371682","Message":"add drop cho nam ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:52:00+07:00"}],"HeadCommit":{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9468167ad7d6ee99725ebff8e396c79b536da59c...e8d99b2c201071b5be52943550dd5d25916c08e0","Len":6}', 1701950861); INSERT INTO public.action VALUES (305, 1, 18, 14, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},{"Sha1":"ae51cc0f551ce9657addab6a0faf8c14000bff1e","Message":"update render detail ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:43:28+07:00"},{"Sha1":"5e37279435f45e05686744b8cb4cf7e7db8a6928","Message":"check rang buoc chon nguoi lao dong\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:39:24+07:00"},{"Sha1":"cb7989a1617457d3e1e2a32c1a381da2049f3c4b","Message":"add thong tin ho so nhu cau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:08:51+07:00"},{"Sha1":"3c4e14f7251e837c538767428ac5611a20371682","Message":"add drop cho nam ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:52:00+07:00"}],"HeadCommit":{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9468167ad7d6ee99725ebff8e396c79b536da59c...e8d99b2c201071b5be52943550dd5d25916c08e0","Len":6}', 1701950861); INSERT INTO public.action VALUES (306, 5, 18, 14, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},{"Sha1":"ae51cc0f551ce9657addab6a0faf8c14000bff1e","Message":"update render detail ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:43:28+07:00"},{"Sha1":"5e37279435f45e05686744b8cb4cf7e7db8a6928","Message":"check rang buoc chon nguoi lao dong\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:39:24+07:00"},{"Sha1":"cb7989a1617457d3e1e2a32c1a381da2049f3c4b","Message":"add thong tin ho so nhu cau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:08:51+07:00"},{"Sha1":"3c4e14f7251e837c538767428ac5611a20371682","Message":"add drop cho nam ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T13:52:00+07:00"}],"HeadCommit":{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9468167ad7d6ee99725ebff8e396c79b536da59c...e8d99b2c201071b5be52943550dd5d25916c08e0","Len":6}', 1701950861); INSERT INTO public.action VALUES (307, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Message":"BaoCaoNhaGiaoNhieuCoSo\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-07T15:47:54+07:00"},{"Sha1":"662662d5001c1bf3f354dbbde554d94434866e04","Message":"DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:57:26+07:00"},{"Sha1":"af4d70f03b700a6d3572d7252ed5796ee01d6dbf","Message":"DanhSachTrungCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:47:12+07:00"},{"Sha1":"2b0f07552dee7839f546a52aef5cc98ed6d4b1b0","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:20:23+07:00"},{"Sha1":"468094890dfc7b9c9ebf45fea83c2db5d566e5b4","Message":"năm hồ sơ nhu cầu lấy theo FE\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T13:53:31+07:00"}],"HeadCommit":{"Sha1":"c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Message":"BaoCaoNhaGiaoNhieuCoSo\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-07T15:47:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/5c51a21f5890285937f6cd6ed1d945216f7d0298...c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Len":6}', 1701952058); INSERT INTO public.action VALUES (308, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Message":"BaoCaoNhaGiaoNhieuCoSo\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-07T15:47:54+07:00"},{"Sha1":"662662d5001c1bf3f354dbbde554d94434866e04","Message":"DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:57:26+07:00"},{"Sha1":"af4d70f03b700a6d3572d7252ed5796ee01d6dbf","Message":"DanhSachTrungCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:47:12+07:00"},{"Sha1":"2b0f07552dee7839f546a52aef5cc98ed6d4b1b0","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:20:23+07:00"},{"Sha1":"468094890dfc7b9c9ebf45fea83c2db5d566e5b4","Message":"năm hồ sơ nhu cầu lấy theo FE\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T13:53:31+07:00"}],"HeadCommit":{"Sha1":"c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Message":"BaoCaoNhaGiaoNhieuCoSo\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-07T15:47:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/5c51a21f5890285937f6cd6ed1d945216f7d0298...c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Len":6}', 1701952058); INSERT INTO public.action VALUES (309, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Message":"BaoCaoNhaGiaoNhieuCoSo\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-07T15:47:54+07:00"},{"Sha1":"662662d5001c1bf3f354dbbde554d94434866e04","Message":"DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:57:26+07:00"},{"Sha1":"af4d70f03b700a6d3572d7252ed5796ee01d6dbf","Message":"DanhSachTrungCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:47:12+07:00"},{"Sha1":"2b0f07552dee7839f546a52aef5cc98ed6d4b1b0","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T14:20:23+07:00"},{"Sha1":"468094890dfc7b9c9ebf45fea83c2db5d566e5b4","Message":"năm hồ sơ nhu cầu lấy theo FE\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-07T13:53:31+07:00"}],"HeadCommit":{"Sha1":"c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Message":"BaoCaoNhaGiaoNhieuCoSo\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-07T15:47:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/5c51a21f5890285937f6cd6ed1d945216f7d0298...c5f8da2bb3cd794e66b180dfa15b19ea56b1a430","Len":6}', 1701952058); INSERT INTO public.action VALUES (1048, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/199/merge', false, '', 1704106839); INSERT INTO public.action VALUES (1049, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/199/merge', false, '', 1704106839); INSERT INTO public.action VALUES (1050, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/200/head', false, '', 1704106839); INSERT INTO public.action VALUES (310, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},"CompareURL":"binh-dinh-f1/website/compare/5fe890433f51e82dfac0a39170aa373296b17767...3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Len":3}', 1701961659); INSERT INTO public.action VALUES (311, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},"CompareURL":"binh-dinh-f1/website/compare/5fe890433f51e82dfac0a39170aa373296b17767...3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Len":3}', 1701961659); INSERT INTO public.action VALUES (312, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},"CompareURL":"binh-dinh-f1/website/compare/5fe890433f51e82dfac0a39170aa373296b17767...3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Len":3}', 1701961659); INSERT INTO public.action VALUES (313, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},"CompareURL":"binh-dinh-f1/website/compare/b7f6abf678ce952dbd452fb3d4a6c69c28f132a9...6bd007213e90947266e4fe47035c9617e45b26ca","Len":2}', 1701961660); INSERT INTO public.action VALUES (314, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},"CompareURL":"binh-dinh-f1/website/compare/b7f6abf678ce952dbd452fb3d4a6c69c28f132a9...6bd007213e90947266e4fe47035c9617e45b26ca","Len":2}', 1701961660); INSERT INTO public.action VALUES (315, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},"CompareURL":"binh-dinh-f1/website/compare/b7f6abf678ce952dbd452fb3d4a6c69c28f132a9...6bd007213e90947266e4fe47035c9617e45b26ca","Len":2}', 1701961660); INSERT INTO public.action VALUES (995, 5, 5, 1, 25, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d6c2e64af79bb97a5b57cf8e173d2f2d29f3019b","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-29T14:27:31+07:00"}],"HeadCommit":{"Sha1":"d6c2e64af79bb97a5b57cf8e173d2f2d29f3019b","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-29T14:27:31+07:00"},"CompareURL":"","Len":1}', 1703835148); INSERT INTO public.action VALUES (316, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c37db185a228c9beea92be14329ba448b218579e","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!192","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:49:09Z"},{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"c37db185a228c9beea92be14329ba448b218579e","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!192","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:49:09Z"},"CompareURL":"binh-dinh-f1/website/compare/2a42e399dc69de6776a33573fec1d45a612a8ee2...c37db185a228c9beea92be14329ba448b218579e","Len":4}', 1701961661); INSERT INTO public.action VALUES (317, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c37db185a228c9beea92be14329ba448b218579e","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!192","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:49:09Z"},{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"c37db185a228c9beea92be14329ba448b218579e","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!192","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:49:09Z"},"CompareURL":"binh-dinh-f1/website/compare/2a42e399dc69de6776a33573fec1d45a612a8ee2...c37db185a228c9beea92be14329ba448b218579e","Len":4}', 1701961661); INSERT INTO public.action VALUES (318, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c37db185a228c9beea92be14329ba448b218579e","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!192","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:49:09Z"},{"Sha1":"3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50","Message":"Merge branch ''dong-dev'' into ''develop''\n\nDong dev\n\nSee merge request binh-dinh-f1/binhdinhf1-website!191","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:48:51Z"},{"Sha1":"6bd007213e90947266e4fe47035c9617e45b26ca","Message":"refactor menu\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:47:00+07:00"},{"Sha1":"c06e6bc6566f5e6faae0fa655dd006ec22ff5e96","Message":"api driver \u0026 result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T15:43:03+07:00"}],"HeadCommit":{"Sha1":"c37db185a228c9beea92be14329ba448b218579e","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!192","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-07T08:49:09Z"},"CompareURL":"binh-dinh-f1/website/compare/2a42e399dc69de6776a33573fec1d45a612a8ee2...c37db185a228c9beea92be14329ba448b218579e","Len":4}', 1701961661); INSERT INTO public.action VALUES (319, 11, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"}],"HeadCommit":{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/132b1688e06321da4a18a1fff334a67778165cf0...7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Len":1}', 1702008061); INSERT INTO public.action VALUES (320, 10, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"}],"HeadCommit":{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/132b1688e06321da4a18a1fff334a67778165cf0...7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Len":1}', 1702008061); INSERT INTO public.action VALUES (321, 1, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"}],"HeadCommit":{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/132b1688e06321da4a18a1fff334a67778165cf0...7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Len":1}', 1702008061); INSERT INTO public.action VALUES (322, 4, 5, 11, 12, 0, false, 'refs/heads/main', true, '{"Commits":[{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"}],"HeadCommit":{"Sha1":"7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Message":"update cap lai mat khau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T11:00:47+07:00"},"CompareURL":"phuong-tien-do/frontend/compare/132b1688e06321da4a18a1fff334a67778165cf0...7b700cce960bebc6fad9e06adb1d76eba7ebc29f","Len":1}', 1702008061); INSERT INTO public.action VALUES (323, 14, 18, 14, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},{"Sha1":"ae51cc0f551ce9657addab6a0faf8c14000bff1e","Message":"update render detail ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:43:28+07:00"},{"Sha1":"5e37279435f45e05686744b8cb4cf7e7db8a6928","Message":"check rang buoc chon nguoi lao dong\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:39:24+07:00"}],"HeadCommit":{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bb4b7cde991a6d61c41c9502f88912f6184c1194...8ef4febd9e8c6827566c2608358e733f70f816ef","Len":4}', 1702009657); INSERT INTO public.action VALUES (324, 1, 18, 14, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},{"Sha1":"ae51cc0f551ce9657addab6a0faf8c14000bff1e","Message":"update render detail ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:43:28+07:00"},{"Sha1":"5e37279435f45e05686744b8cb4cf7e7db8a6928","Message":"check rang buoc chon nguoi lao dong\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:39:24+07:00"}],"HeadCommit":{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bb4b7cde991a6d61c41c9502f88912f6184c1194...8ef4febd9e8c6827566c2608358e733f70f816ef","Len":4}', 1702009657); INSERT INTO public.action VALUES (325, 5, 18, 14, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},{"Sha1":"e8d99b2c201071b5be52943550dd5d25916c08e0","Message":"update nguoi lao dong search trung cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T16:37:33+07:00"},{"Sha1":"ae51cc0f551ce9657addab6a0faf8c14000bff1e","Message":"update render detail ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:43:28+07:00"},{"Sha1":"5e37279435f45e05686744b8cb4cf7e7db8a6928","Message":"check rang buoc chon nguoi lao dong\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T14:39:24+07:00"}],"HeadCommit":{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bb4b7cde991a6d61c41c9502f88912f6184c1194...8ef4febd9e8c6827566c2608358e733f70f816ef","Len":4}', 1702009657); INSERT INTO public.action VALUES (345, 1, 5, 1, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},{"Sha1":"31edd20452e53b75d4f9192248bb4938b6e8070d","Message":"Merge branch ''thinh'' into ''dev''\n\nadd drop cho nam ho so\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!269","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T06:52:51Z"},{"Sha1":"2ee1b375759d0d76919d65c219b7e6fe3a9bc6f9","Message":"Merge branch ''thinh'' into ''dev''\n\nupdate them nam\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!268","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T04:35:52Z"}],"HeadCommit":{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/48652d228a3a50d1c85e12393961821cc62567ad...20a08df4682d10433b053e6660a2ef3e31127449","Len":8}', 1702096899); INSERT INTO public.action VALUES (1006, 11, 7, 11, 21, 0, false, '', false, '28|thinh', 1703842272); INSERT INTO public.action VALUES (1007, 14, 7, 11, 21, 0, false, '', false, '28|thinh', 1703842272); INSERT INTO public.action VALUES (326, 13, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"62e440c85f8e271d4d19f042050cae22e70eb3b9","Message":"fix: auto fill into link (racer)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:53:58+07:00"},{"Sha1":"6676a8e363c579f54c87876d5afe54e883481ae2","Message":"fix: check rule yearDebut (team)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:35:42+07:00"},{"Sha1":"e67a83634f890cde00a6ae19c49c01a011f4594e","Message":"fix: remove some require field\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:16:13+07:00"}],"HeadCommit":{"Sha1":"62e440c85f8e271d4d19f042050cae22e70eb3b9","Message":"fix: auto fill into link (racer)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:53:58+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/014019f5ab2fec0e0dc861a6e442ba162c81499e...62e440c85f8e271d4d19f042050cae22e70eb3b9","Len":3}', 1702020461); INSERT INTO public.action VALUES (327, 1, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"62e440c85f8e271d4d19f042050cae22e70eb3b9","Message":"fix: auto fill into link (racer)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:53:58+07:00"},{"Sha1":"6676a8e363c579f54c87876d5afe54e883481ae2","Message":"fix: check rule yearDebut (team)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:35:42+07:00"},{"Sha1":"e67a83634f890cde00a6ae19c49c01a011f4594e","Message":"fix: remove some require field\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:16:13+07:00"}],"HeadCommit":{"Sha1":"62e440c85f8e271d4d19f042050cae22e70eb3b9","Message":"fix: auto fill into link (racer)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:53:58+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/014019f5ab2fec0e0dc861a6e442ba162c81499e...62e440c85f8e271d4d19f042050cae22e70eb3b9","Len":3}', 1702020461); INSERT INTO public.action VALUES (328, 4, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"62e440c85f8e271d4d19f042050cae22e70eb3b9","Message":"fix: auto fill into link (racer)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:53:58+07:00"},{"Sha1":"6676a8e363c579f54c87876d5afe54e883481ae2","Message":"fix: check rule yearDebut (team)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:35:42+07:00"},{"Sha1":"e67a83634f890cde00a6ae19c49c01a011f4594e","Message":"fix: remove some require field\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:16:13+07:00"}],"HeadCommit":{"Sha1":"62e440c85f8e271d4d19f042050cae22e70eb3b9","Message":"fix: auto fill into link (racer)\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-08T09:53:58+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/014019f5ab2fec0e0dc861a6e442ba162c81499e...62e440c85f8e271d4d19f042050cae22e70eb3b9","Len":3}', 1702020461); INSERT INTO public.action VALUES (329, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},{"Sha1":"f7703196ec86890a5d9e2921cd7c807078eec3d7","Message":"coincide cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:39:33+07:00"}],"HeadCommit":{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8d99b2c201071b5be52943550dd5d25916c08e0...c0319628506edaa08cc62b8102bd5e72a81b2a0f","Len":2}', 1702025409); INSERT INTO public.action VALUES (330, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},{"Sha1":"f7703196ec86890a5d9e2921cd7c807078eec3d7","Message":"coincide cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:39:33+07:00"}],"HeadCommit":{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8d99b2c201071b5be52943550dd5d25916c08e0...c0319628506edaa08cc62b8102bd5e72a81b2a0f","Len":2}', 1702025409); INSERT INTO public.action VALUES (331, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},{"Sha1":"f7703196ec86890a5d9e2921cd7c807078eec3d7","Message":"coincide cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:39:33+07:00"}],"HeadCommit":{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8d99b2c201071b5be52943550dd5d25916c08e0...c0319628506edaa08cc62b8102bd5e72a81b2a0f","Len":2}', 1702025409); INSERT INTO public.action VALUES (1008, 1, 7, 11, 21, 0, false, '', false, '28|thinh', 1703842272); INSERT INTO public.action VALUES (1009, 5, 7, 11, 21, 0, false, '', false, '28|thinh', 1703842272); INSERT INTO public.action VALUES (1010, 16, 7, 11, 21, 0, false, '', false, '28|thinh', 1703842272); INSERT INTO public.action VALUES (1051, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/200/head', false, '', 1704106839); INSERT INTO public.action VALUES (332, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},{"Sha1":"f7703196ec86890a5d9e2921cd7c807078eec3d7","Message":"coincide cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:39:33+07:00"}],"HeadCommit":{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8d99b2c201071b5be52943550dd5d25916c08e0...c0319628506edaa08cc62b8102bd5e72a81b2a0f","Len":2}', 1702025409); INSERT INTO public.action VALUES (333, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"}],"HeadCommit":{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c0319628506edaa08cc62b8102bd5e72a81b2a0f...48652d228a3a50d1c85e12393961821cc62567ad","Len":1}', 1702028986); INSERT INTO public.action VALUES (334, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"}],"HeadCommit":{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c0319628506edaa08cc62b8102bd5e72a81b2a0f...48652d228a3a50d1c85e12393961821cc62567ad","Len":1}', 1702028986); INSERT INTO public.action VALUES (335, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"}],"HeadCommit":{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c0319628506edaa08cc62b8102bd5e72a81b2a0f...48652d228a3a50d1c85e12393961821cc62567ad","Len":1}', 1702028986); INSERT INTO public.action VALUES (336, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"}],"HeadCommit":{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c0319628506edaa08cc62b8102bd5e72a81b2a0f...48652d228a3a50d1c85e12393961821cc62567ad","Len":1}', 1702028986); INSERT INTO public.action VALUES (337, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},{"Sha1":"a0de156119c9652b01ec33d7b68cd08470703ce7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:24:03+07:00"},{"Sha1":"958029f68ee9bf07f75f4036e8f7da872f103147","Message":"bổ sung ListHoSo cho DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:23:44+07:00"},{"Sha1":"e3c4b227688e1f41133fe97dce7fe7cfe1e927c2","Message":"QuanLyNhaGiaoTaiCSGDNN\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:06:37+07:00"}],"HeadCommit":{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c5f8da2bb3cd794e66b180dfa15b19ea56b1a430...0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Len":4}', 1702040257); INSERT INTO public.action VALUES (346, 14, 5, 1, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},{"Sha1":"31edd20452e53b75d4f9192248bb4938b6e8070d","Message":"Merge branch ''thinh'' into ''dev''\n\nadd drop cho nam ho so\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!269","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T06:52:51Z"},{"Sha1":"2ee1b375759d0d76919d65c219b7e6fe3a9bc6f9","Message":"Merge branch ''thinh'' into ''dev''\n\nupdate them nam\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!268","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T04:35:52Z"}],"HeadCommit":{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/48652d228a3a50d1c85e12393961821cc62567ad...20a08df4682d10433b053e6660a2ef3e31127449","Len":8}', 1702096899); INSERT INTO public.action VALUES (1052, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/200/head', false, '', 1704106839); INSERT INTO public.action VALUES (1053, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/200/merge', false, '', 1704106839); INSERT INTO public.action VALUES (1054, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/200/merge', false, '', 1704106839); INSERT INTO public.action VALUES (1055, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/200/merge', false, '', 1704106839); INSERT INTO public.action VALUES (1056, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/201/head', false, '', 1704106839); INSERT INTO public.action VALUES (338, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},{"Sha1":"a0de156119c9652b01ec33d7b68cd08470703ce7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:24:03+07:00"},{"Sha1":"958029f68ee9bf07f75f4036e8f7da872f103147","Message":"bổ sung ListHoSo cho DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:23:44+07:00"},{"Sha1":"e3c4b227688e1f41133fe97dce7fe7cfe1e927c2","Message":"QuanLyNhaGiaoTaiCSGDNN\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:06:37+07:00"}],"HeadCommit":{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c5f8da2bb3cd794e66b180dfa15b19ea56b1a430...0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Len":4}', 1702040257); INSERT INTO public.action VALUES (339, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},{"Sha1":"a0de156119c9652b01ec33d7b68cd08470703ce7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:24:03+07:00"},{"Sha1":"958029f68ee9bf07f75f4036e8f7da872f103147","Message":"bổ sung ListHoSo cho DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:23:44+07:00"},{"Sha1":"e3c4b227688e1f41133fe97dce7fe7cfe1e927c2","Message":"QuanLyNhaGiaoTaiCSGDNN\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:06:37+07:00"}],"HeadCommit":{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c5f8da2bb3cd794e66b180dfa15b19ea56b1a430...0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Len":4}', 1702040257); INSERT INTO public.action VALUES (340, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},{"Sha1":"a0de156119c9652b01ec33d7b68cd08470703ce7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:24:03+07:00"},{"Sha1":"958029f68ee9bf07f75f4036e8f7da872f103147","Message":"bổ sung ListHoSo cho DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:23:44+07:00"},{"Sha1":"e3c4b227688e1f41133fe97dce7fe7cfe1e927c2","Message":"QuanLyNhaGiaoTaiCSGDNN\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:06:37+07:00"}],"HeadCommit":{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c5f8da2bb3cd794e66b180dfa15b19ea56b1a430...0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Len":4}', 1702040257); INSERT INTO public.action VALUES (341, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},{"Sha1":"a0de156119c9652b01ec33d7b68cd08470703ce7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:24:03+07:00"},{"Sha1":"958029f68ee9bf07f75f4036e8f7da872f103147","Message":"bổ sung ListHoSo cho DanhSachNLDTheoCMND\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-08T16:23:44+07:00"},{"Sha1":"e3c4b227688e1f41133fe97dce7fe7cfe1e927c2","Message":"QuanLyNhaGiaoTaiCSGDNN\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:06:37+07:00"}],"HeadCommit":{"Sha1":"0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Message":"NhaGiaoGDNNDayNhieuCS\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-08T16:55:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c5f8da2bb3cd794e66b180dfa15b19ea56b1a430...0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf","Len":4}', 1702040257); INSERT INTO public.action VALUES (1388, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/208/head', false, '', 1704371439); INSERT INTO public.action VALUES (1389, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/208/head', false, '', 1704371439); INSERT INTO public.action VALUES (1390, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/208/head', false, '', 1704371439); INSERT INTO public.action VALUES (1391, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/208/merge', false, '', 1704371439); INSERT INTO public.action VALUES (1392, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/208/merge', false, '', 1704371439); INSERT INTO public.action VALUES (1393, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/208/merge', false, '', 1704371439); INSERT INTO public.action VALUES (1491, 11, 7, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446446); INSERT INTO public.action VALUES (1492, 14, 7, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446446); INSERT INTO public.action VALUES (1493, 1, 7, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446446); INSERT INTO public.action VALUES (1494, 5, 7, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446446); INSERT INTO public.action VALUES (347, 5, 5, 1, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},{"Sha1":"8ef4febd9e8c6827566c2608358e733f70f816ef","Message":"Merge branch ''thinh'' into ''dev''\n\nThinh\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!271","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T03:16:52Z"},{"Sha1":"bb4b7cde991a6d61c41c9502f88912f6184c1194","Message":"Merge branch ''thinh'' into ''dev''\n\nadd thong tin ho so nhu cau\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!270","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T07:09:21Z"},{"Sha1":"31edd20452e53b75d4f9192248bb4938b6e8070d","Message":"Merge branch ''thinh'' into ''dev''\n\nadd drop cho nam ho so\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!269","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T06:52:51Z"},{"Sha1":"2ee1b375759d0d76919d65c219b7e6fe3a9bc6f9","Message":"Merge branch ''thinh'' into ''dev''\n\nupdate them nam\n\nSee merge request quan-ly-giao-duc-nghe-nghiep/frontend!268","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-07T04:35:52Z"}],"HeadCommit":{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/48652d228a3a50d1c85e12393961821cc62567ad...20a08df4682d10433b053e6660a2ef3e31127449","Len":8}', 1702096899); INSERT INTO public.action VALUES (348, 1, 11, 1, 21, 0, false, '', false, '1|thinh', 1702096969); INSERT INTO public.action VALUES (349, 14, 11, 1, 21, 0, false, '', false, '1|thinh', 1702096969); INSERT INTO public.action VALUES (350, 5, 11, 1, 21, 0, false, '', false, '1|thinh', 1702096969); INSERT INTO public.action VALUES (351, 1, 5, 1, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Message":"Merge pull request ''thinh'' (#1) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/1\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:42:44+07:00"},{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"},{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},{"Sha1":"f7703196ec86890a5d9e2921cd7c807078eec3d7","Message":"coincide cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:39:33+07:00"}],"HeadCommit":{"Sha1":"453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Message":"Merge pull request ''thinh'' (#1) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/1\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:42:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8ef4febd9e8c6827566c2608358e733f70f816ef...453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Len":5}', 1702096971); INSERT INTO public.action VALUES (352, 14, 5, 1, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Message":"Merge pull request ''thinh'' (#1) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/1\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:42:44+07:00"},{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"},{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},{"Sha1":"f7703196ec86890a5d9e2921cd7c807078eec3d7","Message":"coincide cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:39:33+07:00"}],"HeadCommit":{"Sha1":"453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Message":"Merge pull request ''thinh'' (#1) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/1\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:42:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8ef4febd9e8c6827566c2608358e733f70f816ef...453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Len":5}', 1702096971); INSERT INTO public.action VALUES (353, 5, 5, 1, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Message":"Merge pull request ''thinh'' (#1) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/1\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:42:44+07:00"},{"Sha1":"20a08df4682d10433b053e6660a2ef3e31127449","Message":"Merge branch ''dev'' into thinh\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:41:33+07:00"},{"Sha1":"48652d228a3a50d1c85e12393961821cc62567ad","Message":"add delete nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T16:49:35+07:00"},{"Sha1":"c0319628506edaa08cc62b8102bd5e72a81b2a0f","Message":"fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:44:10+07:00"},{"Sha1":"f7703196ec86890a5d9e2921cd7c807078eec3d7","Message":"coincide cmnd\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-08T13:39:33+07:00"}],"HeadCommit":{"Sha1":"453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Message":"Merge pull request ''thinh'' (#1) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/1\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2023-12-09T11:42:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8ef4febd9e8c6827566c2608358e733f70f816ef...453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802","Len":5}', 1702096971); INSERT INTO public.action VALUES (354, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/20a08df4682d10433b053e6660a2ef3e31127449...840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Len":2}', 1702258449); INSERT INTO public.action VALUES (355, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/20a08df4682d10433b053e6660a2ef3e31127449...840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Len":2}', 1702258449); INSERT INTO public.action VALUES (362, 11, 7, 11, 21, 0, false, '', false, '2|thinh', 1702262293); INSERT INTO public.action VALUES (363, 14, 7, 11, 21, 0, false, '', false, '2|thinh', 1702262293); INSERT INTO public.action VALUES (364, 1, 7, 11, 21, 0, false, '', false, '2|thinh', 1702262293); INSERT INTO public.action VALUES (365, 5, 7, 11, 21, 0, false, '', false, '2|thinh', 1702262293); INSERT INTO public.action VALUES (366, 11, 11, 11, 21, 0, false, '', false, '2|thinh', 1702262652); INSERT INTO public.action VALUES (367, 14, 11, 11, 21, 0, false, '', false, '2|thinh', 1702262652); INSERT INTO public.action VALUES (368, 1, 11, 11, 21, 0, false, '', false, '2|thinh', 1702262652); INSERT INTO public.action VALUES (369, 5, 11, 11, 21, 0, false, '', false, '2|thinh', 1702262652); INSERT INTO public.action VALUES (1057, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/201/head', false, '', 1704106839); INSERT INTO public.action VALUES (1058, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/201/head', false, '', 1704106839); INSERT INTO public.action VALUES (1059, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/201/merge', false, '', 1704106839); INSERT INTO public.action VALUES (1060, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/201/merge', false, '', 1704106839); INSERT INTO public.action VALUES (356, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/20a08df4682d10433b053e6660a2ef3e31127449...840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Len":2}', 1702258449); INSERT INTO public.action VALUES (357, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/20a08df4682d10433b053e6660a2ef3e31127449...840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Len":2}', 1702258449); INSERT INTO public.action VALUES (358, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"}],"HeadCommit":{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/840d81f0072a2dc84dcd2e592deb0ee322f2f46e...ba9ff55b3992311f8d8c8134aaebf4fa09653853","Len":1}', 1702260609); INSERT INTO public.action VALUES (359, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"}],"HeadCommit":{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/840d81f0072a2dc84dcd2e592deb0ee322f2f46e...ba9ff55b3992311f8d8c8134aaebf4fa09653853","Len":1}', 1702260609); INSERT INTO public.action VALUES (360, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"}],"HeadCommit":{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/840d81f0072a2dc84dcd2e592deb0ee322f2f46e...ba9ff55b3992311f8d8c8134aaebf4fa09653853","Len":1}', 1702260609); INSERT INTO public.action VALUES (361, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"}],"HeadCommit":{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/840d81f0072a2dc84dcd2e592deb0ee322f2f46e...ba9ff55b3992311f8d8c8134aaebf4fa09653853","Len":1}', 1702260609); INSERT INTO public.action VALUES (1394, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"}],"HeadCommit":{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"},"CompareURL":"Khieu-nai/backend/compare/228d97b9fcb505875198e7887766d5424c81f9f8...da2aec3d3d8073a39a1b44aa48641e4b6141397f","Len":1}', 1704376134); INSERT INTO public.action VALUES (1495, 16, 7, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446446); INSERT INTO public.action VALUES (1496, 11, 11, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446463); INSERT INTO public.action VALUES (1497, 14, 11, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446463); INSERT INTO public.action VALUES (1498, 1, 11, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446463); INSERT INTO public.action VALUES (1499, 5, 11, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446463); INSERT INTO public.action VALUES (1500, 16, 11, 11, 21, 0, false, '', false, '40|add bao cao TN', 1704446463); INSERT INTO public.action VALUES (1518, 14, 7, 11, 21, 0, false, '', false, '41|thinh', 1704464890); INSERT INTO public.action VALUES (370, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802...332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Len":4}', 1702262654); INSERT INTO public.action VALUES (371, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802...332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Len":4}', 1702262654); INSERT INTO public.action VALUES (372, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802...332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Len":4}', 1702262654); INSERT INTO public.action VALUES (373, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},{"Sha1":"ba9ff55b3992311f8d8c8134aaebf4fa09653853","Message":"hidden Loc theo nam NLD\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T09:10:02+07:00"},{"Sha1":"840d81f0072a2dc84dcd2e592deb0ee322f2f46e","Message":"Merge branch ''thinh'' of https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend into thinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:34:00+07:00"},{"Sha1":"57148d20cdcbc970a17c104a386db2579c8b7684","Message":"update filter theo nam view huyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T08:32:52+07:00"}],"HeadCommit":{"Sha1":"332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Message":"Merge pull request ''thinh'' (#2) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/2\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T09:44:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802...332b7c2db9feb5c0cd39791dabb28f9f7adb999f","Len":4}', 1702262654); INSERT INTO public.action VALUES (374, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba9ff55b3992311f8d8c8134aaebf4fa09653853...c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Len":1}', 1702268599); INSERT INTO public.action VALUES (375, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba9ff55b3992311f8d8c8134aaebf4fa09653853...c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Len":1}', 1702268599); INSERT INTO public.action VALUES (376, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba9ff55b3992311f8d8c8134aaebf4fa09653853...c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Len":1}', 1702268599); INSERT INTO public.action VALUES (377, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba9ff55b3992311f8d8c8134aaebf4fa09653853...c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Len":1}', 1702268599); INSERT INTO public.action VALUES (392, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a...84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Len":1}', 1702366984); INSERT INTO public.action VALUES (386, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/332b7c2db9feb5c0cd39791dabb28f9f7adb999f...7780a4feeb614a456ab7396ad139fb4f27cf99c5","Len":2}', 1702268925); INSERT INTO public.action VALUES (387, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/332b7c2db9feb5c0cd39791dabb28f9f7adb999f...7780a4feeb614a456ab7396ad139fb4f27cf99c5","Len":2}', 1702268925); INSERT INTO public.action VALUES (388, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/332b7c2db9feb5c0cd39791dabb28f9f7adb999f...7780a4feeb614a456ab7396ad139fb4f27cf99c5","Len":2}', 1702268925); INSERT INTO public.action VALUES (389, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},{"Sha1":"c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a","Message":"update nguoi tao filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-11T11:23:11+07:00"}],"HeadCommit":{"Sha1":"7780a4feeb614a456ab7396ad139fb4f27cf99c5","Message":"Merge pull request ''update nguoi tao filter'' (#3) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/3\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-11T11:28:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/332b7c2db9feb5c0cd39791dabb28f9f7adb999f...7780a4feeb614a456ab7396ad139fb4f27cf99c5","Len":2}', 1702268925); INSERT INTO public.action VALUES (390, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a...84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Len":1}', 1702366984); INSERT INTO public.action VALUES (391, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a...84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Len":1}', 1702366984); INSERT INTO public.action VALUES (398, 11, 11, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367055); INSERT INTO public.action VALUES (399, 14, 11, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367055); INSERT INTO public.action VALUES (400, 1, 11, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367055); INSERT INTO public.action VALUES (401, 5, 11, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367055); INSERT INTO public.action VALUES (1061, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/201/merge', false, '', 1704106839); INSERT INTO public.action VALUES (393, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a...84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Len":1}', 1702366984); INSERT INTO public.action VALUES (394, 11, 7, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367035); INSERT INTO public.action VALUES (395, 14, 7, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367035); INSERT INTO public.action VALUES (396, 1, 7, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367035); INSERT INTO public.action VALUES (397, 5, 7, 11, 21, 0, false, '', false, '4|render Action NLĐ', 1702367035); INSERT INTO public.action VALUES (1395, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"}],"HeadCommit":{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"},"CompareURL":"Khieu-nai/backend/compare/228d97b9fcb505875198e7887766d5424c81f9f8...da2aec3d3d8073a39a1b44aa48641e4b6141397f","Len":1}', 1704376134); INSERT INTO public.action VALUES (1396, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"}],"HeadCommit":{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"},"CompareURL":"Khieu-nai/backend/compare/228d97b9fcb505875198e7887766d5424c81f9f8...da2aec3d3d8073a39a1b44aa48641e4b6141397f","Len":1}', 1704376134); INSERT INTO public.action VALUES (1397, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"}],"HeadCommit":{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"},"CompareURL":"Khieu-nai/backend/compare/228d97b9fcb505875198e7887766d5424c81f9f8...da2aec3d3d8073a39a1b44aa48641e4b6141397f","Len":1}', 1704376134); INSERT INTO public.action VALUES (1398, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"}],"HeadCommit":{"Sha1":"da2aec3d3d8073a39a1b44aa48641e4b6141397f","Message":"RouteInfoHostedService - composite key odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T20:48:46+07:00"},"CompareURL":"Khieu-nai/backend/compare/228d97b9fcb505875198e7887766d5424c81f9f8...da2aec3d3d8073a39a1b44aa48641e4b6141397f","Len":1}', 1704376134); INSERT INTO public.action VALUES (1501, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1511625e8a850a70547c23e491168c2ac465a5e6...ae5188bd0ff0b0618b16428867ff1d4c001a580b","Len":2}', 1704446464); INSERT INTO public.action VALUES (1502, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1511625e8a850a70547c23e491168c2ac465a5e6...ae5188bd0ff0b0618b16428867ff1d4c001a580b","Len":2}', 1704446464); INSERT INTO public.action VALUES (1519, 1, 7, 11, 21, 0, false, '', false, '41|thinh', 1704464890); INSERT INTO public.action VALUES (1520, 5, 7, 11, 21, 0, false, '', false, '41|thinh', 1704464890); INSERT INTO public.action VALUES (1521, 16, 7, 11, 21, 0, false, '', false, '41|thinh', 1704464890); INSERT INTO public.action VALUES (1522, 11, 11, 11, 21, 0, false, '', false, '41|thinh', 1704464905); INSERT INTO public.action VALUES (1523, 14, 11, 11, 21, 0, false, '', false, '41|thinh', 1704464905); INSERT INTO public.action VALUES (1524, 1, 11, 11, 21, 0, false, '', false, '41|thinh', 1704464905); INSERT INTO public.action VALUES (402, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7780a4feeb614a456ab7396ad139fb4f27cf99c5...217e5489936cc894c29132432bcdb3a402d853b4","Len":2}', 1702367055); INSERT INTO public.action VALUES (403, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7780a4feeb614a456ab7396ad139fb4f27cf99c5...217e5489936cc894c29132432bcdb3a402d853b4","Len":2}', 1702367055); INSERT INTO public.action VALUES (404, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7780a4feeb614a456ab7396ad139fb4f27cf99c5...217e5489936cc894c29132432bcdb3a402d853b4","Len":2}', 1702367055); INSERT INTO public.action VALUES (405, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},{"Sha1":"84df5778e5198b6e1fddebc0cac9a844f2cfbafd","Message":"render Action NLĐ\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T14:37:03+07:00"}],"HeadCommit":{"Sha1":"217e5489936cc894c29132432bcdb3a402d853b4","Message":"Merge pull request ''render Action NLĐ'' (#4) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/4\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T14:44:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7780a4feeb614a456ab7396ad139fb4f27cf99c5...217e5489936cc894c29132432bcdb3a402d853b4","Len":2}', 1702367055); INSERT INTO public.action VALUES (406, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84df5778e5198b6e1fddebc0cac9a844f2cfbafd...fd360e903f0823d329f8f01976d950865c273eee","Len":1}', 1702372297); INSERT INTO public.action VALUES (407, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84df5778e5198b6e1fddebc0cac9a844f2cfbafd...fd360e903f0823d329f8f01976d950865c273eee","Len":1}', 1702372297); INSERT INTO public.action VALUES (410, 11, 7, 11, 21, 0, false, '', false, '5|update row nld', 1702372532); INSERT INTO public.action VALUES (411, 14, 7, 11, 21, 0, false, '', false, '5|update row nld', 1702372532); INSERT INTO public.action VALUES (412, 1, 7, 11, 21, 0, false, '', false, '5|update row nld', 1702372532); INSERT INTO public.action VALUES (413, 5, 7, 11, 21, 0, false, '', false, '5|update row nld', 1702372532); INSERT INTO public.action VALUES (414, 11, 11, 11, 21, 0, false, '', false, '5|update row nld', 1702372549); INSERT INTO public.action VALUES (415, 14, 11, 11, 21, 0, false, '', false, '5|update row nld', 1702372549); INSERT INTO public.action VALUES (408, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84df5778e5198b6e1fddebc0cac9a844f2cfbafd...fd360e903f0823d329f8f01976d950865c273eee","Len":1}', 1702372297); INSERT INTO public.action VALUES (409, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84df5778e5198b6e1fddebc0cac9a844f2cfbafd...fd360e903f0823d329f8f01976d950865c273eee","Len":1}', 1702372297); INSERT INTO public.action VALUES (1399, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d35753a6ca494289412e6435ad81b388dce8022...2423bb737a918b32bc59efe85c222a9f3128c7ab","Len":1}', 1704422918); INSERT INTO public.action VALUES (1400, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d35753a6ca494289412e6435ad81b388dce8022...2423bb737a918b32bc59efe85c222a9f3128c7ab","Len":1}', 1704422918); INSERT INTO public.action VALUES (1401, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d35753a6ca494289412e6435ad81b388dce8022...2423bb737a918b32bc59efe85c222a9f3128c7ab","Len":1}', 1704422918); INSERT INTO public.action VALUES (1402, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d35753a6ca494289412e6435ad81b388dce8022...2423bb737a918b32bc59efe85c222a9f3128c7ab","Len":1}', 1704422918); INSERT INTO public.action VALUES (1403, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d35753a6ca494289412e6435ad81b388dce8022...2423bb737a918b32bc59efe85c222a9f3128c7ab","Len":1}', 1704422918); INSERT INTO public.action VALUES (1404, 11, 7, 11, 21, 0, false, '', false, '37|update bao cao', 1704422991); INSERT INTO public.action VALUES (1405, 14, 7, 11, 21, 0, false, '', false, '37|update bao cao', 1704422991); INSERT INTO public.action VALUES (1406, 1, 7, 11, 21, 0, false, '', false, '37|update bao cao', 1704422991); INSERT INTO public.action VALUES (1407, 5, 7, 11, 21, 0, false, '', false, '37|update bao cao', 1704422991); INSERT INTO public.action VALUES (1408, 16, 7, 11, 21, 0, false, '', false, '37|update bao cao', 1704422991); INSERT INTO public.action VALUES (1525, 5, 11, 11, 21, 0, false, '', false, '41|thinh', 1704464905); INSERT INTO public.action VALUES (1533, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a560a9bc5fc9ec190342b2afbed08fc5a252c0a9...fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Len":1}', 1704525964); INSERT INTO public.action VALUES (1739, 1, 7, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561813); INSERT INTO public.action VALUES (418, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/217e5489936cc894c29132432bcdb3a402d853b4...30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Len":2}', 1702372551); INSERT INTO public.action VALUES (419, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/217e5489936cc894c29132432bcdb3a402d853b4...30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Len":2}', 1702372551); INSERT INTO public.action VALUES (420, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/217e5489936cc894c29132432bcdb3a402d853b4...30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Len":2}', 1702372551); INSERT INTO public.action VALUES (421, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},{"Sha1":"fd360e903f0823d329f8f01976d950865c273eee","Message":"update row nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-12T16:11:23+07:00"}],"HeadCommit":{"Sha1":"30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Message":"Merge pull request ''update row nld'' (#5) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/5\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-12T16:15:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/217e5489936cc894c29132432bcdb3a402d853b4...30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c","Len":2}', 1702372551); INSERT INTO public.action VALUES (422, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fd360e903f0823d329f8f01976d950865c273eee...7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Len":1}', 1702438323); INSERT INTO public.action VALUES (423, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fd360e903f0823d329f8f01976d950865c273eee...7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Len":1}', 1702438323); INSERT INTO public.action VALUES (1062, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/202/head', false, '', 1704106839); INSERT INTO public.action VALUES (1063, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/202/head', false, '', 1704106839); INSERT INTO public.action VALUES (1064, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/202/head', false, '', 1704106839); INSERT INTO public.action VALUES (1065, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/202/merge', false, '', 1704106839); INSERT INTO public.action VALUES (1212, 5, 7, 11, 21, 0, false, '', false, '32|thinh', 1704270128); INSERT INTO public.action VALUES (424, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fd360e903f0823d329f8f01976d950865c273eee...7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Len":1}', 1702438323); INSERT INTO public.action VALUES (425, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fd360e903f0823d329f8f01976d950865c273eee...7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Len":1}', 1702438323); INSERT INTO public.action VALUES (1409, 11, 11, 11, 21, 0, false, '', false, '37|update bao cao', 1704423006); INSERT INTO public.action VALUES (1410, 14, 11, 11, 21, 0, false, '', false, '37|update bao cao', 1704423006); INSERT INTO public.action VALUES (1411, 1, 11, 11, 21, 0, false, '', false, '37|update bao cao', 1704423006); INSERT INTO public.action VALUES (1412, 5, 11, 11, 21, 0, false, '', false, '37|update bao cao', 1704423006); INSERT INTO public.action VALUES (1413, 16, 11, 11, 21, 0, false, '', false, '37|update bao cao', 1704423006); INSERT INTO public.action VALUES (1414, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e06ac97be44f6830d36c492759a4857e370bcb1f...568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Len":2}', 1704423007); INSERT INTO public.action VALUES (1415, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e06ac97be44f6830d36c492759a4857e370bcb1f...568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Len":2}', 1704423007); INSERT INTO public.action VALUES (1416, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e06ac97be44f6830d36c492759a4857e370bcb1f...568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Len":2}', 1704423007); INSERT INTO public.action VALUES (1417, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e06ac97be44f6830d36c492759a4857e370bcb1f...568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Len":2}', 1704423007); INSERT INTO public.action VALUES (434, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c...f6bf8a15c6b2454168641323bb68f95fd262bfdf","Len":2}', 1702438682); INSERT INTO public.action VALUES (435, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c...f6bf8a15c6b2454168641323bb68f95fd262bfdf","Len":2}', 1702438682); INSERT INTO public.action VALUES (436, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c...f6bf8a15c6b2454168641323bb68f95fd262bfdf","Len":2}', 1702438682); INSERT INTO public.action VALUES (437, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},{"Sha1":"7aa25777f9721eb11360ff4de9bc32ef1fb134d5","Message":"cmt QMTS + edit url KeHoachTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-13T10:31:47+07:00"}],"HeadCommit":{"Sha1":"f6bf8a15c6b2454168641323bb68f95fd262bfdf","Message":"Merge pull request ''cmt QMTS + edit url KeHoachTuyenSinh'' (#6) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/6\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-13T10:37:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c...f6bf8a15c6b2454168641323bb68f95fd262bfdf","Len":2}', 1702438682); INSERT INTO public.action VALUES (438, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7aa25777f9721eb11360ff4de9bc32ef1fb134d5...80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Len":1}', 1702544540); INSERT INTO public.action VALUES (439, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7aa25777f9721eb11360ff4de9bc32ef1fb134d5...80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Len":1}', 1702544540); INSERT INTO public.action VALUES (1066, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/202/merge', false, '', 1704106839); INSERT INTO public.action VALUES (1067, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/202/merge', false, '', 1704106839); INSERT INTO public.action VALUES (1149, 11, 7, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247790); INSERT INTO public.action VALUES (440, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7aa25777f9721eb11360ff4de9bc32ef1fb134d5...80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Len":1}', 1702544540); INSERT INTO public.action VALUES (441, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7aa25777f9721eb11360ff4de9bc32ef1fb134d5...80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Len":1}', 1702544540); INSERT INTO public.action VALUES (442, 11, 7, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545118); INSERT INTO public.action VALUES (443, 14, 7, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545118); INSERT INTO public.action VALUES (444, 1, 7, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545118); INSERT INTO public.action VALUES (445, 5, 7, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545118); INSERT INTO public.action VALUES (446, 11, 11, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545134); INSERT INTO public.action VALUES (447, 14, 11, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545134); INSERT INTO public.action VALUES (448, 1, 11, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545134); INSERT INTO public.action VALUES (449, 5, 11, 11, 21, 0, false, '', false, '7|update add nam giang day', 1702545134); INSERT INTO public.action VALUES (450, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f6bf8a15c6b2454168641323bb68f95fd262bfdf...055af998354057d294f13a0acd4d47817548b2b1","Len":2}', 1702545135); INSERT INTO public.action VALUES (451, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f6bf8a15c6b2454168641323bb68f95fd262bfdf...055af998354057d294f13a0acd4d47817548b2b1","Len":2}', 1702545135); INSERT INTO public.action VALUES (452, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f6bf8a15c6b2454168641323bb68f95fd262bfdf...055af998354057d294f13a0acd4d47817548b2b1","Len":2}', 1702545135); INSERT INTO public.action VALUES (460, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c174188ee719efcfbaebeb22fc03753852c8a659","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!198","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:30:05Z"},{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"b44feb6e234b984261d0c9fecb578dc42e9fdce5","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!196","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:56Z"},{"Sha1":"57e08bc912ae21a5fc51102fd6ef2d67848ed4ae","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor result\n\nSee merge request binh-dinh-f1/binhdinhf1-website!195","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:34Z"}],"HeadCommit":{"Sha1":"c174188ee719efcfbaebeb22fc03753852c8a659","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!198","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:30:05Z"},"CompareURL":"binh-dinh-f1/website/compare/c37db185a228c9beea92be14329ba448b218579e...c174188ee719efcfbaebeb22fc03753852c8a659","Len":9}', 1702548915); INSERT INTO public.action VALUES (1068, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/195/head', false, '', 1704136238); INSERT INTO public.action VALUES (1069, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/195/head', false, '', 1704136238); INSERT INTO public.action VALUES (453, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},{"Sha1":"80dddcc1a779ef72ce358f1fe885ef56d4ea9fec","Message":"update add nam giang day\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-14T16:02:09+07:00"}],"HeadCommit":{"Sha1":"055af998354057d294f13a0acd4d47817548b2b1","Message":"Merge pull request ''update add nam giang day'' (#7) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/7\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-14T16:12:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f6bf8a15c6b2454168641323bb68f95fd262bfdf...055af998354057d294f13a0acd4d47817548b2b1","Len":2}', 1702545135); INSERT INTO public.action VALUES (454, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"57e08bc912ae21a5fc51102fd6ef2d67848ed4ae","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor result\n\nSee merge request binh-dinh-f1/binhdinhf1-website!195","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:34Z"},{"Sha1":"2d2b7ccc02a0191656cbb69f4983c9730f57b5ff","Message":"refactor result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T14:54:49+07:00"},{"Sha1":"bfabfb284976833a97cec250f808e7bf566f82ac","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor drivers\n\nSee merge request binh-dinh-f1/binhdinhf1-website!193","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T03:53:41Z"}],"HeadCommit":{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},"CompareURL":"binh-dinh-f1/website/compare/3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50...ea78adedf84db5434348395594d3b8ecc721519b","Len":6}', 1702548912); INSERT INTO public.action VALUES (455, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"57e08bc912ae21a5fc51102fd6ef2d67848ed4ae","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor result\n\nSee merge request binh-dinh-f1/binhdinhf1-website!195","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:34Z"},{"Sha1":"2d2b7ccc02a0191656cbb69f4983c9730f57b5ff","Message":"refactor result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T14:54:49+07:00"},{"Sha1":"bfabfb284976833a97cec250f808e7bf566f82ac","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor drivers\n\nSee merge request binh-dinh-f1/binhdinhf1-website!193","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T03:53:41Z"}],"HeadCommit":{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},"CompareURL":"binh-dinh-f1/website/compare/3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50...ea78adedf84db5434348395594d3b8ecc721519b","Len":6}', 1702548912); INSERT INTO public.action VALUES (456, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"57e08bc912ae21a5fc51102fd6ef2d67848ed4ae","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor result\n\nSee merge request binh-dinh-f1/binhdinhf1-website!195","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:34Z"},{"Sha1":"2d2b7ccc02a0191656cbb69f4983c9730f57b5ff","Message":"refactor result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T14:54:49+07:00"},{"Sha1":"bfabfb284976833a97cec250f808e7bf566f82ac","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor drivers\n\nSee merge request binh-dinh-f1/binhdinhf1-website!193","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T03:53:41Z"}],"HeadCommit":{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},"CompareURL":"binh-dinh-f1/website/compare/3dd7dd7c6065a1933529bc0fa60e5acc6f0eba50...ea78adedf84db5434348395594d3b8ecc721519b","Len":6}', 1702548912); INSERT INTO public.action VALUES (457, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"2d2b7ccc02a0191656cbb69f4983c9730f57b5ff","Message":"refactor result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T14:54:49+07:00"},{"Sha1":"791cf007cbc34f6fd98bb0d110c2f2c0a2187e0b","Message":"refactor drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T10:52:27+07:00"}],"HeadCommit":{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},"CompareURL":"binh-dinh-f1/website/compare/6bd007213e90947266e4fe47035c9617e45b26ca...c0c886cfbca046565e32dd45d0071b61dccd26ab","Len":3}', 1702548913); INSERT INTO public.action VALUES (458, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"2d2b7ccc02a0191656cbb69f4983c9730f57b5ff","Message":"refactor result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T14:54:49+07:00"},{"Sha1":"791cf007cbc34f6fd98bb0d110c2f2c0a2187e0b","Message":"refactor drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T10:52:27+07:00"}],"HeadCommit":{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},"CompareURL":"binh-dinh-f1/website/compare/6bd007213e90947266e4fe47035c9617e45b26ca...c0c886cfbca046565e32dd45d0071b61dccd26ab","Len":3}', 1702548913); INSERT INTO public.action VALUES (459, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"2d2b7ccc02a0191656cbb69f4983c9730f57b5ff","Message":"refactor result\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T14:54:49+07:00"},{"Sha1":"791cf007cbc34f6fd98bb0d110c2f2c0a2187e0b","Message":"refactor drivers\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T10:52:27+07:00"}],"HeadCommit":{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},"CompareURL":"binh-dinh-f1/website/compare/6bd007213e90947266e4fe47035c9617e45b26ca...c0c886cfbca046565e32dd45d0071b61dccd26ab","Len":3}', 1702548913); INSERT INTO public.action VALUES (467, 11, 7, 11, 21, 0, false, '', false, '8|up code', 1702610170); INSERT INTO public.action VALUES (468, 14, 7, 11, 21, 0, false, '', false, '8|up code', 1702610170); INSERT INTO public.action VALUES (469, 1, 7, 11, 21, 0, false, '', false, '8|up code', 1702610170); INSERT INTO public.action VALUES (470, 5, 7, 11, 21, 0, false, '', false, '8|up code', 1702610170); INSERT INTO public.action VALUES (471, 11, 11, 11, 21, 0, false, '', false, '8|up code', 1702610184); INSERT INTO public.action VALUES (461, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c174188ee719efcfbaebeb22fc03753852c8a659","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!198","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:30:05Z"},{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"b44feb6e234b984261d0c9fecb578dc42e9fdce5","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!196","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:56Z"},{"Sha1":"57e08bc912ae21a5fc51102fd6ef2d67848ed4ae","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor result\n\nSee merge request binh-dinh-f1/binhdinhf1-website!195","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:34Z"}],"HeadCommit":{"Sha1":"c174188ee719efcfbaebeb22fc03753852c8a659","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!198","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:30:05Z"},"CompareURL":"binh-dinh-f1/website/compare/c37db185a228c9beea92be14329ba448b218579e...c174188ee719efcfbaebeb22fc03753852c8a659","Len":9}', 1702548915); INSERT INTO public.action VALUES (462, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c174188ee719efcfbaebeb22fc03753852c8a659","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!198","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:30:05Z"},{"Sha1":"ea78adedf84db5434348395594d3b8ecc721519b","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix nav\n\nSee merge request binh-dinh-f1/binhdinhf1-website!197","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:29:42Z"},{"Sha1":"c0c886cfbca046565e32dd45d0071b61dccd26ab","Message":"fix nav\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T15:28:50+07:00"},{"Sha1":"b44feb6e234b984261d0c9fecb578dc42e9fdce5","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!196","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:56Z"},{"Sha1":"57e08bc912ae21a5fc51102fd6ef2d67848ed4ae","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor result\n\nSee merge request binh-dinh-f1/binhdinhf1-website!195","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T07:55:34Z"}],"HeadCommit":{"Sha1":"c174188ee719efcfbaebeb22fc03753852c8a659","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!198","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-14T08:30:05Z"},"CompareURL":"binh-dinh-f1/website/compare/c37db185a228c9beea92be14329ba448b218579e...c174188ee719efcfbaebeb22fc03753852c8a659","Len":9}', 1702548915); INSERT INTO public.action VALUES (463, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/80dddcc1a779ef72ce358f1fe885ef56d4ea9fec...35d9e420aca16b467c2f15fe29201a908f8a50e0","Len":1}', 1702609853); INSERT INTO public.action VALUES (464, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/80dddcc1a779ef72ce358f1fe885ef56d4ea9fec...35d9e420aca16b467c2f15fe29201a908f8a50e0","Len":1}', 1702609853); INSERT INTO public.action VALUES (465, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/80dddcc1a779ef72ce358f1fe885ef56d4ea9fec...35d9e420aca16b467c2f15fe29201a908f8a50e0","Len":1}', 1702609853); INSERT INTO public.action VALUES (466, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/80dddcc1a779ef72ce358f1fe885ef56d4ea9fec...35d9e420aca16b467c2f15fe29201a908f8a50e0","Len":1}', 1702609853); INSERT INTO public.action VALUES (475, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/055af998354057d294f13a0acd4d47817548b2b1...2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Len":2}', 1702610185); INSERT INTO public.action VALUES (476, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/055af998354057d294f13a0acd4d47817548b2b1...2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Len":2}', 1702610185); INSERT INTO public.action VALUES (1070, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/195/head', false, '', 1704136238); INSERT INTO public.action VALUES (477, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/055af998354057d294f13a0acd4d47817548b2b1...2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Len":2}', 1702610185); INSERT INTO public.action VALUES (478, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},{"Sha1":"35d9e420aca16b467c2f15fe29201a908f8a50e0","Message":"up code\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T10:10:41+07:00"}],"HeadCommit":{"Sha1":"2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Message":"Merge pull request ''up code'' (#8) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/8\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T10:16:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/055af998354057d294f13a0acd4d47817548b2b1...2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88","Len":2}', 1702610185); INSERT INTO public.action VALUES (479, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/35d9e420aca16b467c2f15fe29201a908f8a50e0...27be87b9f58af8a7c1789a168c9f824d069a8c9b","Len":1}', 1702615193); INSERT INTO public.action VALUES (480, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/35d9e420aca16b467c2f15fe29201a908f8a50e0...27be87b9f58af8a7c1789a168c9f824d069a8c9b","Len":1}', 1702615193); INSERT INTO public.action VALUES (481, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/35d9e420aca16b467c2f15fe29201a908f8a50e0...27be87b9f58af8a7c1789a168c9f824d069a8c9b","Len":1}', 1702615193); INSERT INTO public.action VALUES (482, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/35d9e420aca16b467c2f15fe29201a908f8a50e0...27be87b9f58af8a7c1789a168c9f824d069a8c9b","Len":1}', 1702615193); INSERT INTO public.action VALUES (1418, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},{"Sha1":"2423bb737a918b32bc59efe85c222a9f3128c7ab","Message":"update bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T09:48:27+07:00"}],"HeadCommit":{"Sha1":"568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Message":"Merge pull request ''update bao cao'' (#37) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/37\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T09:50:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e06ac97be44f6830d36c492759a4857e370bcb1f...568299bc2fd76e6410ce6c4a6115e561e1c1aa38","Len":2}', 1704423007); INSERT INTO public.action VALUES (1537, 11, 7, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526101); INSERT INTO public.action VALUES (1538, 14, 7, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526101); INSERT INTO public.action VALUES (1539, 1, 7, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526101); INSERT INTO public.action VALUES (491, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88...9a2ac98f33fd96bee643e3f6f36f36575c197232","Len":2}', 1702615308); INSERT INTO public.action VALUES (492, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88...9a2ac98f33fd96bee643e3f6f36f36575c197232","Len":2}', 1702615308); INSERT INTO public.action VALUES (493, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88...9a2ac98f33fd96bee643e3f6f36f36575c197232","Len":2}', 1702615308); INSERT INTO public.action VALUES (494, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},{"Sha1":"27be87b9f58af8a7c1789a168c9f824d069a8c9b","Message":"add PLTDDT\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T11:39:38+07:00"}],"HeadCommit":{"Sha1":"9a2ac98f33fd96bee643e3f6f36f36575c197232","Message":"Merge pull request ''add PLTDDT'' (#9) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/9\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T11:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88...9a2ac98f33fd96bee643e3f6f36f36575c197232","Len":2}', 1702615308); INSERT INTO public.action VALUES (495, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/27be87b9f58af8a7c1789a168c9f824d069a8c9b...a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Len":1}', 1702625940); INSERT INTO public.action VALUES (496, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/27be87b9f58af8a7c1789a168c9f824d069a8c9b...a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Len":1}', 1702625940); INSERT INTO public.action VALUES (1071, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/195/merge', false, '', 1704136238); INSERT INTO public.action VALUES (1072, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/195/merge', false, '', 1704136238); INSERT INTO public.action VALUES (1073, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/195/merge', false, '', 1704136238); INSERT INTO public.action VALUES (1074, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/196/head', false, '', 1704136238); INSERT INTO public.action VALUES (1075, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/196/head', false, '', 1704136238); INSERT INTO public.action VALUES (497, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/27be87b9f58af8a7c1789a168c9f824d069a8c9b...a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Len":1}', 1702625940); INSERT INTO public.action VALUES (498, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/27be87b9f58af8a7c1789a168c9f824d069a8c9b...a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Len":1}', 1702625940); INSERT INTO public.action VALUES (499, 11, 7, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625969); INSERT INTO public.action VALUES (500, 14, 7, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625969); INSERT INTO public.action VALUES (501, 1, 7, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625969); INSERT INTO public.action VALUES (502, 5, 7, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625969); INSERT INTO public.action VALUES (503, 11, 11, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625986); INSERT INTO public.action VALUES (504, 14, 11, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625986); INSERT INTO public.action VALUES (505, 1, 11, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625986); INSERT INTO public.action VALUES (506, 5, 11, 11, 21, 0, false, '', false, '10|update form thong tin tot nghiep', 1702625986); INSERT INTO public.action VALUES (507, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a2ac98f33fd96bee643e3f6f36f36575c197232...d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Len":2}', 1702625987); INSERT INTO public.action VALUES (508, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a2ac98f33fd96bee643e3f6f36f36575c197232...d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Len":2}', 1702625987); INSERT INTO public.action VALUES (509, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a2ac98f33fd96bee643e3f6f36f36575c197232...d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Len":2}', 1702625987); INSERT INTO public.action VALUES (596, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"},"CompareURL":"binh-dinh-f1/website/compare/25e70940cbc363af75aa74e553ca316c2fd5e6d8...50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Len":1}', 1702872312); INSERT INTO public.action VALUES (1213, 16, 7, 11, 21, 0, false, '', false, '32|thinh', 1704270128); INSERT INTO public.action VALUES (510, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},{"Sha1":"a2285a074737d3cd8e28b97aa2840e0a3742f0c3","Message":"update form thong tin tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:38:46+07:00"}],"HeadCommit":{"Sha1":"d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Message":"Merge pull request ''update form thong tin tot nghiep'' (#10) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/10\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:39:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a2ac98f33fd96bee643e3f6f36f36575c197232...d10c1afe4570b2760d435db0b189e8d4beb9e1e4","Len":2}', 1702625987); INSERT INTO public.action VALUES (511, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2285a074737d3cd8e28b97aa2840e0a3742f0c3...d6c6ebc49d27881b73b00c41e305a4a05553ba59","Len":1}', 1702626114); INSERT INTO public.action VALUES (512, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2285a074737d3cd8e28b97aa2840e0a3742f0c3...d6c6ebc49d27881b73b00c41e305a4a05553ba59","Len":1}', 1702626114); INSERT INTO public.action VALUES (513, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2285a074737d3cd8e28b97aa2840e0a3742f0c3...d6c6ebc49d27881b73b00c41e305a4a05553ba59","Len":1}', 1702626114); INSERT INTO public.action VALUES (514, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2285a074737d3cd8e28b97aa2840e0a3742f0c3...d6c6ebc49d27881b73b00c41e305a4a05553ba59","Len":1}', 1702626114); INSERT INTO public.action VALUES (515, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"}],"HeadCommit":{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d6c6ebc49d27881b73b00c41e305a4a05553ba59...0a16148c62a86e5f2259c49170108b92db418562","Len":1}', 1702626214); INSERT INTO public.action VALUES (516, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"}],"HeadCommit":{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d6c6ebc49d27881b73b00c41e305a4a05553ba59...0a16148c62a86e5f2259c49170108b92db418562","Len":1}', 1702626214); INSERT INTO public.action VALUES (517, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"}],"HeadCommit":{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d6c6ebc49d27881b73b00c41e305a4a05553ba59...0a16148c62a86e5f2259c49170108b92db418562","Len":1}', 1702626214); INSERT INTO public.action VALUES (613, 1, 11, 11, 21, 0, false, '', false, '14|import nha giao', 1702883703); INSERT INTO public.action VALUES (614, 5, 11, 11, 21, 0, false, '', false, '14|import nha giao', 1702883703); INSERT INTO public.action VALUES (518, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"}],"HeadCommit":{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d6c6ebc49d27881b73b00c41e305a4a05553ba59...0a16148c62a86e5f2259c49170108b92db418562","Len":1}', 1702626214); INSERT INTO public.action VALUES (519, 11, 7, 11, 21, 0, false, '', false, '11|thinh', 1702626228); INSERT INTO public.action VALUES (520, 14, 7, 11, 21, 0, false, '', false, '11|thinh', 1702626228); INSERT INTO public.action VALUES (521, 1, 7, 11, 21, 0, false, '', false, '11|thinh', 1702626228); INSERT INTO public.action VALUES (522, 5, 7, 11, 21, 0, false, '', false, '11|thinh', 1702626228); INSERT INTO public.action VALUES (1419, 2, 1, 2, 26, 0, false, '', false, '', 1704424148); INSERT INTO public.action VALUES (1420, 12, 1, 2, 26, 0, false, '', false, '', 1704424148); INSERT INTO public.action VALUES (1421, 5, 1, 2, 26, 0, false, '', false, '', 1704424148); INSERT INTO public.action VALUES (1422, 1, 1, 2, 26, 0, false, '', false, '', 1704424148); INSERT INTO public.action VALUES (1423, 15, 1, 2, 26, 0, false, '', false, '', 1704424148); INSERT INTO public.action VALUES (1503, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1511625e8a850a70547c23e491168c2ac465a5e6...ae5188bd0ff0b0618b16428867ff1d4c001a580b","Len":2}', 1704446464); INSERT INTO public.action VALUES (1504, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1511625e8a850a70547c23e491168c2ac465a5e6...ae5188bd0ff0b0618b16428867ff1d4c001a580b","Len":2}', 1704446464); INSERT INTO public.action VALUES (1505, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"ae5188bd0ff0b0618b16428867ff1d4c001a580b","Message":"Merge pull request ''add bao cao TN'' (#40) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/40\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1511625e8a850a70547c23e491168c2ac465a5e6...ae5188bd0ff0b0618b16428867ff1d4c001a580b","Len":2}', 1704446464); INSERT INTO public.action VALUES (1527, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ae5188bd0ff0b0618b16428867ff1d4c001a580b...1f5dbedbc5ac086f344c259aa6523dd859e55509","Len":3}', 1704464905); INSERT INTO public.action VALUES (1540, 5, 7, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526101); INSERT INTO public.action VALUES (1541, 16, 7, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526101); INSERT INTO public.action VALUES (1740, 5, 7, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561813); INSERT INTO public.action VALUES (1741, 16, 7, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561813); INSERT INTO public.action VALUES (527, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d10c1afe4570b2760d435db0b189e8d4beb9e1e4...c85f3e0ffd126207716573905e05bc00287cfe56","Len":3}', 1702626249); INSERT INTO public.action VALUES (528, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d10c1afe4570b2760d435db0b189e8d4beb9e1e4...c85f3e0ffd126207716573905e05bc00287cfe56","Len":3}', 1702626249); INSERT INTO public.action VALUES (529, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d10c1afe4570b2760d435db0b189e8d4beb9e1e4...c85f3e0ffd126207716573905e05bc00287cfe56","Len":3}', 1702626249); INSERT INTO public.action VALUES (530, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},{"Sha1":"0a16148c62a86e5f2259c49170108b92db418562","Message":"update fix title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:43:25+07:00"},{"Sha1":"d6c6ebc49d27881b73b00c41e305a4a05553ba59","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T14:41:46+07:00"}],"HeadCommit":{"Sha1":"c85f3e0ffd126207716573905e05bc00287cfe56","Message":"Merge pull request ''thinh'' (#11) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/11\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T14:44:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d10c1afe4570b2760d435db0b189e8d4beb9e1e4...c85f3e0ffd126207716573905e05bc00287cfe56","Len":3}', 1702626249); INSERT INTO public.action VALUES (539, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"3ceb73095145ef6396629ad604f41ea8f1d42bc1","Message":"refactor UI\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T14:49:46+07:00"}],"HeadCommit":{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},"CompareURL":"binh-dinh-f1/website/compare/c0c886cfbca046565e32dd45d0071b61dccd26ab...25e70940cbc363af75aa74e553ca316c2fd5e6d8","Len":2}', 1702637113); INSERT INTO public.action VALUES (630, 5, 11, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887118); INSERT INTO public.action VALUES (1076, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/196/head', false, '', 1704136238); INSERT INTO public.action VALUES (531, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},{"Sha1":"87eaad5a553a9d8b5f9766f68f92a5a48c50f587","Message":"cập nhật tốt nghiệp\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T14:48:02+07:00"},{"Sha1":"c438d80a5c55401beb087b92684e1f0c95490966","Message":"fix kqts theo địa phương\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:50:17+07:00"},{"Sha1":"0417e80d0438d15327d3d76f84203ca22bb6b272","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:14+07:00"},{"Sha1":"37d8b3b4a299b9e6117e4efd1baf3c30d1cd735b","Message":"kqua ts theo dia phuong\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:08+07:00"}],"HeadCommit":{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf...cc919bad838f517188eff6a3300c159cd046d2cf","Len":10}', 1702627512); INSERT INTO public.action VALUES (532, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},{"Sha1":"87eaad5a553a9d8b5f9766f68f92a5a48c50f587","Message":"cập nhật tốt nghiệp\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T14:48:02+07:00"},{"Sha1":"c438d80a5c55401beb087b92684e1f0c95490966","Message":"fix kqts theo địa phương\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:50:17+07:00"},{"Sha1":"0417e80d0438d15327d3d76f84203ca22bb6b272","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:14+07:00"},{"Sha1":"37d8b3b4a299b9e6117e4efd1baf3c30d1cd735b","Message":"kqua ts theo dia phuong\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:08+07:00"}],"HeadCommit":{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf...cc919bad838f517188eff6a3300c159cd046d2cf","Len":10}', 1702627512); INSERT INTO public.action VALUES (533, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},{"Sha1":"87eaad5a553a9d8b5f9766f68f92a5a48c50f587","Message":"cập nhật tốt nghiệp\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T14:48:02+07:00"},{"Sha1":"c438d80a5c55401beb087b92684e1f0c95490966","Message":"fix kqts theo địa phương\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:50:17+07:00"},{"Sha1":"0417e80d0438d15327d3d76f84203ca22bb6b272","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:14+07:00"},{"Sha1":"37d8b3b4a299b9e6117e4efd1baf3c30d1cd735b","Message":"kqua ts theo dia phuong\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:08+07:00"}],"HeadCommit":{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf...cc919bad838f517188eff6a3300c159cd046d2cf","Len":10}', 1702627512); INSERT INTO public.action VALUES (534, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},{"Sha1":"87eaad5a553a9d8b5f9766f68f92a5a48c50f587","Message":"cập nhật tốt nghiệp\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T14:48:02+07:00"},{"Sha1":"c438d80a5c55401beb087b92684e1f0c95490966","Message":"fix kqts theo địa phương\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:50:17+07:00"},{"Sha1":"0417e80d0438d15327d3d76f84203ca22bb6b272","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:14+07:00"},{"Sha1":"37d8b3b4a299b9e6117e4efd1baf3c30d1cd735b","Message":"kqua ts theo dia phuong\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:08+07:00"}],"HeadCommit":{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf...cc919bad838f517188eff6a3300c159cd046d2cf","Len":10}', 1702627512); INSERT INTO public.action VALUES (643, 11, 11, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887924); INSERT INTO public.action VALUES (535, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},{"Sha1":"87eaad5a553a9d8b5f9766f68f92a5a48c50f587","Message":"cập nhật tốt nghiệp\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T14:48:02+07:00"},{"Sha1":"c438d80a5c55401beb087b92684e1f0c95490966","Message":"fix kqts theo địa phương\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:50:17+07:00"},{"Sha1":"0417e80d0438d15327d3d76f84203ca22bb6b272","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:14+07:00"},{"Sha1":"37d8b3b4a299b9e6117e4efd1baf3c30d1cd735b","Message":"kqua ts theo dia phuong\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-15T13:29:08+07:00"}],"HeadCommit":{"Sha1":"cc919bad838f517188eff6a3300c159cd046d2cf","Message":"fix CapNhatTotNghiepModel\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T15:04:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0b3ff70646ddd57aa66bcaf1ac0dc656be548fdf...cc919bad838f517188eff6a3300c159cd046d2cf","Len":10}', 1702627512); INSERT INTO public.action VALUES (536, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"a6d1a8e3b7fbf575ebfcbe3435d04092927101b0","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor UI\n\nSee merge request binh-dinh-f1/binhdinhf1-website!199","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:22:40Z"},{"Sha1":"3ceb73095145ef6396629ad604f41ea8f1d42bc1","Message":"refactor UI\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T14:49:46+07:00"}],"HeadCommit":{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},"CompareURL":"binh-dinh-f1/website/compare/ea78adedf84db5434348395594d3b8ecc721519b...d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Len":4}', 1702637111); INSERT INTO public.action VALUES (537, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"a6d1a8e3b7fbf575ebfcbe3435d04092927101b0","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor UI\n\nSee merge request binh-dinh-f1/binhdinhf1-website!199","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:22:40Z"},{"Sha1":"3ceb73095145ef6396629ad604f41ea8f1d42bc1","Message":"refactor UI\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T14:49:46+07:00"}],"HeadCommit":{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},"CompareURL":"binh-dinh-f1/website/compare/ea78adedf84db5434348395594d3b8ecc721519b...d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Len":4}', 1702637111); INSERT INTO public.action VALUES (538, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"a6d1a8e3b7fbf575ebfcbe3435d04092927101b0","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor UI\n\nSee merge request binh-dinh-f1/binhdinhf1-website!199","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:22:40Z"},{"Sha1":"3ceb73095145ef6396629ad604f41ea8f1d42bc1","Message":"refactor UI\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T14:49:46+07:00"}],"HeadCommit":{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},"CompareURL":"binh-dinh-f1/website/compare/ea78adedf84db5434348395594d3b8ecc721519b...d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Len":4}', 1702637111); INSERT INTO public.action VALUES (644, 14, 11, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887924); INSERT INTO public.action VALUES (645, 1, 11, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887924); INSERT INTO public.action VALUES (646, 5, 11, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887924); INSERT INTO public.action VALUES (1077, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/196/merge', false, '', 1704136238); INSERT INTO public.action VALUES (1078, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/196/merge', false, '', 1704136238); INSERT INTO public.action VALUES (1079, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/196/merge', false, '', 1704136238); INSERT INTO public.action VALUES (540, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"3ceb73095145ef6396629ad604f41ea8f1d42bc1","Message":"refactor UI\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T14:49:46+07:00"}],"HeadCommit":{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},"CompareURL":"binh-dinh-f1/website/compare/c0c886cfbca046565e32dd45d0071b61dccd26ab...25e70940cbc363af75aa74e553ca316c2fd5e6d8","Len":2}', 1702637113); INSERT INTO public.action VALUES (541, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"3ceb73095145ef6396629ad604f41ea8f1d42bc1","Message":"refactor UI\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T14:49:46+07:00"}],"HeadCommit":{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},"CompareURL":"binh-dinh-f1/website/compare/c0c886cfbca046565e32dd45d0071b61dccd26ab...25e70940cbc363af75aa74e553ca316c2fd5e6d8","Len":2}', 1702637113); INSERT INTO public.action VALUES (542, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ef7305d1f95de9023a96f85ea36ae1411adc6f33","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!202","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:58Z"},{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"334252fd6692445d5b12ea09563cb6240f81ff99","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!200","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:23:11Z"},{"Sha1":"a6d1a8e3b7fbf575ebfcbe3435d04092927101b0","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor UI\n\nSee merge request binh-dinh-f1/binhdinhf1-website!199","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:22:40Z"}],"HeadCommit":{"Sha1":"ef7305d1f95de9023a96f85ea36ae1411adc6f33","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!202","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:58Z"},"CompareURL":"binh-dinh-f1/website/compare/c174188ee719efcfbaebeb22fc03753852c8a659...ef7305d1f95de9023a96f85ea36ae1411adc6f33","Len":6}', 1702637114); INSERT INTO public.action VALUES (543, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ef7305d1f95de9023a96f85ea36ae1411adc6f33","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!202","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:58Z"},{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"334252fd6692445d5b12ea09563cb6240f81ff99","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!200","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:23:11Z"},{"Sha1":"a6d1a8e3b7fbf575ebfcbe3435d04092927101b0","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor UI\n\nSee merge request binh-dinh-f1/binhdinhf1-website!199","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:22:40Z"}],"HeadCommit":{"Sha1":"ef7305d1f95de9023a96f85ea36ae1411adc6f33","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!202","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:58Z"},"CompareURL":"binh-dinh-f1/website/compare/c174188ee719efcfbaebeb22fc03753852c8a659...ef7305d1f95de9023a96f85ea36ae1411adc6f33","Len":6}', 1702637114); INSERT INTO public.action VALUES (544, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ef7305d1f95de9023a96f85ea36ae1411adc6f33","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!202","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:58Z"},{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"},{"Sha1":"334252fd6692445d5b12ea09563cb6240f81ff99","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!200","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:23:11Z"},{"Sha1":"a6d1a8e3b7fbf575ebfcbe3435d04092927101b0","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor UI\n\nSee merge request binh-dinh-f1/binhdinhf1-website!199","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T08:22:40Z"}],"HeadCommit":{"Sha1":"ef7305d1f95de9023a96f85ea36ae1411adc6f33","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!202","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:58Z"},"CompareURL":"binh-dinh-f1/website/compare/c174188ee719efcfbaebeb22fc03753852c8a659...ef7305d1f95de9023a96f85ea36ae1411adc6f33","Len":6}', 1702637114); INSERT INTO public.action VALUES (545, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0a16148c62a86e5f2259c49170108b92db418562...7c1c5230c30732550a59bb531e670dc4b26c1ddc","Len":1}', 1702641287); INSERT INTO public.action VALUES (546, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0a16148c62a86e5f2259c49170108b92db418562...7c1c5230c30732550a59bb531e670dc4b26c1ddc","Len":1}', 1702641287); INSERT INTO public.action VALUES (547, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0a16148c62a86e5f2259c49170108b92db418562...7c1c5230c30732550a59bb531e670dc4b26c1ddc","Len":1}', 1702641287); INSERT INTO public.action VALUES (659, 11, 11, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891942); INSERT INTO public.action VALUES (660, 14, 11, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891942); INSERT INTO public.action VALUES (661, 1, 11, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891942); INSERT INTO public.action VALUES (662, 5, 11, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891942); INSERT INTO public.action VALUES (1080, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/197/head', false, '', 1704136238); INSERT INTO public.action VALUES (1081, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/197/head', false, '', 1704136238); INSERT INTO public.action VALUES (1558, 14, 7, 11, 21, 0, false, '', false, '43|add file', 1704530829); INSERT INTO public.action VALUES (548, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0a16148c62a86e5f2259c49170108b92db418562...7c1c5230c30732550a59bb531e670dc4b26c1ddc","Len":1}', 1702641287); INSERT INTO public.action VALUES (549, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"}],"HeadCommit":{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7c1c5230c30732550a59bb531e670dc4b26c1ddc...e49bfa1312e27644964f043a52ca88ea71a9be89","Len":1}', 1702641359); INSERT INTO public.action VALUES (550, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"}],"HeadCommit":{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7c1c5230c30732550a59bb531e670dc4b26c1ddc...e49bfa1312e27644964f043a52ca88ea71a9be89","Len":1}', 1702641359); INSERT INTO public.action VALUES (551, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"}],"HeadCommit":{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7c1c5230c30732550a59bb531e670dc4b26c1ddc...e49bfa1312e27644964f043a52ca88ea71a9be89","Len":1}', 1702641359); INSERT INTO public.action VALUES (552, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"}],"HeadCommit":{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7c1c5230c30732550a59bb531e670dc4b26c1ddc...e49bfa1312e27644964f043a52ca88ea71a9be89","Len":1}', 1702641359); INSERT INTO public.action VALUES (553, 11, 7, 11, 21, 0, false, '', false, '12|thinh', 1702641379); INSERT INTO public.action VALUES (554, 14, 7, 11, 21, 0, false, '', false, '12|thinh', 1702641379); INSERT INTO public.action VALUES (555, 1, 7, 11, 21, 0, false, '', false, '12|thinh', 1702641379); INSERT INTO public.action VALUES (556, 5, 7, 11, 21, 0, false, '', false, '12|thinh', 1702641379); INSERT INTO public.action VALUES (557, 11, 11, 11, 21, 0, false, '', false, '12|thinh', 1702641399); INSERT INTO public.action VALUES (558, 14, 11, 11, 21, 0, false, '', false, '12|thinh', 1702641399); INSERT INTO public.action VALUES (559, 1, 11, 11, 21, 0, false, '', false, '12|thinh', 1702641399); INSERT INTO public.action VALUES (560, 5, 11, 11, 21, 0, false, '', false, '12|thinh', 1702641399); INSERT INTO public.action VALUES (561, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c85f3e0ffd126207716573905e05bc00287cfe56...c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Len":3}', 1702641400); INSERT INTO public.action VALUES (571, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e49bfa1312e27644964f043a52ca88ea71a9be89...31a4a839d6a2d78343031b022b5809584d8d7ca5","Len":1}', 1702641993); INSERT INTO public.action VALUES (562, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c85f3e0ffd126207716573905e05bc00287cfe56...c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Len":3}', 1702641400); INSERT INTO public.action VALUES (563, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c85f3e0ffd126207716573905e05bc00287cfe56...c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Len":3}', 1702641400); INSERT INTO public.action VALUES (564, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},{"Sha1":"e49bfa1312e27644964f043a52ca88ea71a9be89","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:55:46+07:00"},{"Sha1":"7c1c5230c30732550a59bb531e670dc4b26c1ddc","Message":"update thong tin hoc sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T18:54:36+07:00"}],"HeadCommit":{"Sha1":"c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Message":"Merge pull request ''thinh'' (#12) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/12\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T18:56:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c85f3e0ffd126207716573905e05bc00287cfe56...c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac","Len":3}', 1702641400); INSERT INTO public.action VALUES (565, 11, 7, 11, 21, 0, false, '', false, '13|fix tths', 1702641474); INSERT INTO public.action VALUES (566, 14, 7, 11, 21, 0, false, '', false, '13|fix tths', 1702641474); INSERT INTO public.action VALUES (567, 1, 7, 11, 21, 0, false, '', false, '13|fix tths', 1702641474); INSERT INTO public.action VALUES (568, 5, 7, 11, 21, 0, false, '', false, '13|fix tths', 1702641474); INSERT INTO public.action VALUES (569, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e49bfa1312e27644964f043a52ca88ea71a9be89...31a4a839d6a2d78343031b022b5809584d8d7ca5","Len":1}', 1702641993); INSERT INTO public.action VALUES (570, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e49bfa1312e27644964f043a52ca88ea71a9be89...31a4a839d6a2d78343031b022b5809584d8d7ca5","Len":1}', 1702641993); INSERT INTO public.action VALUES (807, 1, 18, 13, 20, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Message":"thanh lý\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-25T10:02:31+07:00"}],"HeadCommit":{"Sha1":"28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Message":"thanh lý\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-25T10:02:31+07:00"},"CompareURL":"binh-dinh-f1/webapi/compare/ccfdd34f3f3d17beddd582294bd246c0a822c5d8...28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Len":1}', 1703490039); INSERT INTO public.action VALUES (572, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e49bfa1312e27644964f043a52ca88ea71a9be89...31a4a839d6a2d78343031b022b5809584d8d7ca5","Len":1}', 1702641993); INSERT INTO public.action VALUES (573, 11, 11, 11, 21, 0, false, '', false, '13|fix tths', 1702642085); INSERT INTO public.action VALUES (574, 14, 11, 11, 21, 0, false, '', false, '13|fix tths', 1702642085); INSERT INTO public.action VALUES (575, 1, 11, 11, 21, 0, false, '', false, '13|fix tths', 1702642085); INSERT INTO public.action VALUES (576, 5, 11, 11, 21, 0, false, '', false, '13|fix tths', 1702642085); INSERT INTO public.action VALUES (577, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac...66267b2a985da79086f96d0013f67de1c3f6cdfc","Len":2}', 1702642086); INSERT INTO public.action VALUES (578, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac...66267b2a985da79086f96d0013f67de1c3f6cdfc","Len":2}', 1702642086); INSERT INTO public.action VALUES (579, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac...66267b2a985da79086f96d0013f67de1c3f6cdfc","Len":2}', 1702642086); INSERT INTO public.action VALUES (580, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},{"Sha1":"31a4a839d6a2d78343031b022b5809584d8d7ca5","Message":"update notify hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-15T19:06:21+07:00"}],"HeadCommit":{"Sha1":"66267b2a985da79086f96d0013f67de1c3f6cdfc","Message":"Merge pull request ''fix tths'' (#13) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/13\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-15T19:07:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac...66267b2a985da79086f96d0013f67de1c3f6cdfc","Len":2}', 1702642086); INSERT INTO public.action VALUES (581, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},{"Sha1":"a8d98108328f05daa43820054fbf7917c41afcaf","Message":"[NgayNhapHoc]\n[NgayTotNghiep]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:41:59+07:00"}],"HeadCommit":{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/cc919bad838f517188eff6a3300c159cd046d2cf...9e6c3dd369ea03357e5f5d57a28793db179a36a2","Len":2}', 1702656912); INSERT INTO public.action VALUES (1082, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/197/head', false, '', 1704136238); INSERT INTO public.action VALUES (582, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},{"Sha1":"a8d98108328f05daa43820054fbf7917c41afcaf","Message":"[NgayNhapHoc]\n[NgayTotNghiep]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:41:59+07:00"}],"HeadCommit":{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/cc919bad838f517188eff6a3300c159cd046d2cf...9e6c3dd369ea03357e5f5d57a28793db179a36a2","Len":2}', 1702656912); INSERT INTO public.action VALUES (583, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},{"Sha1":"a8d98108328f05daa43820054fbf7917c41afcaf","Message":"[NgayNhapHoc]\n[NgayTotNghiep]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:41:59+07:00"}],"HeadCommit":{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/cc919bad838f517188eff6a3300c159cd046d2cf...9e6c3dd369ea03357e5f5d57a28793db179a36a2","Len":2}', 1702656912); INSERT INTO public.action VALUES (584, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},{"Sha1":"a8d98108328f05daa43820054fbf7917c41afcaf","Message":"[NgayNhapHoc]\n[NgayTotNghiep]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:41:59+07:00"}],"HeadCommit":{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/cc919bad838f517188eff6a3300c159cd046d2cf...9e6c3dd369ea03357e5f5d57a28793db179a36a2","Len":2}', 1702656912); INSERT INTO public.action VALUES (585, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},{"Sha1":"a8d98108328f05daa43820054fbf7917c41afcaf","Message":"[NgayNhapHoc]\n[NgayTotNghiep]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:41:59+07:00"}],"HeadCommit":{"Sha1":"9e6c3dd369ea03357e5f5d57a28793db179a36a2","Message":"add NgayTotNghiep\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-15T16:43:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/cc919bad838f517188eff6a3300c159cd046d2cf...9e6c3dd369ea03357e5f5d57a28793db179a36a2","Len":2}', 1702656912); INSERT INTO public.action VALUES (586, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},{"Sha1":"fbc2f37f60dcdaae29b437a474a7103f636e1723","Message":"import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:30+07:00"}],"HeadCommit":{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/9e6c3dd369ea03357e5f5d57a28793db179a36a2...c84f074f85bba95b3cbc51e81c715a707798419c","Len":2}', 1702833312); INSERT INTO public.action VALUES (587, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},{"Sha1":"fbc2f37f60dcdaae29b437a474a7103f636e1723","Message":"import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:30+07:00"}],"HeadCommit":{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/9e6c3dd369ea03357e5f5d57a28793db179a36a2...c84f074f85bba95b3cbc51e81c715a707798419c","Len":2}', 1702833312); INSERT INTO public.action VALUES (588, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},{"Sha1":"fbc2f37f60dcdaae29b437a474a7103f636e1723","Message":"import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:30+07:00"}],"HeadCommit":{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/9e6c3dd369ea03357e5f5d57a28793db179a36a2...c84f074f85bba95b3cbc51e81c715a707798419c","Len":2}', 1702833312); INSERT INTO public.action VALUES (1083, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/197/merge', false, '', 1704136238); INSERT INTO public.action VALUES (1559, 1, 7, 11, 21, 0, false, '', false, '43|add file', 1704530829); INSERT INTO public.action VALUES (589, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},{"Sha1":"fbc2f37f60dcdaae29b437a474a7103f636e1723","Message":"import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:30+07:00"}],"HeadCommit":{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/9e6c3dd369ea03357e5f5d57a28793db179a36a2...c84f074f85bba95b3cbc51e81c715a707798419c","Len":2}', 1702833312); INSERT INTO public.action VALUES (590, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},{"Sha1":"fbc2f37f60dcdaae29b437a474a7103f636e1723","Message":"import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:30+07:00"}],"HeadCommit":{"Sha1":"c84f074f85bba95b3cbc51e81c715a707798419c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-17T23:04:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/9e6c3dd369ea03357e5f5d57a28793db179a36a2...c84f074f85bba95b3cbc51e81c715a707798419c","Len":2}', 1702833312); INSERT INTO public.action VALUES (591, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},"CompareURL":"binh-dinh-f1/website/compare/d3aa3cc3766957108ad87dd140e32b05fd78c8d2...6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Len":2}', 1702872311); INSERT INTO public.action VALUES (592, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},"CompareURL":"binh-dinh-f1/website/compare/d3aa3cc3766957108ad87dd140e32b05fd78c8d2...6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Len":2}', 1702872311); INSERT INTO public.action VALUES (593, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},"CompareURL":"binh-dinh-f1/website/compare/d3aa3cc3766957108ad87dd140e32b05fd78c8d2...6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Len":2}', 1702872311); INSERT INTO public.action VALUES (594, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"},"CompareURL":"binh-dinh-f1/website/compare/25e70940cbc363af75aa74e553ca316c2fd5e6d8...50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Len":1}', 1702872312); INSERT INTO public.action VALUES (595, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"},"CompareURL":"binh-dinh-f1/website/compare/25e70940cbc363af75aa74e553ca316c2fd5e6d8...50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Len":1}', 1702872312); INSERT INTO public.action VALUES (607, 11, 7, 11, 21, 0, false, '', false, '14|import nha giao', 1702883678); INSERT INTO public.action VALUES (608, 14, 7, 11, 21, 0, false, '', false, '14|import nha giao', 1702883678); INSERT INTO public.action VALUES (609, 1, 7, 11, 21, 0, false, '', false, '14|import nha giao', 1702883679); INSERT INTO public.action VALUES (610, 5, 7, 11, 21, 0, false, '', false, '14|import nha giao', 1702883679); INSERT INTO public.action VALUES (611, 11, 11, 11, 21, 0, false, '', false, '14|import nha giao', 1702883703); INSERT INTO public.action VALUES (612, 14, 11, 11, 21, 0, false, '', false, '14|import nha giao', 1702883703); INSERT INTO public.action VALUES (597, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!204","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:43:07Z"},{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!204","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:43:07Z"},"CompareURL":"binh-dinh-f1/website/compare/ef7305d1f95de9023a96f85ea36ae1411adc6f33...80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Len":3}', 1702872313); INSERT INTO public.action VALUES (598, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!204","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:43:07Z"},{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!204","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:43:07Z"},"CompareURL":"binh-dinh-f1/website/compare/ef7305d1f95de9023a96f85ea36ae1411adc6f33...80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Len":3}', 1702872313); INSERT INTO public.action VALUES (599, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!204","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:43:07Z"},{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"}],"HeadCommit":{"Sha1":"80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!204","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:43:07Z"},"CompareURL":"binh-dinh-f1/website/compare/ef7305d1f95de9023a96f85ea36ae1411adc6f33...80a264dfb3cdf734dfa3e7d342d44ee124af37eb","Len":3}', 1702872313); INSERT INTO public.action VALUES (600, 13, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"4ca0b88dfe08c31473b5b977456d58ea124e9e18","Message":"fix: result 80%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-18T10:43:15+07:00"}],"HeadCommit":{"Sha1":"4ca0b88dfe08c31473b5b977456d58ea124e9e18","Message":"fix: result 80%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-18T10:43:15+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/62e440c85f8e271d4d19f042050cae22e70eb3b9...4ca0b88dfe08c31473b5b977456d58ea124e9e18","Len":1}', 1702872318); INSERT INTO public.action VALUES (601, 1, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"4ca0b88dfe08c31473b5b977456d58ea124e9e18","Message":"fix: result 80%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-18T10:43:15+07:00"}],"HeadCommit":{"Sha1":"4ca0b88dfe08c31473b5b977456d58ea124e9e18","Message":"fix: result 80%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-18T10:43:15+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/62e440c85f8e271d4d19f042050cae22e70eb3b9...4ca0b88dfe08c31473b5b977456d58ea124e9e18","Len":1}', 1702872318); INSERT INTO public.action VALUES (602, 4, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"4ca0b88dfe08c31473b5b977456d58ea124e9e18","Message":"fix: result 80%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-18T10:43:15+07:00"}],"HeadCommit":{"Sha1":"4ca0b88dfe08c31473b5b977456d58ea124e9e18","Message":"fix: result 80%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-18T10:43:15+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/62e440c85f8e271d4d19f042050cae22e70eb3b9...4ca0b88dfe08c31473b5b977456d58ea124e9e18","Len":1}', 1702872318); INSERT INTO public.action VALUES (603, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/31a4a839d6a2d78343031b022b5809584d8d7ca5...82dc42aa48c0d98347fec8bd387a63ed36c10c59","Len":1}', 1702883497); INSERT INTO public.action VALUES (1084, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/197/merge', false, '', 1704136238); INSERT INTO public.action VALUES (1085, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/197/merge', false, '', 1704136238); INSERT INTO public.action VALUES (1560, 5, 7, 11, 21, 0, false, '', false, '43|add file', 1704530829); INSERT INTO public.action VALUES (604, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/31a4a839d6a2d78343031b022b5809584d8d7ca5...82dc42aa48c0d98347fec8bd387a63ed36c10c59","Len":1}', 1702883497); INSERT INTO public.action VALUES (605, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/31a4a839d6a2d78343031b022b5809584d8d7ca5...82dc42aa48c0d98347fec8bd387a63ed36c10c59","Len":1}', 1702883497); INSERT INTO public.action VALUES (606, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/31a4a839d6a2d78343031b022b5809584d8d7ca5...82dc42aa48c0d98347fec8bd387a63ed36c10c59","Len":1}', 1702883497); INSERT INTO public.action VALUES (1424, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '', 1704425275); INSERT INTO public.action VALUES (1425, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '', 1704425275); INSERT INTO public.action VALUES (1426, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '', 1704425275); INSERT INTO public.action VALUES (1427, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '', 1704425275); INSERT INTO public.action VALUES (1428, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '', 1704425275); INSERT INTO public.action VALUES (1429, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"}],"HeadCommit":{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"},"CompareURL":"","Len":1}', 1704425275); INSERT INTO public.action VALUES (1430, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"}],"HeadCommit":{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"},"CompareURL":"","Len":1}', 1704425275); INSERT INTO public.action VALUES (1431, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"}],"HeadCommit":{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"},"CompareURL":"","Len":1}', 1704425275); INSERT INTO public.action VALUES (1432, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"}],"HeadCommit":{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"},"CompareURL":"","Len":1}', 1704425275); INSERT INTO public.action VALUES (1433, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"}],"HeadCommit":{"Sha1":"00cf5f9186ddbc5f46a0cdf5a670a513403947b9","Message":"feat: firt commit\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-05T10:26:32+07:00"},"CompareURL":"","Len":1}', 1704425275); INSERT INTO public.action VALUES (1506, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},{"Sha1":"4c6108960c727a00b1b291d94a689d23b593185a","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:46+07:00"},{"Sha1":"3e9d79fd0a7005f6192e2be88f8926e55ce52fe6","Message":"DanhSachCoSoGDNNChuaNopKHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:29+07:00"},{"Sha1":"649483f6ed3de893b50ee3ff63f45b080f939a77","Message":"BÁO CÁO SỐ LIỆU TUYỂN SINH\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-05T10:04:39+07:00"},{"Sha1":"bae5336ab933f41a1ebf2e74cb5ff70a60fff513","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-04T14:23:05+07:00"}],"HeadCommit":{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7e2dfc497da7b826f8f961d7acc5a0574f73de12...3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Len":6}', 1704450041); INSERT INTO public.action VALUES (1561, 16, 7, 11, 21, 0, false, '', false, '43|add file', 1704530829); INSERT INTO public.action VALUES (1562, 11, 11, 11, 21, 0, false, '', false, '43|add file', 1704530897); INSERT INTO public.action VALUES (1563, 14, 11, 11, 21, 0, false, '', false, '43|add file', 1704530897); INSERT INTO public.action VALUES (1564, 1, 11, 11, 21, 0, false, '', false, '43|add file', 1704530897); INSERT INTO public.action VALUES (1565, 5, 11, 11, 21, 0, false, '', false, '43|add file', 1704530897); INSERT INTO public.action VALUES (1566, 16, 11, 11, 21, 0, false, '', false, '43|add file', 1704530897); INSERT INTO public.action VALUES (615, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66267b2a985da79086f96d0013f67de1c3f6cdfc...527e8c8156be1324b94845f5d0a29fb74e03a75e","Len":2}', 1702883704); INSERT INTO public.action VALUES (616, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66267b2a985da79086f96d0013f67de1c3f6cdfc...527e8c8156be1324b94845f5d0a29fb74e03a75e","Len":2}', 1702883704); INSERT INTO public.action VALUES (617, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66267b2a985da79086f96d0013f67de1c3f6cdfc...527e8c8156be1324b94845f5d0a29fb74e03a75e","Len":2}', 1702883704); INSERT INTO public.action VALUES (618, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},{"Sha1":"82dc42aa48c0d98347fec8bd387a63ed36c10c59","Message":"import nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T14:11:26+07:00"}],"HeadCommit":{"Sha1":"527e8c8156be1324b94845f5d0a29fb74e03a75e","Message":"Merge pull request ''import nha giao'' (#14) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/14\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T14:14:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66267b2a985da79086f96d0013f67de1c3f6cdfc...527e8c8156be1324b94845f5d0a29fb74e03a75e","Len":2}', 1702883704); INSERT INTO public.action VALUES (619, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/82dc42aa48c0d98347fec8bd387a63ed36c10c59...556555eb7a356a27df965b962179d6296fd85b80","Len":1}', 1702887041); INSERT INTO public.action VALUES (620, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/82dc42aa48c0d98347fec8bd387a63ed36c10c59...556555eb7a356a27df965b962179d6296fd85b80","Len":1}', 1702887041); INSERT INTO public.action VALUES (1086, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/198/head', false, '', 1704136238); INSERT INTO public.action VALUES (1087, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/198/head', false, '', 1704136238); INSERT INTO public.action VALUES (1088, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/198/head', false, '', 1704136238); INSERT INTO public.action VALUES (1089, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/198/merge', false, '', 1704136238); INSERT INTO public.action VALUES (621, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/82dc42aa48c0d98347fec8bd387a63ed36c10c59...556555eb7a356a27df965b962179d6296fd85b80","Len":1}', 1702887041); INSERT INTO public.action VALUES (622, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/82dc42aa48c0d98347fec8bd387a63ed36c10c59...556555eb7a356a27df965b962179d6296fd85b80","Len":1}', 1702887041); INSERT INTO public.action VALUES (623, 11, 7, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887103); INSERT INTO public.action VALUES (624, 14, 7, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887103); INSERT INTO public.action VALUES (625, 1, 7, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887103); INSERT INTO public.action VALUES (626, 5, 7, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887103); INSERT INTO public.action VALUES (627, 11, 11, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887118); INSERT INTO public.action VALUES (628, 14, 11, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887118); INSERT INTO public.action VALUES (629, 1, 11, 11, 21, 0, false, '', false, '15|filter QuanHuyenViewSo + Json HS/SV', 1702887118); INSERT INTO public.action VALUES (1434, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2423bb737a918b32bc59efe85c222a9f3128c7ab...792bcff3d21254a02cb1dc70989f44cd948b788e","Len":1}', 1704428608); INSERT INTO public.action VALUES (1435, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2423bb737a918b32bc59efe85c222a9f3128c7ab...792bcff3d21254a02cb1dc70989f44cd948b788e","Len":1}', 1704428608); INSERT INTO public.action VALUES (1436, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2423bb737a918b32bc59efe85c222a9f3128c7ab...792bcff3d21254a02cb1dc70989f44cd948b788e","Len":1}', 1704428608); INSERT INTO public.action VALUES (1437, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2423bb737a918b32bc59efe85c222a9f3128c7ab...792bcff3d21254a02cb1dc70989f44cd948b788e","Len":1}', 1704428608); INSERT INTO public.action VALUES (1438, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2423bb737a918b32bc59efe85c222a9f3128c7ab...792bcff3d21254a02cb1dc70989f44cd948b788e","Len":1}', 1704428608); INSERT INTO public.action VALUES (1439, 11, 7, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428628); INSERT INTO public.action VALUES (1440, 14, 7, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428628); INSERT INTO public.action VALUES (1441, 1, 7, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428628); INSERT INTO public.action VALUES (1442, 5, 7, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428628); INSERT INTO public.action VALUES (1443, 16, 7, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428628); INSERT INTO public.action VALUES (631, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/527e8c8156be1324b94845f5d0a29fb74e03a75e...fe2b7e3827ed06be7308235f0d4289609621e3f5","Len":2}', 1702887118); INSERT INTO public.action VALUES (632, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/527e8c8156be1324b94845f5d0a29fb74e03a75e...fe2b7e3827ed06be7308235f0d4289609621e3f5","Len":2}', 1702887118); INSERT INTO public.action VALUES (633, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/527e8c8156be1324b94845f5d0a29fb74e03a75e...fe2b7e3827ed06be7308235f0d4289609621e3f5","Len":2}', 1702887118); INSERT INTO public.action VALUES (634, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},{"Sha1":"556555eb7a356a27df965b962179d6296fd85b80","Message":"filter QuanHuyenViewSo + Json HS/SV\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:10:31+07:00"}],"HeadCommit":{"Sha1":"fe2b7e3827ed06be7308235f0d4289609621e3f5","Message":"Merge pull request ''filter QuanHuyenViewSo + Json HS/SV'' (#15) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/15\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:11:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/527e8c8156be1324b94845f5d0a29fb74e03a75e...fe2b7e3827ed06be7308235f0d4289609621e3f5","Len":2}', 1702887118); INSERT INTO public.action VALUES (635, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/556555eb7a356a27df965b962179d6296fd85b80...2354be6f98057d9f214ca12779f11e288b0fcd8b","Len":1}', 1702887876); INSERT INTO public.action VALUES (636, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/556555eb7a356a27df965b962179d6296fd85b80...2354be6f98057d9f214ca12779f11e288b0fcd8b","Len":1}', 1702887876); INSERT INTO public.action VALUES (1090, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/198/merge', false, '', 1704136238); INSERT INTO public.action VALUES (1091, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/198/merge', false, '', 1704136238); INSERT INTO public.action VALUES (1150, 14, 7, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247790); INSERT INTO public.action VALUES (1151, 1, 7, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247790); INSERT INTO public.action VALUES (637, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/556555eb7a356a27df965b962179d6296fd85b80...2354be6f98057d9f214ca12779f11e288b0fcd8b","Len":1}', 1702887876); INSERT INTO public.action VALUES (638, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/556555eb7a356a27df965b962179d6296fd85b80...2354be6f98057d9f214ca12779f11e288b0fcd8b","Len":1}', 1702887876); INSERT INTO public.action VALUES (639, 11, 7, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887895); INSERT INTO public.action VALUES (640, 14, 7, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887895); INSERT INTO public.action VALUES (641, 1, 7, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887895); INSERT INTO public.action VALUES (642, 5, 7, 11, 21, 0, false, '', false, '16|fix giao dien', 1702887895); INSERT INTO public.action VALUES (1444, 11, 11, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428656); INSERT INTO public.action VALUES (1445, 14, 11, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428656); INSERT INTO public.action VALUES (1446, 1, 11, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428656); INSERT INTO public.action VALUES (1447, 5, 11, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428656); INSERT INTO public.action VALUES (1448, 16, 11, 11, 21, 0, false, '', false, '38|update bao cao tuyen sinh', 1704428656); INSERT INTO public.action VALUES (1507, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},{"Sha1":"4c6108960c727a00b1b291d94a689d23b593185a","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:46+07:00"},{"Sha1":"3e9d79fd0a7005f6192e2be88f8926e55ce52fe6","Message":"DanhSachCoSoGDNNChuaNopKHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:29+07:00"},{"Sha1":"649483f6ed3de893b50ee3ff63f45b080f939a77","Message":"BÁO CÁO SỐ LIỆU TUYỂN SINH\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-05T10:04:39+07:00"},{"Sha1":"bae5336ab933f41a1ebf2e74cb5ff70a60fff513","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-04T14:23:05+07:00"}],"HeadCommit":{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7e2dfc497da7b826f8f961d7acc5a0574f73de12...3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Len":6}', 1704450041); INSERT INTO public.action VALUES (1508, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},{"Sha1":"4c6108960c727a00b1b291d94a689d23b593185a","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:46+07:00"},{"Sha1":"3e9d79fd0a7005f6192e2be88f8926e55ce52fe6","Message":"DanhSachCoSoGDNNChuaNopKHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:29+07:00"},{"Sha1":"649483f6ed3de893b50ee3ff63f45b080f939a77","Message":"BÁO CÁO SỐ LIỆU TUYỂN SINH\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-05T10:04:39+07:00"},{"Sha1":"bae5336ab933f41a1ebf2e74cb5ff70a60fff513","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-04T14:23:05+07:00"}],"HeadCommit":{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7e2dfc497da7b826f8f961d7acc5a0574f73de12...3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Len":6}', 1704450041); INSERT INTO public.action VALUES (1509, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},{"Sha1":"4c6108960c727a00b1b291d94a689d23b593185a","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:46+07:00"},{"Sha1":"3e9d79fd0a7005f6192e2be88f8926e55ce52fe6","Message":"DanhSachCoSoGDNNChuaNopKHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:29+07:00"},{"Sha1":"649483f6ed3de893b50ee3ff63f45b080f939a77","Message":"BÁO CÁO SỐ LIỆU TUYỂN SINH\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-05T10:04:39+07:00"},{"Sha1":"bae5336ab933f41a1ebf2e74cb5ff70a60fff513","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-04T14:23:05+07:00"}],"HeadCommit":{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7e2dfc497da7b826f8f961d7acc5a0574f73de12...3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Len":6}', 1704450041); INSERT INTO public.action VALUES (1510, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},{"Sha1":"4c6108960c727a00b1b291d94a689d23b593185a","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:46+07:00"},{"Sha1":"3e9d79fd0a7005f6192e2be88f8926e55ce52fe6","Message":"DanhSachCoSoGDNNChuaNopKHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:29+07:00"},{"Sha1":"649483f6ed3de893b50ee3ff63f45b080f939a77","Message":"BÁO CÁO SỐ LIỆU TUYỂN SINH\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-05T10:04:39+07:00"},{"Sha1":"bae5336ab933f41a1ebf2e74cb5ff70a60fff513","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-04T14:23:05+07:00"}],"HeadCommit":{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7e2dfc497da7b826f8f961d7acc5a0574f73de12...3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Len":6}', 1704450041); INSERT INTO public.action VALUES (1511, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},{"Sha1":"4c6108960c727a00b1b291d94a689d23b593185a","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:46+07:00"},{"Sha1":"3e9d79fd0a7005f6192e2be88f8926e55ce52fe6","Message":"DanhSachCoSoGDNNChuaNopKHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T10:14:29+07:00"},{"Sha1":"649483f6ed3de893b50ee3ff63f45b080f939a77","Message":"BÁO CÁO SỐ LIỆU TUYỂN SINH\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-05T10:04:39+07:00"},{"Sha1":"bae5336ab933f41a1ebf2e74cb5ff70a60fff513","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-04T14:23:05+07:00"}],"HeadCommit":{"Sha1":"3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Message":"fix loại hình cơ sở gdnn\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-05T11:39:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7e2dfc497da7b826f8f961d7acc5a0574f73de12...3dd99d415a74c6cbd11b6db0ed8ce7887bc79191","Len":6}', 1704450041); INSERT INTO public.action VALUES (1657, 11, 7, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538841); INSERT INTO public.action VALUES (1658, 14, 7, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538841); INSERT INTO public.action VALUES (1659, 1, 7, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538841); INSERT INTO public.action VALUES (1660, 5, 7, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538841); INSERT INTO public.action VALUES (1661, 16, 7, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538841); INSERT INTO public.action VALUES (1664, 1, 11, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538859); INSERT INTO public.action VALUES (1665, 5, 11, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538859); INSERT INTO public.action VALUES (647, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fe2b7e3827ed06be7308235f0d4289609621e3f5...1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Len":2}', 1702887925); INSERT INTO public.action VALUES (648, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fe2b7e3827ed06be7308235f0d4289609621e3f5...1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Len":2}', 1702887925); INSERT INTO public.action VALUES (649, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fe2b7e3827ed06be7308235f0d4289609621e3f5...1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Len":2}', 1702887925); INSERT INTO public.action VALUES (650, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},{"Sha1":"2354be6f98057d9f214ca12779f11e288b0fcd8b","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T15:24:26+07:00"}],"HeadCommit":{"Sha1":"1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Message":"Merge pull request ''fix giao dien'' (#16) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/16\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T15:25:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fe2b7e3827ed06be7308235f0d4289609621e3f5...1a92e62351728bac3c7f0afd5f4c8716ad0f3a53","Len":2}', 1702887925); INSERT INTO public.action VALUES (651, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2354be6f98057d9f214ca12779f11e288b0fcd8b...89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Len":1}', 1702891806); INSERT INTO public.action VALUES (652, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2354be6f98057d9f214ca12779f11e288b0fcd8b...89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Len":1}', 1702891806); INSERT INTO public.action VALUES (1101, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/193/head', false, '', 1704165638); INSERT INTO public.action VALUES (1102, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/193/head', false, '', 1704165638); INSERT INTO public.action VALUES (1103, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/193/head', false, '', 1704165638); INSERT INTO public.action VALUES (1104, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/193/merge', false, '', 1704165638); INSERT INTO public.action VALUES (1105, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/193/merge', false, '', 1704165638); INSERT INTO public.action VALUES (653, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2354be6f98057d9f214ca12779f11e288b0fcd8b...89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Len":1}', 1702891806); INSERT INTO public.action VALUES (654, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2354be6f98057d9f214ca12779f11e288b0fcd8b...89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Len":1}', 1702891806); INSERT INTO public.action VALUES (655, 11, 7, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891928); INSERT INTO public.action VALUES (656, 14, 7, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891928); INSERT INTO public.action VALUES (657, 1, 7, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891928); INSERT INTO public.action VALUES (658, 5, 7, 11, 21, 0, false, '', false, '17|fix bang du lieu import excel', 1702891928); INSERT INTO public.action VALUES (667, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},{"Sha1":"abef7b269ae9a9c510f2734c628249041b0c3d14","Message":"update import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T09:23:34+07:00"}],"HeadCommit":{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c84f074f85bba95b3cbc51e81c715a707798419c...8ae65abe93410c86df067ef16255d670ae62d473","Len":2}', 1702892111); INSERT INTO public.action VALUES (668, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},{"Sha1":"abef7b269ae9a9c510f2734c628249041b0c3d14","Message":"update import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T09:23:34+07:00"}],"HeadCommit":{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c84f074f85bba95b3cbc51e81c715a707798419c...8ae65abe93410c86df067ef16255d670ae62d473","Len":2}', 1702892111); INSERT INTO public.action VALUES (669, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},{"Sha1":"abef7b269ae9a9c510f2734c628249041b0c3d14","Message":"update import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T09:23:34+07:00"}],"HeadCommit":{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c84f074f85bba95b3cbc51e81c715a707798419c...8ae65abe93410c86df067ef16255d670ae62d473","Len":2}', 1702892111); INSERT INTO public.action VALUES (670, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},{"Sha1":"abef7b269ae9a9c510f2734c628249041b0c3d14","Message":"update import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T09:23:34+07:00"}],"HeadCommit":{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c84f074f85bba95b3cbc51e81c715a707798419c...8ae65abe93410c86df067ef16255d670ae62d473","Len":2}', 1702892111); INSERT INTO public.action VALUES (671, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},{"Sha1":"abef7b269ae9a9c510f2734c628249041b0c3d14","Message":"update import nhà giáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T09:23:34+07:00"}],"HeadCommit":{"Sha1":"8ae65abe93410c86df067ef16255d670ae62d473","Message":"import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-18T16:15:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c84f074f85bba95b3cbc51e81c715a707798419c...8ae65abe93410c86df067ef16255d670ae62d473","Len":2}', 1702892111); INSERT INTO public.action VALUES (1662, 11, 11, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538859); INSERT INTO public.action VALUES (1663, 14, 11, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538859); INSERT INTO public.action VALUES (1794, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/181/head', false, '', 1704577239); INSERT INTO public.action VALUES (1795, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/181/head', false, '', 1704577239); INSERT INTO public.action VALUES (1796, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/181/head', false, '', 1704577239); INSERT INTO public.action VALUES (663, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1a92e62351728bac3c7f0afd5f4c8716ad0f3a53...f138f26d87044c4d2801f8c46e13b0c2cc47c806","Len":2}', 1702891943); INSERT INTO public.action VALUES (664, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1a92e62351728bac3c7f0afd5f4c8716ad0f3a53...f138f26d87044c4d2801f8c46e13b0c2cc47c806","Len":2}', 1702891943); INSERT INTO public.action VALUES (665, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1a92e62351728bac3c7f0afd5f4c8716ad0f3a53...f138f26d87044c4d2801f8c46e13b0c2cc47c806","Len":2}', 1702891943); INSERT INTO public.action VALUES (666, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},{"Sha1":"89fb4ac9700c29f0ea1d3cb0712be070cf24839b","Message":"fix bang du lieu import excel\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-18T16:29:56+07:00"}],"HeadCommit":{"Sha1":"f138f26d87044c4d2801f8c46e13b0c2cc47c806","Message":"Merge pull request ''fix bang du lieu import excel'' (#17) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/17\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-18T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1a92e62351728bac3c7f0afd5f4c8716ad0f3a53...f138f26d87044c4d2801f8c46e13b0c2cc47c806","Len":2}', 1702891943); INSERT INTO public.action VALUES (672, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},{"Sha1":"cad3b23dcab32eea0b2e269de80845a51acd3224","Message":"sửa cột db nhu cầu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:08+07:00"}],"HeadCommit":{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/8ae65abe93410c86df067ef16255d670ae62d473...23232f7d8ef875160cd81cdbb25f43554066067c","Len":2}', 1702921512); INSERT INTO public.action VALUES (680, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/89fb4ac9700c29f0ea1d3cb0712be070cf24839b...9a1dec6bb595188538ebfd75e033724bc73ed224","Len":1}', 1702950671); INSERT INTO public.action VALUES (681, 11, 7, 11, 21, 0, false, '', false, '18|import hoc vien', 1702950876); INSERT INTO public.action VALUES (682, 14, 7, 11, 21, 0, false, '', false, '18|import hoc vien', 1702950876); INSERT INTO public.action VALUES (673, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},{"Sha1":"cad3b23dcab32eea0b2e269de80845a51acd3224","Message":"sửa cột db nhu cầu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:08+07:00"}],"HeadCommit":{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/8ae65abe93410c86df067ef16255d670ae62d473...23232f7d8ef875160cd81cdbb25f43554066067c","Len":2}', 1702921512); INSERT INTO public.action VALUES (674, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},{"Sha1":"cad3b23dcab32eea0b2e269de80845a51acd3224","Message":"sửa cột db nhu cầu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:08+07:00"}],"HeadCommit":{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/8ae65abe93410c86df067ef16255d670ae62d473...23232f7d8ef875160cd81cdbb25f43554066067c","Len":2}', 1702921512); INSERT INTO public.action VALUES (675, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},{"Sha1":"cad3b23dcab32eea0b2e269de80845a51acd3224","Message":"sửa cột db nhu cầu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:08+07:00"}],"HeadCommit":{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/8ae65abe93410c86df067ef16255d670ae62d473...23232f7d8ef875160cd81cdbb25f43554066067c","Len":2}', 1702921512); INSERT INTO public.action VALUES (676, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},{"Sha1":"cad3b23dcab32eea0b2e269de80845a51acd3224","Message":"sửa cột db nhu cầu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:08+07:00"}],"HeadCommit":{"Sha1":"23232f7d8ef875160cd81cdbb25f43554066067c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-18T16:37:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/8ae65abe93410c86df067ef16255d670ae62d473...23232f7d8ef875160cd81cdbb25f43554066067c","Len":2}', 1702921512); INSERT INTO public.action VALUES (677, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/89fb4ac9700c29f0ea1d3cb0712be070cf24839b...9a1dec6bb595188538ebfd75e033724bc73ed224","Len":1}', 1702950671); INSERT INTO public.action VALUES (678, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/89fb4ac9700c29f0ea1d3cb0712be070cf24839b...9a1dec6bb595188538ebfd75e033724bc73ed224","Len":1}', 1702950671); INSERT INTO public.action VALUES (679, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/89fb4ac9700c29f0ea1d3cb0712be070cf24839b...9a1dec6bb595188538ebfd75e033724bc73ed224","Len":1}', 1702950671); INSERT INTO public.action VALUES (683, 1, 7, 11, 21, 0, false, '', false, '18|import hoc vien', 1702950876); INSERT INTO public.action VALUES (684, 5, 7, 11, 21, 0, false, '', false, '18|import hoc vien', 1702950876); INSERT INTO public.action VALUES (1106, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/193/merge', false, '', 1704165638); INSERT INTO public.action VALUES (685, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"}],"HeadCommit":{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a1dec6bb595188538ebfd75e033724bc73ed224...23ad4cdb757b62bcce915abba7bd545b47297107","Len":1}', 1702953378); INSERT INTO public.action VALUES (686, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"}],"HeadCommit":{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a1dec6bb595188538ebfd75e033724bc73ed224...23ad4cdb757b62bcce915abba7bd545b47297107","Len":1}', 1702953378); INSERT INTO public.action VALUES (687, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"}],"HeadCommit":{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a1dec6bb595188538ebfd75e033724bc73ed224...23ad4cdb757b62bcce915abba7bd545b47297107","Len":1}', 1702953378); INSERT INTO public.action VALUES (688, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"}],"HeadCommit":{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9a1dec6bb595188538ebfd75e033724bc73ed224...23ad4cdb757b62bcce915abba7bd545b47297107","Len":1}', 1702953378); INSERT INTO public.action VALUES (693, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f138f26d87044c4d2801f8c46e13b0c2cc47c806...1209d08a6048529593be305903318410955b3285","Len":3}', 1702953627); INSERT INTO public.action VALUES (694, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f138f26d87044c4d2801f8c46e13b0c2cc47c806...1209d08a6048529593be305903318410955b3285","Len":3}', 1702953627); INSERT INTO public.action VALUES (808, 4, 18, 13, 20, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Message":"thanh lý\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-25T10:02:31+07:00"}],"HeadCommit":{"Sha1":"28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Message":"thanh lý\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-25T10:02:31+07:00"},"CompareURL":"binh-dinh-f1/webapi/compare/ccfdd34f3f3d17beddd582294bd246c0a822c5d8...28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a","Len":1}', 1703490039); INSERT INTO public.action VALUES (695, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f138f26d87044c4d2801f8c46e13b0c2cc47c806...1209d08a6048529593be305903318410955b3285","Len":3}', 1702953627); INSERT INTO public.action VALUES (696, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},{"Sha1":"23ad4cdb757b62bcce915abba7bd545b47297107","Message":"add rang buoc them moi hoc + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T09:36:08+07:00"},{"Sha1":"9a1dec6bb595188538ebfd75e033724bc73ed224","Message":"import hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T08:50:59+07:00"}],"HeadCommit":{"Sha1":"1209d08a6048529593be305903318410955b3285","Message":"Merge pull request ''import hoc vien'' (#18) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/18\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T09:40:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f138f26d87044c4d2801f8c46e13b0c2cc47c806...1209d08a6048529593be305903318410955b3285","Len":3}', 1702953627); INSERT INTO public.action VALUES (697, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/23ad4cdb757b62bcce915abba7bd545b47297107...a20d3725ce75fdd102fd1a0e8865f08474e1c238","Len":1}', 1702957044); INSERT INTO public.action VALUES (698, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/23ad4cdb757b62bcce915abba7bd545b47297107...a20d3725ce75fdd102fd1a0e8865f08474e1c238","Len":1}', 1702957044); INSERT INTO public.action VALUES (699, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/23ad4cdb757b62bcce915abba7bd545b47297107...a20d3725ce75fdd102fd1a0e8865f08474e1c238","Len":1}', 1702957044); INSERT INTO public.action VALUES (700, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/23ad4cdb757b62bcce915abba7bd545b47297107...a20d3725ce75fdd102fd1a0e8865f08474e1c238","Len":1}', 1702957044); INSERT INTO public.action VALUES (701, 11, 7, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957083); INSERT INTO public.action VALUES (702, 14, 7, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957083); INSERT INTO public.action VALUES (703, 1, 7, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957083); INSERT INTO public.action VALUES (704, 5, 7, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957083); INSERT INTO public.action VALUES (705, 11, 11, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957100); INSERT INTO public.action VALUES (706, 14, 11, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957100); INSERT INTO public.action VALUES (707, 1, 11, 11, 21, 0, false, '', false, '19|update file excel hoc vien', 1702957100); INSERT INTO public.action VALUES (709, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1209d08a6048529593be305903318410955b3285...2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Len":2}', 1702957102); INSERT INTO public.action VALUES (710, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1209d08a6048529593be305903318410955b3285...2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Len":2}', 1702957102); INSERT INTO public.action VALUES (711, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1209d08a6048529593be305903318410955b3285...2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Len":2}', 1702957102); INSERT INTO public.action VALUES (712, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},{"Sha1":"a20d3725ce75fdd102fd1a0e8865f08474e1c238","Message":"update file excel hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:37:15+07:00"}],"HeadCommit":{"Sha1":"2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Message":"Merge pull request ''update file excel hoc vien'' (#19) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/19\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T10:38:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1209d08a6048529593be305903318410955b3285...2b00bcf2f6390dd90b579b59e0b0d42e617a9529","Len":2}', 1702957102); INSERT INTO public.action VALUES (713, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a20d3725ce75fdd102fd1a0e8865f08474e1c238...54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Len":1}', 1702958381); INSERT INTO public.action VALUES (714, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a20d3725ce75fdd102fd1a0e8865f08474e1c238...54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Len":1}', 1702958381); INSERT INTO public.action VALUES (1107, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/194/head', false, '', 1704165638); INSERT INTO public.action VALUES (1108, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/194/head', false, '', 1704165638); INSERT INTO public.action VALUES (1109, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/194/head', false, '', 1704165638); INSERT INTO public.action VALUES (1110, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/194/merge', false, '', 1704165638); INSERT INTO public.action VALUES (715, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a20d3725ce75fdd102fd1a0e8865f08474e1c238...54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Len":1}', 1702958381); INSERT INTO public.action VALUES (716, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a20d3725ce75fdd102fd1a0e8865f08474e1c238...54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Len":1}', 1702958381); INSERT INTO public.action VALUES (717, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"}],"HeadCommit":{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/54006ffe91d0cbce8ecbefb4219b6b76f2b4477e...7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Len":1}', 1702958684); INSERT INTO public.action VALUES (718, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"}],"HeadCommit":{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/54006ffe91d0cbce8ecbefb4219b6b76f2b4477e...7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Len":1}', 1702958684); INSERT INTO public.action VALUES (719, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"}],"HeadCommit":{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/54006ffe91d0cbce8ecbefb4219b6b76f2b4477e...7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Len":1}', 1702958684); INSERT INTO public.action VALUES (720, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"}],"HeadCommit":{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/54006ffe91d0cbce8ecbefb4219b6b76f2b4477e...7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Len":1}', 1702958684); INSERT INTO public.action VALUES (729, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2b00bcf2f6390dd90b579b59e0b0d42e617a9529...0e5cba3900c9c08060dc1e082efb182ce1d2f261","Len":3}', 1702958723); INSERT INTO public.action VALUES (842, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"}],"HeadCommit":{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"},"CompareURL":"Khieu-nai/backend/compare/5983684e9d5976b8a5f1c302230691faf2cbcd24...210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Len":1}', 1703640419); INSERT INTO public.action VALUES (730, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2b00bcf2f6390dd90b579b59e0b0d42e617a9529...0e5cba3900c9c08060dc1e082efb182ce1d2f261","Len":3}', 1702958723); INSERT INTO public.action VALUES (731, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2b00bcf2f6390dd90b579b59e0b0d42e617a9529...0e5cba3900c9c08060dc1e082efb182ce1d2f261","Len":3}', 1702958723); INSERT INTO public.action VALUES (732, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},{"Sha1":"7875dd1cb94f8d0563fdadfac04da1e77ef997f9","Message":"change file excel ex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T11:04:34+07:00"},{"Sha1":"54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","Message":"hidden QuyMoTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T10:59:32+07:00"}],"HeadCommit":{"Sha1":"0e5cba3900c9c08060dc1e082efb182ce1d2f261","Message":"Merge pull request ''thinh'' (#20) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/20\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T11:05:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2b00bcf2f6390dd90b579b59e0b0d42e617a9529...0e5cba3900c9c08060dc1e082efb182ce1d2f261","Len":3}', 1702958723); INSERT INTO public.action VALUES (733, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7875dd1cb94f8d0563fdadfac04da1e77ef997f9...e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Len":1}', 1702978960); INSERT INTO public.action VALUES (734, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7875dd1cb94f8d0563fdadfac04da1e77ef997f9...e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Len":1}', 1702978960); INSERT INTO public.action VALUES (735, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7875dd1cb94f8d0563fdadfac04da1e77ef997f9...e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Len":1}', 1702978960); INSERT INTO public.action VALUES (858, 11, 7, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733085); INSERT INTO public.action VALUES (859, 14, 7, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733085); INSERT INTO public.action VALUES (736, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7875dd1cb94f8d0563fdadfac04da1e77ef997f9...e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Len":1}', 1702978960); INSERT INTO public.action VALUES (737, 11, 7, 11, 21, 0, false, '', false, '21|fix giao dien', 1702978975); INSERT INTO public.action VALUES (738, 14, 7, 11, 21, 0, false, '', false, '21|fix giao dien', 1702978975); INSERT INTO public.action VALUES (739, 1, 7, 11, 21, 0, false, '', false, '21|fix giao dien', 1702978975); INSERT INTO public.action VALUES (740, 5, 7, 11, 21, 0, false, '', false, '21|fix giao dien', 1702978975); INSERT INTO public.action VALUES (745, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0e5cba3900c9c08060dc1e082efb182ce1d2f261...822137c72238e461cd8224bd07bf7738c907aeed","Len":2}', 1702979016); INSERT INTO public.action VALUES (746, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0e5cba3900c9c08060dc1e082efb182ce1d2f261...822137c72238e461cd8224bd07bf7738c907aeed","Len":2}', 1702979016); INSERT INTO public.action VALUES (747, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0e5cba3900c9c08060dc1e082efb182ce1d2f261...822137c72238e461cd8224bd07bf7738c907aeed","Len":2}', 1702979016); INSERT INTO public.action VALUES (748, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},{"Sha1":"e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-19T16:42:29+07:00"}],"HeadCommit":{"Sha1":"822137c72238e461cd8224bd07bf7738c907aeed","Message":"Merge pull request ''fix giao dien'' (#21) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/21\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-19T16:43:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0e5cba3900c9c08060dc1e082efb182ce1d2f261...822137c72238e461cd8224bd07bf7738c907aeed","Len":2}', 1702979016); INSERT INTO public.action VALUES (749, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},{"Sha1":"139855ba53afe44af7d772d9324e855bd821eccd","Message":"thêm [TrinhDoDaoTao_Id] vào [QLLD_DM_NganhNgheDaoTao]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:10+07:00"},{"Sha1":"6587ec16a88c7a57bdd899e650d5b954d81abea5","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:22+07:00"},{"Sha1":"ed99851d68901fe8f65a48340cce579ad34e5016","Message":"complete baocaots theo ngành\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:16+07:00"},{"Sha1":"660119ead1a21161e8bb238002943484bcaedc81","Message":"update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-19T13:38:23+07:00"}],"HeadCommit":{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/23232f7d8ef875160cd81cdbb25f43554066067c...a2a88424d7babb49292acfd12b209f68ff9ac909","Len":9}', 1702980312); INSERT INTO public.action VALUES (860, 1, 7, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733085); INSERT INTO public.action VALUES (861, 5, 7, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733085); INSERT INTO public.action VALUES (750, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},{"Sha1":"139855ba53afe44af7d772d9324e855bd821eccd","Message":"thêm [TrinhDoDaoTao_Id] vào [QLLD_DM_NganhNgheDaoTao]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:10+07:00"},{"Sha1":"6587ec16a88c7a57bdd899e650d5b954d81abea5","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:22+07:00"},{"Sha1":"ed99851d68901fe8f65a48340cce579ad34e5016","Message":"complete baocaots theo ngành\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:16+07:00"},{"Sha1":"660119ead1a21161e8bb238002943484bcaedc81","Message":"update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-19T13:38:23+07:00"}],"HeadCommit":{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/23232f7d8ef875160cd81cdbb25f43554066067c...a2a88424d7babb49292acfd12b209f68ff9ac909","Len":9}', 1702980312); INSERT INTO public.action VALUES (751, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},{"Sha1":"139855ba53afe44af7d772d9324e855bd821eccd","Message":"thêm [TrinhDoDaoTao_Id] vào [QLLD_DM_NganhNgheDaoTao]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:10+07:00"},{"Sha1":"6587ec16a88c7a57bdd899e650d5b954d81abea5","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:22+07:00"},{"Sha1":"ed99851d68901fe8f65a48340cce579ad34e5016","Message":"complete baocaots theo ngành\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:16+07:00"},{"Sha1":"660119ead1a21161e8bb238002943484bcaedc81","Message":"update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-19T13:38:23+07:00"}],"HeadCommit":{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/23232f7d8ef875160cd81cdbb25f43554066067c...a2a88424d7babb49292acfd12b209f68ff9ac909","Len":9}', 1702980312); INSERT INTO public.action VALUES (752, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},{"Sha1":"139855ba53afe44af7d772d9324e855bd821eccd","Message":"thêm [TrinhDoDaoTao_Id] vào [QLLD_DM_NganhNgheDaoTao]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:10+07:00"},{"Sha1":"6587ec16a88c7a57bdd899e650d5b954d81abea5","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:22+07:00"},{"Sha1":"ed99851d68901fe8f65a48340cce579ad34e5016","Message":"complete baocaots theo ngành\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:16+07:00"},{"Sha1":"660119ead1a21161e8bb238002943484bcaedc81","Message":"update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-19T13:38:23+07:00"}],"HeadCommit":{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/23232f7d8ef875160cd81cdbb25f43554066067c...a2a88424d7babb49292acfd12b209f68ff9ac909","Len":9}', 1702980312); INSERT INTO public.action VALUES (753, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},{"Sha1":"139855ba53afe44af7d772d9324e855bd821eccd","Message":"thêm [TrinhDoDaoTao_Id] vào [QLLD_DM_NganhNgheDaoTao]\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:10+07:00"},{"Sha1":"6587ec16a88c7a57bdd899e650d5b954d81abea5","Message":"Merge branch ''main'' of gitlab.com:quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:22+07:00"},{"Sha1":"ed99851d68901fe8f65a48340cce579ad34e5016","Message":"complete baocaots theo ngành\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-19T16:37:16+07:00"},{"Sha1":"660119ead1a21161e8bb238002943484bcaedc81","Message":"update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-19T13:38:23+07:00"}],"HeadCommit":{"Sha1":"a2a88424d7babb49292acfd12b209f68ff9ac909","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-19T16:39:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/23232f7d8ef875160cd81cdbb25f43554066067c...a2a88424d7babb49292acfd12b209f68ff9ac909","Len":9}', 1702980312); INSERT INTO public.action VALUES (754, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},{"Sha1":"14bfa86414984fefecda22d13c5772d49c05b303","Message":"thêm LoaiCoSoGDNN\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:47:58+07:00"},{"Sha1":"7e087bfa66507baa0eb92a29f0ec2632374e95d1","Message":"update import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-20T10:46:08+07:00"}],"HeadCommit":{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/a2a88424d7babb49292acfd12b209f68ff9ac909...93959f6f02a7afed1e27377a3dae580cb6af3fd1","Len":3}', 1703068511); INSERT INTO public.action VALUES (755, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},{"Sha1":"14bfa86414984fefecda22d13c5772d49c05b303","Message":"thêm LoaiCoSoGDNN\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:47:58+07:00"},{"Sha1":"7e087bfa66507baa0eb92a29f0ec2632374e95d1","Message":"update import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-20T10:46:08+07:00"}],"HeadCommit":{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/a2a88424d7babb49292acfd12b209f68ff9ac909...93959f6f02a7afed1e27377a3dae580cb6af3fd1","Len":3}', 1703068511); INSERT INTO public.action VALUES (761, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"}],"HeadCommit":{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},"CompareURL":"binh-dinh-f1/website/compare/6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746...7f7b4d64ef3e449abfeae220da08befe754154f7","Len":2}', 1703078112); INSERT INTO public.action VALUES (862, 11, 11, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733100); INSERT INTO public.action VALUES (756, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},{"Sha1":"14bfa86414984fefecda22d13c5772d49c05b303","Message":"thêm LoaiCoSoGDNN\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:47:58+07:00"},{"Sha1":"7e087bfa66507baa0eb92a29f0ec2632374e95d1","Message":"update import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-20T10:46:08+07:00"}],"HeadCommit":{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/a2a88424d7babb49292acfd12b209f68ff9ac909...93959f6f02a7afed1e27377a3dae580cb6af3fd1","Len":3}', 1703068511); INSERT INTO public.action VALUES (757, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},{"Sha1":"14bfa86414984fefecda22d13c5772d49c05b303","Message":"thêm LoaiCoSoGDNN\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:47:58+07:00"},{"Sha1":"7e087bfa66507baa0eb92a29f0ec2632374e95d1","Message":"update import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-20T10:46:08+07:00"}],"HeadCommit":{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/a2a88424d7babb49292acfd12b209f68ff9ac909...93959f6f02a7afed1e27377a3dae580cb6af3fd1","Len":3}', 1703068511); INSERT INTO public.action VALUES (758, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},{"Sha1":"14bfa86414984fefecda22d13c5772d49c05b303","Message":"thêm LoaiCoSoGDNN\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:47:58+07:00"},{"Sha1":"7e087bfa66507baa0eb92a29f0ec2632374e95d1","Message":"update import học viên\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-20T10:46:08+07:00"}],"HeadCommit":{"Sha1":"93959f6f02a7afed1e27377a3dae580cb6af3fd1","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-20T13:48:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/a2a88424d7babb49292acfd12b209f68ff9ac909...93959f6f02a7afed1e27377a3dae580cb6af3fd1","Len":3}', 1703068511); INSERT INTO public.action VALUES (759, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"}],"HeadCommit":{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},"CompareURL":"binh-dinh-f1/website/compare/6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746...7f7b4d64ef3e449abfeae220da08befe754154f7","Len":2}', 1703078112); INSERT INTO public.action VALUES (760, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"}],"HeadCommit":{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},"CompareURL":"binh-dinh-f1/website/compare/6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746...7f7b4d64ef3e449abfeae220da08befe754154f7","Len":2}', 1703078112); INSERT INTO public.action VALUES (772, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"},"CompareURL":"binh-dinh-f1/website/compare/50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f...cc2ba7984c996de04607bf68b220fba28c67ec04","Len":1}', 1703166312); INSERT INTO public.action VALUES (863, 14, 11, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733100); INSERT INTO public.action VALUES (864, 1, 11, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733100); INSERT INTO public.action VALUES (762, 13, 18, 13, 17, 0, false, 'refs/heads/hoang-dev', false, '{"Commits":[{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"},{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"},{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"}],"HeadCommit":{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"},"CompareURL":"binh-dinh-f1/website/compare/fefd962a14f222715a4da9ffb70c72ba14bfed2e...0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Len":19}', 1703078113); INSERT INTO public.action VALUES (763, 1, 18, 13, 17, 0, false, 'refs/heads/hoang-dev', false, '{"Commits":[{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"},{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"},{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"}],"HeadCommit":{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"},"CompareURL":"binh-dinh-f1/website/compare/fefd962a14f222715a4da9ffb70c72ba14bfed2e...0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Len":19}', 1703078113); INSERT INTO public.action VALUES (764, 4, 18, 13, 17, 0, false, 'refs/heads/hoang-dev', false, '{"Commits":[{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"},{"Sha1":"6517ecb3b1d7dd36b48a7abfe1fb0b31d245b746","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!203","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T02:42:46Z"},{"Sha1":"50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-18T09:40:09+07:00"},{"Sha1":"d3aa3cc3766957108ad87dd140e32b05fd78c8d2","Message":"Merge branch ''dong-dev'' into ''develop''\n\nopengraph image\n\nSee merge request binh-dinh-f1/binhdinhf1-website!201","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T09:45:30Z"},{"Sha1":"25e70940cbc363af75aa74e553ca316c2fd5e6d8","Message":"opengraph image\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-15T16:44:30+07:00"}],"HeadCommit":{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"},"CompareURL":"binh-dinh-f1/website/compare/fefd962a14f222715a4da9ffb70c72ba14bfed2e...0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Len":19}', 1703078113); INSERT INTO public.action VALUES (765, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e5b04ae2899501d610120d20c6da5105bbfde55d","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!206","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:12:12Z"},{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"}],"HeadCommit":{"Sha1":"e5b04ae2899501d610120d20c6da5105bbfde55d","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!206","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:12:12Z"},"CompareURL":"binh-dinh-f1/website/compare/80a264dfb3cdf734dfa3e7d342d44ee124af37eb...e5b04ae2899501d610120d20c6da5105bbfde55d","Len":3}', 1703078115); INSERT INTO public.action VALUES (865, 5, 11, 11, 21, 0, false, '', false, '24|add bao cao tuyen sinh', 1703733100); INSERT INTO public.action VALUES (1111, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/194/merge', false, '', 1704165638); INSERT INTO public.action VALUES (1112, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/194/merge', false, '', 1704165638); INSERT INTO public.action VALUES (1152, 5, 7, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247790); INSERT INTO public.action VALUES (766, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e5b04ae2899501d610120d20c6da5105bbfde55d","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!206","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:12:12Z"},{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"}],"HeadCommit":{"Sha1":"e5b04ae2899501d610120d20c6da5105bbfde55d","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!206","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:12:12Z"},"CompareURL":"binh-dinh-f1/website/compare/80a264dfb3cdf734dfa3e7d342d44ee124af37eb...e5b04ae2899501d610120d20c6da5105bbfde55d","Len":3}', 1703078115); INSERT INTO public.action VALUES (767, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e5b04ae2899501d610120d20c6da5105bbfde55d","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!206","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:12:12Z"},{"Sha1":"7f7b4d64ef3e449abfeae220da08befe754154f7","Message":"Merge branch ''hoang-dev'' into ''develop''\n\nchange social link\n\nSee merge request binh-dinh-f1/binhdinhf1-website!205","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:11:58Z"},{"Sha1":"0e8975dc866ce5aaaaa26e55709615ca6ec876ec","Message":"change social link\n","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T14:10:51+07:00"}],"HeadCommit":{"Sha1":"e5b04ae2899501d610120d20c6da5105bbfde55d","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!206","AuthorEmail":"mathanhhoang2506@gmail.com","AuthorName":"mathanhhoang","CommitterEmail":"mathanhhoang2506@gmail.com","CommitterName":"mathanhhoang","Timestamp":"2023-12-20T07:12:12Z"},"CompareURL":"binh-dinh-f1/website/compare/80a264dfb3cdf734dfa3e7d342d44ee124af37eb...e5b04ae2899501d610120d20c6da5105bbfde55d","Len":3}', 1703078115); INSERT INTO public.action VALUES (768, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},"CompareURL":"binh-dinh-f1/website/compare/7f7b4d64ef3e449abfeae220da08befe754154f7...4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Len":2}', 1703166311); INSERT INTO public.action VALUES (769, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},"CompareURL":"binh-dinh-f1/website/compare/7f7b4d64ef3e449abfeae220da08befe754154f7...4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Len":2}', 1703166311); INSERT INTO public.action VALUES (770, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},"CompareURL":"binh-dinh-f1/website/compare/7f7b4d64ef3e449abfeae220da08befe754154f7...4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Len":2}', 1703166311); INSERT INTO public.action VALUES (771, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"},"CompareURL":"binh-dinh-f1/website/compare/50da9a3f4cffbedee0ef7ed2fe68fa2a48d35b6f...cc2ba7984c996de04607bf68b220fba28c67ec04","Len":1}', 1703166312); INSERT INTO public.action VALUES (883, 11, 11, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749813); INSERT INTO public.action VALUES (884, 14, 11, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749813); INSERT INTO public.action VALUES (885, 1, 11, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749813); INSERT INTO public.action VALUES (886, 5, 11, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749813); INSERT INTO public.action VALUES (774, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"30bf4ff4756bcc1b7811d628cf042cb550e703ad","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!208","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:45Z"},{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"30bf4ff4756bcc1b7811d628cf042cb550e703ad","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!208","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:45Z"},"CompareURL":"binh-dinh-f1/website/compare/e5b04ae2899501d610120d20c6da5105bbfde55d...30bf4ff4756bcc1b7811d628cf042cb550e703ad","Len":3}', 1703166313); INSERT INTO public.action VALUES (775, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"30bf4ff4756bcc1b7811d628cf042cb550e703ad","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!208","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:45Z"},{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"30bf4ff4756bcc1b7811d628cf042cb550e703ad","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!208","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:45Z"},"CompareURL":"binh-dinh-f1/website/compare/e5b04ae2899501d610120d20c6da5105bbfde55d...30bf4ff4756bcc1b7811d628cf042cb550e703ad","Len":3}', 1703166313); INSERT INTO public.action VALUES (776, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"30bf4ff4756bcc1b7811d628cf042cb550e703ad","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!208","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:45Z"},{"Sha1":"4bd2e42b2f2059d7c13362e981e44c37aaf05a98","Message":"Merge branch ''dong-dev'' into ''develop''\n\nrefactor code\n\nSee merge request binh-dinh-f1/binhdinhf1-website!207","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:18Z"},{"Sha1":"cc2ba7984c996de04607bf68b220fba28c67ec04","Message":"refactor code\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T16:33:37+07:00"}],"HeadCommit":{"Sha1":"30bf4ff4756bcc1b7811d628cf042cb550e703ad","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!208","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-21T09:36:45Z"},"CompareURL":"binh-dinh-f1/website/compare/e5b04ae2899501d610120d20c6da5105bbfde55d...30bf4ff4756bcc1b7811d628cf042cb550e703ad","Len":3}', 1703166313); INSERT INTO public.action VALUES (777, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},{"Sha1":"c74471659d5d2cd722c2e96f2cc256f79ca1e3a9","Message":"update download excel\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T09:58:28+07:00"}],"HeadCommit":{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/93959f6f02a7afed1e27377a3dae580cb6af3fd1...167c6384026573f73879f1a558f396a60dbe7ace","Len":2}', 1703215511); INSERT INTO public.action VALUES (778, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},{"Sha1":"c74471659d5d2cd722c2e96f2cc256f79ca1e3a9","Message":"update download excel\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T09:58:28+07:00"}],"HeadCommit":{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/93959f6f02a7afed1e27377a3dae580cb6af3fd1...167c6384026573f73879f1a558f396a60dbe7ace","Len":2}', 1703215511); INSERT INTO public.action VALUES (779, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},{"Sha1":"c74471659d5d2cd722c2e96f2cc256f79ca1e3a9","Message":"update download excel\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T09:58:28+07:00"}],"HeadCommit":{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/93959f6f02a7afed1e27377a3dae580cb6af3fd1...167c6384026573f73879f1a558f396a60dbe7ace","Len":2}', 1703215511); INSERT INTO public.action VALUES (896, 11, 7, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757400); INSERT INTO public.action VALUES (897, 14, 7, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757400); INSERT INTO public.action VALUES (898, 1, 7, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757400); INSERT INTO public.action VALUES (899, 5, 7, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757400); INSERT INTO public.action VALUES (900, 16, 7, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757400); INSERT INTO public.action VALUES (780, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},{"Sha1":"c74471659d5d2cd722c2e96f2cc256f79ca1e3a9","Message":"update download excel\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T09:58:28+07:00"}],"HeadCommit":{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/93959f6f02a7afed1e27377a3dae580cb6af3fd1...167c6384026573f73879f1a558f396a60dbe7ace","Len":2}', 1703215511); INSERT INTO public.action VALUES (781, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},{"Sha1":"c74471659d5d2cd722c2e96f2cc256f79ca1e3a9","Message":"update download excel\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T09:58:28+07:00"}],"HeadCommit":{"Sha1":"167c6384026573f73879f1a558f396a60dbe7ace","Message":"update DB\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:21:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/93959f6f02a7afed1e27377a3dae580cb6af3fd1...167c6384026573f73879f1a558f396a60dbe7ace","Len":2}', 1703215511); INSERT INTO public.action VALUES (782, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c...2550e5ce7cff1b368a88b7e07aa9191935e579bc","Len":1}', 1703217040); INSERT INTO public.action VALUES (783, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c...2550e5ce7cff1b368a88b7e07aa9191935e579bc","Len":1}', 1703217040); INSERT INTO public.action VALUES (784, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c...2550e5ce7cff1b368a88b7e07aa9191935e579bc","Len":1}', 1703217040); INSERT INTO public.action VALUES (785, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c...2550e5ce7cff1b368a88b7e07aa9191935e579bc","Len":1}', 1703217040); INSERT INTO public.action VALUES (786, 11, 7, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217100); INSERT INTO public.action VALUES (787, 14, 7, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217100); INSERT INTO public.action VALUES (788, 1, 7, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217100); INSERT INTO public.action VALUES (789, 5, 7, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217100); INSERT INTO public.action VALUES (790, 11, 11, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217118); INSERT INTO public.action VALUES (791, 14, 11, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217118); INSERT INTO public.action VALUES (792, 1, 11, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217118); INSERT INTO public.action VALUES (793, 5, 11, 11, 21, 0, false, '', false, '22|update QLLD_NhuCauTuyenSinh', 1703217118); INSERT INTO public.action VALUES (809, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},"CompareURL":"binh-dinh-f1/website/compare/4bd2e42b2f2059d7c13362e981e44c37aaf05a98...53c52ec0d6cfe41371cab3639787851006ad2433","Len":2}', 1703518839); INSERT INTO public.action VALUES (901, 11, 11, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757415); INSERT INTO public.action VALUES (794, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/822137c72238e461cd8224bd07bf7738c907aeed...ce4364a6eea788d602dd8008bf176dad3cee591f","Len":2}', 1703217119); INSERT INTO public.action VALUES (795, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/822137c72238e461cd8224bd07bf7738c907aeed...ce4364a6eea788d602dd8008bf176dad3cee591f","Len":2}', 1703217119); INSERT INTO public.action VALUES (796, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/822137c72238e461cd8224bd07bf7738c907aeed...ce4364a6eea788d602dd8008bf176dad3cee591f","Len":2}', 1703217119); INSERT INTO public.action VALUES (797, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},{"Sha1":"2550e5ce7cff1b368a88b7e07aa9191935e579bc","Message":"update QLLD_NhuCauTuyenSinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-22T10:50:27+07:00"}],"HeadCommit":{"Sha1":"ce4364a6eea788d602dd8008bf176dad3cee591f","Message":"Merge pull request ''update QLLD_NhuCauTuyenSinh'' (#22) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/22\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-22T10:51:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/822137c72238e461cd8224bd07bf7738c907aeed...ce4364a6eea788d602dd8008bf176dad3cee591f","Len":2}', 1703217119); INSERT INTO public.action VALUES (798, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},{"Sha1":"3ca3cbda85d99140da1a89dc3aca09cdb0a32a73","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:50:36+07:00"},{"Sha1":"0e8a28b9a71c4be7d93de74cf35fcd3d80d1cae0","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:56+07:00"},{"Sha1":"b7bd1c1683fb4daae97ef956da0a2a8acb667b18","Message":"lay ds nganh nghe da phe duyet\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:26+07:00"}],"HeadCommit":{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/167c6384026573f73879f1a558f396a60dbe7ace...2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Len":4}', 1703244640); INSERT INTO public.action VALUES (822, 11, 7, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581441); INSERT INTO public.action VALUES (823, 14, 7, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581441); INSERT INTO public.action VALUES (824, 1, 7, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581441); INSERT INTO public.action VALUES (825, 5, 7, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581441); INSERT INTO public.action VALUES (826, 11, 11, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581456); INSERT INTO public.action VALUES (827, 14, 11, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581456); INSERT INTO public.action VALUES (828, 1, 11, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581456); INSERT INTO public.action VALUES (829, 5, 11, 11, 21, 0, false, '', false, '23|add ke hoach tuyen sinh', 1703581456); INSERT INTO public.action VALUES (799, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},{"Sha1":"3ca3cbda85d99140da1a89dc3aca09cdb0a32a73","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:50:36+07:00"},{"Sha1":"0e8a28b9a71c4be7d93de74cf35fcd3d80d1cae0","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:56+07:00"},{"Sha1":"b7bd1c1683fb4daae97ef956da0a2a8acb667b18","Message":"lay ds nganh nghe da phe duyet\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:26+07:00"}],"HeadCommit":{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/167c6384026573f73879f1a558f396a60dbe7ace...2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Len":4}', 1703244641); INSERT INTO public.action VALUES (800, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},{"Sha1":"3ca3cbda85d99140da1a89dc3aca09cdb0a32a73","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:50:36+07:00"},{"Sha1":"0e8a28b9a71c4be7d93de74cf35fcd3d80d1cae0","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:56+07:00"},{"Sha1":"b7bd1c1683fb4daae97ef956da0a2a8acb667b18","Message":"lay ds nganh nghe da phe duyet\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:26+07:00"}],"HeadCommit":{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/167c6384026573f73879f1a558f396a60dbe7ace...2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Len":4}', 1703244641); INSERT INTO public.action VALUES (801, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},{"Sha1":"3ca3cbda85d99140da1a89dc3aca09cdb0a32a73","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:50:36+07:00"},{"Sha1":"0e8a28b9a71c4be7d93de74cf35fcd3d80d1cae0","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:56+07:00"},{"Sha1":"b7bd1c1683fb4daae97ef956da0a2a8acb667b18","Message":"lay ds nganh nghe da phe duyet\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:26+07:00"}],"HeadCommit":{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/167c6384026573f73879f1a558f396a60dbe7ace...2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Len":4}', 1703244641); INSERT INTO public.action VALUES (802, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},{"Sha1":"3ca3cbda85d99140da1a89dc3aca09cdb0a32a73","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:50:36+07:00"},{"Sha1":"0e8a28b9a71c4be7d93de74cf35fcd3d80d1cae0","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:56+07:00"},{"Sha1":"b7bd1c1683fb4daae97ef956da0a2a8acb667b18","Message":"lay ds nganh nghe da phe duyet\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T10:49:26+07:00"}],"HeadCommit":{"Sha1":"2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-22T14:54:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/167c6384026573f73879f1a558f396a60dbe7ace...2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727","Len":4}', 1703244641); INSERT INTO public.action VALUES (803, 13, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15aab07c22634b263f541cf2a5740d0fbc6e18d7","Message":"feat: result 70%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-25T08:08:26+07:00"}],"HeadCommit":{"Sha1":"15aab07c22634b263f541cf2a5740d0fbc6e18d7","Message":"feat: result 70%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-25T08:08:26+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/4ca0b88dfe08c31473b5b977456d58ea124e9e18...15aab07c22634b263f541cf2a5740d0fbc6e18d7","Len":1}', 1703489443); INSERT INTO public.action VALUES (804, 1, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15aab07c22634b263f541cf2a5740d0fbc6e18d7","Message":"feat: result 70%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-25T08:08:26+07:00"}],"HeadCommit":{"Sha1":"15aab07c22634b263f541cf2a5740d0fbc6e18d7","Message":"feat: result 70%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-25T08:08:26+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/4ca0b88dfe08c31473b5b977456d58ea124e9e18...15aab07c22634b263f541cf2a5740d0fbc6e18d7","Len":1}', 1703489443); INSERT INTO public.action VALUES (805, 4, 18, 13, 18, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15aab07c22634b263f541cf2a5740d0fbc6e18d7","Message":"feat: result 70%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-25T08:08:26+07:00"}],"HeadCommit":{"Sha1":"15aab07c22634b263f541cf2a5740d0fbc6e18d7","Message":"feat: result 70%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2023-12-25T08:08:26+07:00"},"CompareURL":"binh-dinh-f1/admin/compare/4ca0b88dfe08c31473b5b977456d58ea124e9e18...15aab07c22634b263f541cf2a5740d0fbc6e18d7","Len":1}', 1703489443); INSERT INTO public.action VALUES (810, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},"CompareURL":"binh-dinh-f1/website/compare/4bd2e42b2f2059d7c13362e981e44c37aaf05a98...53c52ec0d6cfe41371cab3639787851006ad2433","Len":2}', 1703518839); INSERT INTO public.action VALUES (811, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},"CompareURL":"binh-dinh-f1/website/compare/4bd2e42b2f2059d7c13362e981e44c37aaf05a98...53c52ec0d6cfe41371cab3639787851006ad2433","Len":2}', 1703518839); INSERT INTO public.action VALUES (812, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"},"CompareURL":"binh-dinh-f1/website/compare/cc2ba7984c996de04607bf68b220fba28c67ec04...3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Len":1}', 1703518840); INSERT INTO public.action VALUES (813, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"},"CompareURL":"binh-dinh-f1/website/compare/cc2ba7984c996de04607bf68b220fba28c67ec04...3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Len":1}', 1703518840); INSERT INTO public.action VALUES (814, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"},"CompareURL":"binh-dinh-f1/website/compare/cc2ba7984c996de04607bf68b220fba28c67ec04...3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Len":1}', 1703518840); INSERT INTO public.action VALUES (815, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!210","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:27Z"},{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!210","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:27Z"},"CompareURL":"binh-dinh-f1/website/compare/30bf4ff4756bcc1b7811d628cf042cb550e703ad...24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Len":3}', 1703518841); INSERT INTO public.action VALUES (816, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!210","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:27Z"},{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!210","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:27Z"},"CompareURL":"binh-dinh-f1/website/compare/30bf4ff4756bcc1b7811d628cf042cb550e703ad...24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Len":3}', 1703518841); INSERT INTO public.action VALUES (902, 14, 11, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757415); INSERT INTO public.action VALUES (903, 1, 11, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757415); INSERT INTO public.action VALUES (904, 5, 11, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757415); INSERT INTO public.action VALUES (817, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!210","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:27Z"},{"Sha1":"53c52ec0d6cfe41371cab3639787851006ad2433","Message":"Merge branch ''dong-dev'' into ''develop''\n\nfix count down\n\nSee merge request binh-dinh-f1/binhdinhf1-website!209","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:07Z"},{"Sha1":"3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba","Message":"fix count down\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T15:13:46+07:00"}],"HeadCommit":{"Sha1":"24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!210","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2023-12-25T08:29:27Z"},"CompareURL":"binh-dinh-f1/website/compare/30bf4ff4756bcc1b7811d628cf042cb550e703ad...24a94ddb7448d419edc28e8d69dfcb73ca0edbd1","Len":3}', 1703518841); INSERT INTO public.action VALUES (818, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2550e5ce7cff1b368a88b7e07aa9191935e579bc...3224d74b3cd0c13e306f28eda021073d097d8b21","Len":1}', 1703581398); INSERT INTO public.action VALUES (819, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2550e5ce7cff1b368a88b7e07aa9191935e579bc...3224d74b3cd0c13e306f28eda021073d097d8b21","Len":1}', 1703581398); INSERT INTO public.action VALUES (820, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2550e5ce7cff1b368a88b7e07aa9191935e579bc...3224d74b3cd0c13e306f28eda021073d097d8b21","Len":1}', 1703581398); INSERT INTO public.action VALUES (821, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2550e5ce7cff1b368a88b7e07aa9191935e579bc...3224d74b3cd0c13e306f28eda021073d097d8b21","Len":1}', 1703581398); INSERT INTO public.action VALUES (1449, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/568299bc2fd76e6410ce6c4a6115e561e1c1aa38...a83c5eae96d22b60f72fa4c1a88aed04b88835af","Len":2}', 1704428657); INSERT INTO public.action VALUES (1450, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/568299bc2fd76e6410ce6c4a6115e561e1c1aa38...a83c5eae96d22b60f72fa4c1a88aed04b88835af","Len":2}', 1704428657); INSERT INTO public.action VALUES (830, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ce4364a6eea788d602dd8008bf176dad3cee591f...b20e2920ff823bba807cf855b884c109ccb833e3","Len":2}', 1703581457); INSERT INTO public.action VALUES (831, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ce4364a6eea788d602dd8008bf176dad3cee591f...b20e2920ff823bba807cf855b884c109ccb833e3","Len":2}', 1703581457); INSERT INTO public.action VALUES (832, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ce4364a6eea788d602dd8008bf176dad3cee591f...b20e2920ff823bba807cf855b884c109ccb833e3","Len":2}', 1703581457); INSERT INTO public.action VALUES (833, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},{"Sha1":"3224d74b3cd0c13e306f28eda021073d097d8b21","Message":"add ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-26T16:03:08+07:00"}],"HeadCommit":{"Sha1":"b20e2920ff823bba807cf855b884c109ccb833e3","Message":"Merge pull request ''add ke hoach tuyen sinh'' (#23) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/23\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-26T16:04:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ce4364a6eea788d602dd8008bf176dad3cee591f...b20e2920ff823bba807cf855b884c109ccb833e3","Len":2}', 1703581457); INSERT INTO public.action VALUES (834, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},{"Sha1":"1ada4c231214a8e12d2ca1a8f440cd5529b15b00","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:41+07:00"},{"Sha1":"a67e89c227d349050aba7f15a7d50b22747ff3be","Message":"baocaoTNtheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:36+07:00"},{"Sha1":"5dae462f15c3050ac76e516f37f9747d6375be97","Message":"sửa db QLLD_KeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-26T14:09:02+07:00"}],"HeadCommit":{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727...3595c2d56992d933a4bce22f555a230eeeee4d5e","Len":4}', 1703597440); INSERT INTO public.action VALUES (841, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"}],"HeadCommit":{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"},"CompareURL":"Khieu-nai/backend/compare/5983684e9d5976b8a5f1c302230691faf2cbcd24...210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Len":1}', 1703640419); INSERT INTO public.action VALUES (835, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},{"Sha1":"1ada4c231214a8e12d2ca1a8f440cd5529b15b00","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:41+07:00"},{"Sha1":"a67e89c227d349050aba7f15a7d50b22747ff3be","Message":"baocaoTNtheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:36+07:00"},{"Sha1":"5dae462f15c3050ac76e516f37f9747d6375be97","Message":"sửa db QLLD_KeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-26T14:09:02+07:00"}],"HeadCommit":{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727...3595c2d56992d933a4bce22f555a230eeeee4d5e","Len":4}', 1703597440); INSERT INTO public.action VALUES (836, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},{"Sha1":"1ada4c231214a8e12d2ca1a8f440cd5529b15b00","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:41+07:00"},{"Sha1":"a67e89c227d349050aba7f15a7d50b22747ff3be","Message":"baocaoTNtheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:36+07:00"},{"Sha1":"5dae462f15c3050ac76e516f37f9747d6375be97","Message":"sửa db QLLD_KeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-26T14:09:02+07:00"}],"HeadCommit":{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727...3595c2d56992d933a4bce22f555a230eeeee4d5e","Len":4}', 1703597440); INSERT INTO public.action VALUES (837, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},{"Sha1":"1ada4c231214a8e12d2ca1a8f440cd5529b15b00","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:41+07:00"},{"Sha1":"a67e89c227d349050aba7f15a7d50b22747ff3be","Message":"baocaoTNtheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:36+07:00"},{"Sha1":"5dae462f15c3050ac76e516f37f9747d6375be97","Message":"sửa db QLLD_KeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-26T14:09:02+07:00"}],"HeadCommit":{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727...3595c2d56992d933a4bce22f555a230eeeee4d5e","Len":4}', 1703597440); INSERT INTO public.action VALUES (838, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},{"Sha1":"1ada4c231214a8e12d2ca1a8f440cd5529b15b00","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:41+07:00"},{"Sha1":"a67e89c227d349050aba7f15a7d50b22747ff3be","Message":"baocaoTNtheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:08:36+07:00"},{"Sha1":"5dae462f15c3050ac76e516f37f9747d6375be97","Message":"sửa db QLLD_KeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-26T14:09:02+07:00"}],"HeadCommit":{"Sha1":"3595c2d56992d933a4bce22f555a230eeeee4d5e","Message":"Update import\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-26T15:38:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2925bbd0e6b7ea8ade7dfa1bb09fe453a5411727...3595c2d56992d933a4bce22f555a230eeeee4d5e","Len":4}', 1703597440); INSERT INTO public.action VALUES (839, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"}],"HeadCommit":{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"},"CompareURL":"Khieu-nai/backend/compare/5983684e9d5976b8a5f1c302230691faf2cbcd24...210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Len":1}', 1703640419); INSERT INTO public.action VALUES (840, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"}],"HeadCommit":{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"},"CompareURL":"Khieu-nai/backend/compare/5983684e9d5976b8a5f1c302230691faf2cbcd24...210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Len":1}', 1703640419); INSERT INTO public.action VALUES (905, 16, 11, 11, 21, 0, false, '', false, '26|add chi tieu tuyen sinh', 1703757415); INSERT INTO public.action VALUES (843, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"}],"HeadCommit":{"Sha1":"210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Message":"update\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T08:26:43+07:00"},"CompareURL":"Khieu-nai/backend/compare/5983684e9d5976b8a5f1c302230691faf2cbcd24...210170e2b5fe572203bf3a722f6b9a5bcb3cbcac","Len":1}', 1703640419); INSERT INTO public.action VALUES (844, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"}],"HeadCommit":{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"},"CompareURL":"Khieu-nai/backend/compare/210170e2b5fe572203bf3a722f6b9a5bcb3cbcac...6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Len":1}', 1703665436); INSERT INTO public.action VALUES (845, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"}],"HeadCommit":{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"},"CompareURL":"Khieu-nai/backend/compare/210170e2b5fe572203bf3a722f6b9a5bcb3cbcac...6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Len":1}', 1703665436); INSERT INTO public.action VALUES (846, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"}],"HeadCommit":{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"},"CompareURL":"Khieu-nai/backend/compare/210170e2b5fe572203bf3a722f6b9a5bcb3cbcac...6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Len":1}', 1703665436); INSERT INTO public.action VALUES (847, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"}],"HeadCommit":{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"},"CompareURL":"Khieu-nai/backend/compare/210170e2b5fe572203bf3a722f6b9a5bcb3cbcac...6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Len":1}', 1703665436); INSERT INTO public.action VALUES (848, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"}],"HeadCommit":{"Sha1":"6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-27T15:23:45+07:00"},"CompareURL":"Khieu-nai/backend/compare/210170e2b5fe572203bf3a722f6b9a5bcb3cbcac...6f607f73f68ad7ddbf04d1d261ff5647a6f64acb","Len":1}', 1703665436); INSERT INTO public.action VALUES (849, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"}],"HeadCommit":{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3595c2d56992d933a4bce22f555a230eeeee4d5e...de5623c80a3650844222503645efc2a12a99a504","Len":1}', 1703685639); INSERT INTO public.action VALUES (850, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"}],"HeadCommit":{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3595c2d56992d933a4bce22f555a230eeeee4d5e...de5623c80a3650844222503645efc2a12a99a504","Len":1}', 1703685639); INSERT INTO public.action VALUES (851, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"}],"HeadCommit":{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3595c2d56992d933a4bce22f555a230eeeee4d5e...de5623c80a3650844222503645efc2a12a99a504","Len":1}', 1703685639); INSERT INTO public.action VALUES (852, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"}],"HeadCommit":{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3595c2d56992d933a4bce22f555a230eeeee4d5e...de5623c80a3650844222503645efc2a12a99a504","Len":1}', 1703685639); INSERT INTO public.action VALUES (1134, 11, 11, 11, 21, 0, false, '', false, '29|thinh', 1704247144); INSERT INTO public.action VALUES (1135, 14, 11, 11, 21, 0, false, '', false, '29|thinh', 1704247144); INSERT INTO public.action VALUES (1136, 1, 11, 11, 21, 0, false, '', false, '29|thinh', 1704247144); INSERT INTO public.action VALUES (853, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"}],"HeadCommit":{"Sha1":"de5623c80a3650844222503645efc2a12a99a504","Message":"update baocaoTntheonganhnghe\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-27T16:28:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3595c2d56992d933a4bce22f555a230eeeee4d5e...de5623c80a3650844222503645efc2a12a99a504","Len":1}', 1703685639); INSERT INTO public.action VALUES (854, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3224d74b3cd0c13e306f28eda021073d097d8b21...dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Len":1}', 1703732991); INSERT INTO public.action VALUES (855, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3224d74b3cd0c13e306f28eda021073d097d8b21...dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Len":1}', 1703732991); INSERT INTO public.action VALUES (856, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3224d74b3cd0c13e306f28eda021073d097d8b21...dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Len":1}', 1703732991); INSERT INTO public.action VALUES (857, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3224d74b3cd0c13e306f28eda021073d097d8b21...dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Len":1}', 1703732991); INSERT INTO public.action VALUES (866, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b20e2920ff823bba807cf855b884c109ccb833e3...3d25992786d4defa328177d93bd82a78507ca708","Len":2}', 1703733102); INSERT INTO public.action VALUES (867, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b20e2920ff823bba807cf855b884c109ccb833e3...3d25992786d4defa328177d93bd82a78507ca708","Len":2}', 1703733102); INSERT INTO public.action VALUES (970, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"}],"HeadCommit":{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"},"CompareURL":"Khieu-nai/backend/compare/6f607f73f68ad7ddbf04d1d261ff5647a6f64acb...cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Len":1}', 1703830809); INSERT INTO public.action VALUES (868, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b20e2920ff823bba807cf855b884c109ccb833e3...3d25992786d4defa328177d93bd82a78507ca708","Len":2}', 1703733102); INSERT INTO public.action VALUES (869, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},{"Sha1":"dcabae26407e5a8ebe3ee60dae45c490ebf05dc2","Message":"add bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T10:09:04+07:00"}],"HeadCommit":{"Sha1":"3d25992786d4defa328177d93bd82a78507ca708","Message":"Merge pull request ''add bao cao tuyen sinh'' (#24) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/24\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T10:11:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b20e2920ff823bba807cf855b884c109ccb833e3...3d25992786d4defa328177d93bd82a78507ca708","Len":2}', 1703733102); INSERT INTO public.action VALUES (870, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},{"Sha1":"df5df940c784913e84b71510dd575129e966dfe9","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:47:47+07:00"},{"Sha1":"7c42e2b030093ce22183d65fd945530fb74e85b5","Message":"nhập lại bảng kế hoạch và chỉ tiêu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:45:47+07:00"}],"HeadCommit":{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/de5623c80a3650844222503645efc2a12a99a504...c3220bfb8e88fd13b65f3b989e212931e0dba376","Len":3}', 1703744439); INSERT INTO public.action VALUES (871, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},{"Sha1":"df5df940c784913e84b71510dd575129e966dfe9","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:47:47+07:00"},{"Sha1":"7c42e2b030093ce22183d65fd945530fb74e85b5","Message":"nhập lại bảng kế hoạch và chỉ tiêu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:45:47+07:00"}],"HeadCommit":{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/de5623c80a3650844222503645efc2a12a99a504...c3220bfb8e88fd13b65f3b989e212931e0dba376","Len":3}', 1703744439); INSERT INTO public.action VALUES (872, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},{"Sha1":"df5df940c784913e84b71510dd575129e966dfe9","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:47:47+07:00"},{"Sha1":"7c42e2b030093ce22183d65fd945530fb74e85b5","Message":"nhập lại bảng kế hoạch và chỉ tiêu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:45:47+07:00"}],"HeadCommit":{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/de5623c80a3650844222503645efc2a12a99a504...c3220bfb8e88fd13b65f3b989e212931e0dba376","Len":3}', 1703744439); INSERT INTO public.action VALUES (978, 1, 1, 1, 25, 0, false, '', false, '', 1703834671); INSERT INTO public.action VALUES (979, 6, 1, 1, 25, 0, false, '', false, '', 1703834671); INSERT INTO public.action VALUES (980, 5, 1, 1, 25, 0, false, '', false, '', 1703834671); INSERT INTO public.action VALUES (981, 1, 2, 1, 25, 0, false, '', false, 'gdt-signed', 1703834680); INSERT INTO public.action VALUES (982, 6, 2, 1, 25, 0, false, '', false, 'gdt-signed', 1703834680); INSERT INTO public.action VALUES (983, 5, 2, 1, 25, 0, false, '', false, 'gdt-signed', 1703834680); INSERT INTO public.action VALUES (873, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},{"Sha1":"df5df940c784913e84b71510dd575129e966dfe9","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:47:47+07:00"},{"Sha1":"7c42e2b030093ce22183d65fd945530fb74e85b5","Message":"nhập lại bảng kế hoạch và chỉ tiêu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:45:47+07:00"}],"HeadCommit":{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/de5623c80a3650844222503645efc2a12a99a504...c3220bfb8e88fd13b65f3b989e212931e0dba376","Len":3}', 1703744439); INSERT INTO public.action VALUES (874, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},{"Sha1":"df5df940c784913e84b71510dd575129e966dfe9","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:47:47+07:00"},{"Sha1":"7c42e2b030093ce22183d65fd945530fb74e85b5","Message":"nhập lại bảng kế hoạch và chỉ tiêu tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T10:45:47+07:00"}],"HeadCommit":{"Sha1":"c3220bfb8e88fd13b65f3b989e212931e0dba376","Message":"thêm năm tuyển sinh vào học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T11:21:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/de5623c80a3650844222503645efc2a12a99a504...c3220bfb8e88fd13b65f3b989e212931e0dba376","Len":3}', 1703744439); INSERT INTO public.action VALUES (875, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dcabae26407e5a8ebe3ee60dae45c490ebf05dc2...1686d02897942b3d60ace6745b52b898c77010f5","Len":1}', 1703749773); INSERT INTO public.action VALUES (876, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dcabae26407e5a8ebe3ee60dae45c490ebf05dc2...1686d02897942b3d60ace6745b52b898c77010f5","Len":1}', 1703749773); INSERT INTO public.action VALUES (877, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dcabae26407e5a8ebe3ee60dae45c490ebf05dc2...1686d02897942b3d60ace6745b52b898c77010f5","Len":1}', 1703749773); INSERT INTO public.action VALUES (878, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dcabae26407e5a8ebe3ee60dae45c490ebf05dc2...1686d02897942b3d60ace6745b52b898c77010f5","Len":1}', 1703749773); INSERT INTO public.action VALUES (879, 11, 7, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749798); INSERT INTO public.action VALUES (880, 14, 7, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749798); INSERT INTO public.action VALUES (881, 1, 7, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749798); INSERT INTO public.action VALUES (882, 5, 7, 11, 21, 0, false, '', false, '25|update ThuongTru_ThonXom', 1703749798); INSERT INTO public.action VALUES (1666, 16, 11, 11, 21, 0, false, '', false, '48|fix height body item menu', 1704538859); INSERT INTO public.action VALUES (1797, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/181/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1798, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/181/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1799, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/181/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1800, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/182/head', false, '', 1704577239); INSERT INTO public.action VALUES (1801, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/182/head', false, '', 1704577239); INSERT INTO public.action VALUES (887, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d25992786d4defa328177d93bd82a78507ca708...087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Len":2}', 1703749814); INSERT INTO public.action VALUES (888, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d25992786d4defa328177d93bd82a78507ca708...087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Len":2}', 1703749814); INSERT INTO public.action VALUES (889, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d25992786d4defa328177d93bd82a78507ca708...087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Len":2}', 1703749814); INSERT INTO public.action VALUES (890, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},{"Sha1":"1686d02897942b3d60ace6745b52b898c77010f5","Message":"update ThuongTru_ThonXom\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T14:49:20+07:00"}],"HeadCommit":{"Sha1":"087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Message":"Merge pull request ''update ThuongTru_ThonXom'' (#25) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/25\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T14:50:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3d25992786d4defa328177d93bd82a78507ca708...087ed25ee9fded2df43d96f7a624b301d0ed3bf0","Len":2}', 1703749814); INSERT INTO public.action VALUES (891, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1686d02897942b3d60ace6745b52b898c77010f5...146f91e88fec6c748e4378c029300694f4599df8","Len":1}', 1703757283); INSERT INTO public.action VALUES (892, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1686d02897942b3d60ace6745b52b898c77010f5...146f91e88fec6c748e4378c029300694f4599df8","Len":1}', 1703757283); INSERT INTO public.action VALUES (984, 1, 2, 1, 25, 0, false, '', false, 'GDT', 1703834692); INSERT INTO public.action VALUES (985, 6, 2, 1, 25, 0, false, '', false, 'GDT', 1703834692); INSERT INTO public.action VALUES (986, 5, 2, 1, 25, 0, false, '', false, 'GDT', 1703834692); INSERT INTO public.action VALUES (987, 1, 2, 1, 25, 0, false, '', false, 'gdt-si', 1703834698); INSERT INTO public.action VALUES (988, 6, 2, 1, 25, 0, false, '', false, 'gdt-si', 1703834698); INSERT INTO public.action VALUES (989, 5, 2, 1, 25, 0, false, '', false, 'gdt-si', 1703834698); INSERT INTO public.action VALUES (893, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1686d02897942b3d60ace6745b52b898c77010f5...146f91e88fec6c748e4378c029300694f4599df8","Len":1}', 1703757283); INSERT INTO public.action VALUES (894, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1686d02897942b3d60ace6745b52b898c77010f5...146f91e88fec6c748e4378c029300694f4599df8","Len":1}', 1703757283); INSERT INTO public.action VALUES (895, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1686d02897942b3d60ace6745b52b898c77010f5...146f91e88fec6c748e4378c029300694f4599df8","Len":1}', 1703757283); INSERT INTO public.action VALUES (906, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/087ed25ee9fded2df43d96f7a624b301d0ed3bf0...6cbac64de2f6655baf854915aac73011498c4afc","Len":2}', 1703757416); INSERT INTO public.action VALUES (907, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/087ed25ee9fded2df43d96f7a624b301d0ed3bf0...6cbac64de2f6655baf854915aac73011498c4afc","Len":2}', 1703757416); INSERT INTO public.action VALUES (908, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/087ed25ee9fded2df43d96f7a624b301d0ed3bf0...6cbac64de2f6655baf854915aac73011498c4afc","Len":2}', 1703757416); INSERT INTO public.action VALUES (916, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"}],"HeadCommit":{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c3220bfb8e88fd13b65f3b989e212931e0dba376...f25699b2b515283c5b05e4be307fc8a0bf23af8a","Len":1}', 1703773839); INSERT INTO public.action VALUES (990, 1, 5, 1, 25, 0, false, 'refs/heads/main', false, '', 1703835148); INSERT INTO public.action VALUES (909, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/087ed25ee9fded2df43d96f7a624b301d0ed3bf0...6cbac64de2f6655baf854915aac73011498c4afc","Len":2}', 1703757416); INSERT INTO public.action VALUES (910, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},{"Sha1":"146f91e88fec6c748e4378c029300694f4599df8","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-28T16:54:33+07:00"}],"HeadCommit":{"Sha1":"6cbac64de2f6655baf854915aac73011498c4afc","Message":"Merge pull request ''add chi tieu tuyen sinh'' (#26) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/26\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-28T16:56:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/087ed25ee9fded2df43d96f7a624b301d0ed3bf0...6cbac64de2f6655baf854915aac73011498c4afc","Len":2}', 1703757416); INSERT INTO public.action VALUES (911, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"}],"HeadCommit":{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c3220bfb8e88fd13b65f3b989e212931e0dba376...f25699b2b515283c5b05e4be307fc8a0bf23af8a","Len":1}', 1703773839); INSERT INTO public.action VALUES (912, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"}],"HeadCommit":{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c3220bfb8e88fd13b65f3b989e212931e0dba376...f25699b2b515283c5b05e4be307fc8a0bf23af8a","Len":1}', 1703773839); INSERT INTO public.action VALUES (913, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"}],"HeadCommit":{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c3220bfb8e88fd13b65f3b989e212931e0dba376...f25699b2b515283c5b05e4be307fc8a0bf23af8a","Len":1}', 1703773839); INSERT INTO public.action VALUES (914, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"}],"HeadCommit":{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c3220bfb8e88fd13b65f3b989e212931e0dba376...f25699b2b515283c5b05e4be307fc8a0bf23af8a","Len":1}', 1703773839); INSERT INTO public.action VALUES (915, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"}],"HeadCommit":{"Sha1":"f25699b2b515283c5b05e4be307fc8a0bf23af8a","Message":"cập nhật ngày giờ kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-28T13:44:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c3220bfb8e88fd13b65f3b989e212931e0dba376...f25699b2b515283c5b05e4be307fc8a0bf23af8a","Len":1}', 1703773839); INSERT INTO public.action VALUES (927, 11, 7, 11, 21, 0, false, '', false, '27|thinh', 1703820635); INSERT INTO public.action VALUES (928, 14, 7, 11, 21, 0, false, '', false, '27|thinh', 1703820635); INSERT INTO public.action VALUES (929, 1, 7, 11, 21, 0, false, '', false, '27|thinh', 1703820635); INSERT INTO public.action VALUES (930, 5, 7, 11, 21, 0, false, '', false, '27|thinh', 1703820635); INSERT INTO public.action VALUES (931, 16, 7, 11, 21, 0, false, '', false, '27|thinh', 1703820635); INSERT INTO public.action VALUES (932, 11, 11, 11, 21, 0, false, '', false, '27|thinh', 1703820650); INSERT INTO public.action VALUES (933, 14, 11, 11, 21, 0, false, '', false, '27|thinh', 1703820650); INSERT INTO public.action VALUES (917, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/146f91e88fec6c748e4378c029300694f4599df8...373cd26fb7e01be8e5618bf1ca310f43b25423e9","Len":1}', 1703818382); INSERT INTO public.action VALUES (918, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/146f91e88fec6c748e4378c029300694f4599df8...373cd26fb7e01be8e5618bf1ca310f43b25423e9","Len":1}', 1703818382); INSERT INTO public.action VALUES (919, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/146f91e88fec6c748e4378c029300694f4599df8...373cd26fb7e01be8e5618bf1ca310f43b25423e9","Len":1}', 1703818382); INSERT INTO public.action VALUES (920, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/146f91e88fec6c748e4378c029300694f4599df8...373cd26fb7e01be8e5618bf1ca310f43b25423e9","Len":1}', 1703818382); INSERT INTO public.action VALUES (921, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/146f91e88fec6c748e4378c029300694f4599df8...373cd26fb7e01be8e5618bf1ca310f43b25423e9","Len":1}', 1703818382); INSERT INTO public.action VALUES (922, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"}],"HeadCommit":{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/373cd26fb7e01be8e5618bf1ca310f43b25423e9...911fdad30b51628a28e001ccf1645d9d5172e84f","Len":1}', 1703820582); INSERT INTO public.action VALUES (923, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"}],"HeadCommit":{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/373cd26fb7e01be8e5618bf1ca310f43b25423e9...911fdad30b51628a28e001ccf1645d9d5172e84f","Len":1}', 1703820582); INSERT INTO public.action VALUES (924, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"}],"HeadCommit":{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/373cd26fb7e01be8e5618bf1ca310f43b25423e9...911fdad30b51628a28e001ccf1645d9d5172e84f","Len":1}', 1703820582); INSERT INTO public.action VALUES (934, 1, 11, 11, 21, 0, false, '', false, '27|thinh', 1703820650); INSERT INTO public.action VALUES (935, 5, 11, 11, 21, 0, false, '', false, '27|thinh', 1703820650); INSERT INTO public.action VALUES (936, 16, 11, 11, 21, 0, false, '', false, '27|thinh', 1703820650); INSERT INTO public.action VALUES (991, 6, 5, 1, 25, 0, false, 'refs/heads/main', false, '', 1703835148); INSERT INTO public.action VALUES (992, 5, 5, 1, 25, 0, false, 'refs/heads/main', false, '', 1703835148); INSERT INTO public.action VALUES (1137, 5, 11, 11, 21, 0, false, '', false, '29|thinh', 1704247144); INSERT INTO public.action VALUES (925, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"}],"HeadCommit":{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/373cd26fb7e01be8e5618bf1ca310f43b25423e9...911fdad30b51628a28e001ccf1645d9d5172e84f","Len":1}', 1703820582); INSERT INTO public.action VALUES (926, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"}],"HeadCommit":{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/373cd26fb7e01be8e5618bf1ca310f43b25423e9...911fdad30b51628a28e001ccf1645d9d5172e84f","Len":1}', 1703820582); INSERT INTO public.action VALUES (937, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6cbac64de2f6655baf854915aac73011498c4afc...71da43b9b4f4ec6f2aab698e1cade5906e604d35","Len":3}', 1703820651); INSERT INTO public.action VALUES (938, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6cbac64de2f6655baf854915aac73011498c4afc...71da43b9b4f4ec6f2aab698e1cade5906e604d35","Len":3}', 1703820651); INSERT INTO public.action VALUES (939, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6cbac64de2f6655baf854915aac73011498c4afc...71da43b9b4f4ec6f2aab698e1cade5906e604d35","Len":3}', 1703820651); INSERT INTO public.action VALUES (942, 15, 1, 15, 24, 0, false, '', false, '', 1703824083); INSERT INTO public.action VALUES (943, 12, 1, 15, 24, 0, false, '', false, '', 1703824083); INSERT INTO public.action VALUES (944, 5, 1, 15, 24, 0, false, '', false, '', 1703824083); INSERT INTO public.action VALUES (945, 1, 1, 15, 24, 0, false, '', false, '', 1703824083); INSERT INTO public.action VALUES (946, 2, 1, 15, 24, 0, false, '', false, '', 1703824083); INSERT INTO public.action VALUES (947, 15, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '', 1703824263); INSERT INTO public.action VALUES (948, 12, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '', 1703824263); INSERT INTO public.action VALUES (949, 5, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '', 1703824263); INSERT INTO public.action VALUES (950, 1, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '', 1703824263); INSERT INTO public.action VALUES (951, 2, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '', 1703824263); INSERT INTO public.action VALUES (1138, 16, 11, 11, 21, 0, false, '', false, '29|thinh', 1704247144); INSERT INTO public.action VALUES (940, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6cbac64de2f6655baf854915aac73011498c4afc...71da43b9b4f4ec6f2aab698e1cade5906e604d35","Len":3}', 1703820651); INSERT INTO public.action VALUES (941, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},{"Sha1":"911fdad30b51628a28e001ccf1645d9d5172e84f","Message":"add thon xom + chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T10:29:34+07:00"},{"Sha1":"373cd26fb7e01be8e5618bf1ca310f43b25423e9","Message":"add chi tieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T09:52:51+07:00"}],"HeadCommit":{"Sha1":"71da43b9b4f4ec6f2aab698e1cade5906e604d35","Message":"Merge pull request ''thinh'' (#27) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/27\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T10:30:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6cbac64de2f6655baf854915aac73011498c4afc...71da43b9b4f4ec6f2aab698e1cade5906e604d35","Len":3}', 1703820651); INSERT INTO public.action VALUES (1451, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/568299bc2fd76e6410ce6c4a6115e561e1c1aa38...a83c5eae96d22b60f72fa4c1a88aed04b88835af","Len":2}', 1704428657); INSERT INTO public.action VALUES (1452, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/568299bc2fd76e6410ce6c4a6115e561e1c1aa38...a83c5eae96d22b60f72fa4c1a88aed04b88835af","Len":2}', 1704428657); INSERT INTO public.action VALUES (1453, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},{"Sha1":"792bcff3d21254a02cb1dc70989f44cd948b788e","Message":"update bao cao tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T11:23:21+07:00"}],"HeadCommit":{"Sha1":"a83c5eae96d22b60f72fa4c1a88aed04b88835af","Message":"Merge pull request ''update bao cao tuyen sinh'' (#38) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/38\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T11:24:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/568299bc2fd76e6410ce6c4a6115e561e1c1aa38...a83c5eae96d22b60f72fa4c1a88aed04b88835af","Len":2}', 1704428657); INSERT INTO public.action VALUES (1702, 11, 11, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558906); INSERT INTO public.action VALUES (1703, 14, 11, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558906); INSERT INTO public.action VALUES (1704, 1, 11, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558906); INSERT INTO public.action VALUES (1705, 5, 11, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558906); INSERT INTO public.action VALUES (952, 15, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},{"Sha1":"7c5000dfbcf64554472ed9ff7a5bf85d08838e20","Message":"git push origin dev-ios\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:14:02+07:00"},{"Sha1":"8b5d1c84b852925a3efd003f9b8cf5d24b5629be","Message":"fix ts\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T08:57:57+07:00"},{"Sha1":"ad7041117334027a3a9a3ec111301c229dd466eb","Message":"statitis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-28T13:50:56+07:00"}],"HeadCommit":{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},"CompareURL":"","Len":8}', 1703824264); INSERT INTO public.action VALUES (953, 12, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},{"Sha1":"7c5000dfbcf64554472ed9ff7a5bf85d08838e20","Message":"git push origin dev-ios\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:14:02+07:00"},{"Sha1":"8b5d1c84b852925a3efd003f9b8cf5d24b5629be","Message":"fix ts\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T08:57:57+07:00"},{"Sha1":"ad7041117334027a3a9a3ec111301c229dd466eb","Message":"statitis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-28T13:50:56+07:00"}],"HeadCommit":{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},"CompareURL":"","Len":8}', 1703824264); INSERT INTO public.action VALUES (954, 5, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},{"Sha1":"7c5000dfbcf64554472ed9ff7a5bf85d08838e20","Message":"git push origin dev-ios\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:14:02+07:00"},{"Sha1":"8b5d1c84b852925a3efd003f9b8cf5d24b5629be","Message":"fix ts\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T08:57:57+07:00"},{"Sha1":"ad7041117334027a3a9a3ec111301c229dd466eb","Message":"statitis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-28T13:50:56+07:00"}],"HeadCommit":{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},"CompareURL":"","Len":8}', 1703824264); INSERT INTO public.action VALUES (955, 1, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},{"Sha1":"7c5000dfbcf64554472ed9ff7a5bf85d08838e20","Message":"git push origin dev-ios\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:14:02+07:00"},{"Sha1":"8b5d1c84b852925a3efd003f9b8cf5d24b5629be","Message":"fix ts\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T08:57:57+07:00"},{"Sha1":"ad7041117334027a3a9a3ec111301c229dd466eb","Message":"statitis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-28T13:50:56+07:00"}],"HeadCommit":{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},"CompareURL":"","Len":8}', 1703824264); INSERT INTO public.action VALUES (1153, 16, 7, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247790); INSERT INTO public.action VALUES (1154, 11, 11, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247806); INSERT INTO public.action VALUES (1155, 14, 11, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247806); INSERT INTO public.action VALUES (1156, 1, 11, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247806); INSERT INTO public.action VALUES (956, 2, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},{"Sha1":"7c5000dfbcf64554472ed9ff7a5bf85d08838e20","Message":"git push origin dev-ios\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:14:02+07:00"},{"Sha1":"8b5d1c84b852925a3efd003f9b8cf5d24b5629be","Message":"fix ts\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T08:57:57+07:00"},{"Sha1":"ad7041117334027a3a9a3ec111301c229dd466eb","Message":"statitis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-28T13:50:56+07:00"}],"HeadCommit":{"Sha1":"65654af0b2e8104301d97ec18ce7aace6f92c4d0","Message":"redux\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T11:29:07+07:00"},"CompareURL":"","Len":8}', 1703824264); INSERT INTO public.action VALUES (957, 15, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '', 1703824395); INSERT INTO public.action VALUES (958, 12, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '', 1703824395); INSERT INTO public.action VALUES (959, 5, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '', 1703824395); INSERT INTO public.action VALUES (960, 1, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '', 1703824395); INSERT INTO public.action VALUES (961, 2, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '', 1703824395); INSERT INTO public.action VALUES (962, 15, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[],"HeadCommit":{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},"CompareURL":"Khieu-nai/mobile/compare/dev-ios...6d798cb61f8811b96ded4282b836f7ebcb04ca00","Len":0}', 1703824395); INSERT INTO public.action VALUES (963, 12, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[],"HeadCommit":{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},"CompareURL":"Khieu-nai/mobile/compare/dev-ios...6d798cb61f8811b96ded4282b836f7ebcb04ca00","Len":0}', 1703824395); INSERT INTO public.action VALUES (964, 5, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[],"HeadCommit":{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},"CompareURL":"Khieu-nai/mobile/compare/dev-ios...6d798cb61f8811b96ded4282b836f7ebcb04ca00","Len":0}', 1703824395); INSERT INTO public.action VALUES (965, 1, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[],"HeadCommit":{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},"CompareURL":"Khieu-nai/mobile/compare/dev-ios...6d798cb61f8811b96ded4282b836f7ebcb04ca00","Len":0}', 1703824395); INSERT INTO public.action VALUES (966, 2, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[],"HeadCommit":{"Sha1":"6d798cb61f8811b96ded4282b836f7ebcb04ca00","Message":"add temp 2\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2023-12-29T09:19:48+07:00"},"CompareURL":"Khieu-nai/mobile/compare/dev-ios...6d798cb61f8811b96ded4282b836f7ebcb04ca00","Len":0}', 1703824395); INSERT INTO public.action VALUES (967, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"}],"HeadCommit":{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"},"CompareURL":"Khieu-nai/backend/compare/6f607f73f68ad7ddbf04d1d261ff5647a6f64acb...cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Len":1}', 1703830809); INSERT INTO public.action VALUES (968, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"}],"HeadCommit":{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"},"CompareURL":"Khieu-nai/backend/compare/6f607f73f68ad7ddbf04d1d261ff5647a6f64acb...cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Len":1}', 1703830809); INSERT INTO public.action VALUES (969, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"}],"HeadCommit":{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"},"CompareURL":"Khieu-nai/backend/compare/6f607f73f68ad7ddbf04d1d261ff5647a6f64acb...cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Len":1}', 1703830809); INSERT INTO public.action VALUES (1157, 5, 11, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247806); INSERT INTO public.action VALUES (1158, 16, 11, 11, 21, 0, false, '', false, '30|fix stlye detail khts', 1704247806); INSERT INTO public.action VALUES (1229, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/205/head', false, '', 1704283238); INSERT INTO public.action VALUES (1230, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/205/head', false, '', 1704283238); INSERT INTO public.action VALUES (971, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"}],"HeadCommit":{"Sha1":"cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2023-12-29T13:19:56+07:00"},"CompareURL":"Khieu-nai/backend/compare/6f607f73f68ad7ddbf04d1d261ff5647a6f64acb...cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4","Len":1}', 1703830809); INSERT INTO public.action VALUES (972, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},{"Sha1":"b4705530ea7ba150a9b75d0f7c8e682fe4017299","Message":"thao tác gửi, phê duyệt, từ chối KHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:10:06+07:00"}],"HeadCommit":{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f25699b2b515283c5b05e4be307fc8a0bf23af8a...c1a723a5c031d0b78e2ce052faf2616b8419cf91","Len":2}', 1703832640); INSERT INTO public.action VALUES (973, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},{"Sha1":"b4705530ea7ba150a9b75d0f7c8e682fe4017299","Message":"thao tác gửi, phê duyệt, từ chối KHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:10:06+07:00"}],"HeadCommit":{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f25699b2b515283c5b05e4be307fc8a0bf23af8a...c1a723a5c031d0b78e2ce052faf2616b8419cf91","Len":2}', 1703832640); INSERT INTO public.action VALUES (974, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},{"Sha1":"b4705530ea7ba150a9b75d0f7c8e682fe4017299","Message":"thao tác gửi, phê duyệt, từ chối KHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:10:06+07:00"}],"HeadCommit":{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f25699b2b515283c5b05e4be307fc8a0bf23af8a...c1a723a5c031d0b78e2ce052faf2616b8419cf91","Len":2}', 1703832640); INSERT INTO public.action VALUES (975, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},{"Sha1":"b4705530ea7ba150a9b75d0f7c8e682fe4017299","Message":"thao tác gửi, phê duyệt, từ chối KHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:10:06+07:00"}],"HeadCommit":{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f25699b2b515283c5b05e4be307fc8a0bf23af8a...c1a723a5c031d0b78e2ce052faf2616b8419cf91","Len":2}', 1703832640); INSERT INTO public.action VALUES (976, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},{"Sha1":"b4705530ea7ba150a9b75d0f7c8e682fe4017299","Message":"thao tác gửi, phê duyệt, từ chối KHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:10:06+07:00"}],"HeadCommit":{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f25699b2b515283c5b05e4be307fc8a0bf23af8a...c1a723a5c031d0b78e2ce052faf2616b8419cf91","Len":2}', 1703832640); INSERT INTO public.action VALUES (993, 1, 5, 1, 25, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d6c2e64af79bb97a5b57cf8e173d2f2d29f3019b","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-29T14:27:31+07:00"}],"HeadCommit":{"Sha1":"d6c2e64af79bb97a5b57cf8e173d2f2d29f3019b","Message":"Add project files.\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"cognvn","CommitterEmail":"cognvn@gmail.com","CommitterName":"cognvn","Timestamp":"2023-12-29T14:27:31+07:00"},"CompareURL":"","Len":1}', 1703835148); INSERT INTO public.action VALUES (1184, 11, 7, 11, 21, 0, false, '', false, '31|thinh', 1704254945); INSERT INTO public.action VALUES (1185, 14, 7, 11, 21, 0, false, '', false, '31|thinh', 1704254945); INSERT INTO public.action VALUES (1186, 1, 7, 11, 21, 0, false, '', false, '31|thinh', 1704254945); INSERT INTO public.action VALUES (1187, 5, 7, 11, 21, 0, false, '', false, '31|thinh', 1704254945); INSERT INTO public.action VALUES (1188, 16, 7, 11, 21, 0, false, '', false, '31|thinh', 1704254945); INSERT INTO public.action VALUES (977, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},{"Sha1":"b4705530ea7ba150a9b75d0f7c8e682fe4017299","Message":"thao tác gửi, phê duyệt, từ chối KHTS\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:10:06+07:00"}],"HeadCommit":{"Sha1":"c1a723a5c031d0b78e2ce052faf2616b8419cf91","Message":"Nhập chỉ tiêu tối đa không được vượt quá kh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T11:14:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f25699b2b515283c5b05e4be307fc8a0bf23af8a...c1a723a5c031d0b78e2ce052faf2616b8419cf91","Len":2}', 1703832640); INSERT INTO public.action VALUES (996, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/911fdad30b51628a28e001ccf1645d9d5172e84f...9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Len":1}', 1703840880); INSERT INTO public.action VALUES (997, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/911fdad30b51628a28e001ccf1645d9d5172e84f...9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Len":1}', 1703840880); INSERT INTO public.action VALUES (998, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/911fdad30b51628a28e001ccf1645d9d5172e84f...9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Len":1}', 1703840880); INSERT INTO public.action VALUES (999, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/911fdad30b51628a28e001ccf1645d9d5172e84f...9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Len":1}', 1703840880); INSERT INTO public.action VALUES (1000, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/911fdad30b51628a28e001ccf1645d9d5172e84f...9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Len":1}', 1703840880); INSERT INTO public.action VALUES (1001, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"}],"HeadCommit":{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dfb299ec2026ff1d33acb42cda2ce8f89f40e93...77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Len":1}', 1703842244); INSERT INTO public.action VALUES (1002, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"}],"HeadCommit":{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dfb299ec2026ff1d33acb42cda2ce8f89f40e93...77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Len":1}', 1703842244); INSERT INTO public.action VALUES (1189, 11, 11, 11, 21, 0, false, '', false, '31|thinh', 1704254967); INSERT INTO public.action VALUES (1190, 14, 11, 11, 21, 0, false, '', false, '31|thinh', 1704254967); INSERT INTO public.action VALUES (1191, 1, 11, 11, 21, 0, false, '', false, '31|thinh', 1704254967); INSERT INTO public.action VALUES (1192, 5, 11, 11, 21, 0, false, '', false, '31|thinh', 1704254967); INSERT INTO public.action VALUES (1003, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"}],"HeadCommit":{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dfb299ec2026ff1d33acb42cda2ce8f89f40e93...77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Len":1}', 1703842244); INSERT INTO public.action VALUES (1004, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"}],"HeadCommit":{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dfb299ec2026ff1d33acb42cda2ce8f89f40e93...77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Len":1}', 1703842244); INSERT INTO public.action VALUES (1005, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"}],"HeadCommit":{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dfb299ec2026ff1d33acb42cda2ce8f89f40e93...77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Len":1}', 1703842244); INSERT INTO public.action VALUES (1011, 11, 11, 11, 21, 0, false, '', false, '28|thinh', 1703842289); INSERT INTO public.action VALUES (1012, 14, 11, 11, 21, 0, false, '', false, '28|thinh', 1703842289); INSERT INTO public.action VALUES (1013, 1, 11, 11, 21, 0, false, '', false, '28|thinh', 1703842289); INSERT INTO public.action VALUES (1014, 5, 11, 11, 21, 0, false, '', false, '28|thinh', 1703842289); INSERT INTO public.action VALUES (1015, 16, 11, 11, 21, 0, false, '', false, '28|thinh', 1703842289); INSERT INTO public.action VALUES (1016, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/71da43b9b4f4ec6f2aab698e1cade5906e604d35...b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Len":3}', 1703842291); INSERT INTO public.action VALUES (1017, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/71da43b9b4f4ec6f2aab698e1cade5906e604d35...b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Len":3}', 1703842291); INSERT INTO public.action VALUES (1024, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},{"Sha1":"b0168ee953762d1f623a490b8051b61d88af6391","Message":"thêm trường thao tác và QLLD_DM_TrangThaiKeHoach\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:19+07:00"},{"Sha1":"802b6d8f88f11dcb5868c1b9885e4fbf97769229","Message":"fix NLD thiếu thôn xóm\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T16:14:22+07:00"},{"Sha1":"d23d766ad31f47e8a13372950072f61c31b4c613","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T15:57:30+07:00"},{"Sha1":"9b19a5d67b0674d02e82b762c76e15fdf44a143f","Message":"fix lịch sử thao tác\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T14:24:11+07:00"}],"HeadCommit":{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c1a723a5c031d0b78e2ce052faf2616b8419cf91...0aa2586eb06833d603f5007d094fba54313b3595","Len":7}', 1703862041); INSERT INTO public.action VALUES (1193, 16, 11, 11, 21, 0, false, '', false, '31|thinh', 1704254967); INSERT INTO public.action VALUES (1231, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/205/head', false, '', 1704283238); INSERT INTO public.action VALUES (1232, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/205/merge', false, '', 1704283238); INSERT INTO public.action VALUES (1233, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/205/merge', false, '', 1704283238); INSERT INTO public.action VALUES (1018, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/71da43b9b4f4ec6f2aab698e1cade5906e604d35...b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Len":3}', 1703842291); INSERT INTO public.action VALUES (1019, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/71da43b9b4f4ec6f2aab698e1cade5906e604d35...b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Len":3}', 1703842291); INSERT INTO public.action VALUES (1020, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},{"Sha1":"77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a","Message":"update lich su\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:30:36+07:00"},{"Sha1":"9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","Message":"update lich su thao tac\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-29T16:07:52+07:00"}],"HeadCommit":{"Sha1":"b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Message":"Merge pull request ''thinh'' (#28) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/28\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2023-12-29T16:31:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/71da43b9b4f4ec6f2aab698e1cade5906e604d35...b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9","Len":3}', 1703842291); INSERT INTO public.action VALUES (1021, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},{"Sha1":"b0168ee953762d1f623a490b8051b61d88af6391","Message":"thêm trường thao tác và QLLD_DM_TrangThaiKeHoach\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:19+07:00"},{"Sha1":"802b6d8f88f11dcb5868c1b9885e4fbf97769229","Message":"fix NLD thiếu thôn xóm\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T16:14:22+07:00"},{"Sha1":"d23d766ad31f47e8a13372950072f61c31b4c613","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T15:57:30+07:00"},{"Sha1":"9b19a5d67b0674d02e82b762c76e15fdf44a143f","Message":"fix lịch sử thao tác\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T14:24:11+07:00"}],"HeadCommit":{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c1a723a5c031d0b78e2ce052faf2616b8419cf91...0aa2586eb06833d603f5007d094fba54313b3595","Len":7}', 1703862041); INSERT INTO public.action VALUES (1022, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},{"Sha1":"b0168ee953762d1f623a490b8051b61d88af6391","Message":"thêm trường thao tác và QLLD_DM_TrangThaiKeHoach\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:19+07:00"},{"Sha1":"802b6d8f88f11dcb5868c1b9885e4fbf97769229","Message":"fix NLD thiếu thôn xóm\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T16:14:22+07:00"},{"Sha1":"d23d766ad31f47e8a13372950072f61c31b4c613","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T15:57:30+07:00"},{"Sha1":"9b19a5d67b0674d02e82b762c76e15fdf44a143f","Message":"fix lịch sử thao tác\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T14:24:11+07:00"}],"HeadCommit":{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c1a723a5c031d0b78e2ce052faf2616b8419cf91...0aa2586eb06833d603f5007d094fba54313b3595","Len":7}', 1703862041); INSERT INTO public.action VALUES (1023, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},{"Sha1":"b0168ee953762d1f623a490b8051b61d88af6391","Message":"thêm trường thao tác và QLLD_DM_TrangThaiKeHoach\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:19+07:00"},{"Sha1":"802b6d8f88f11dcb5868c1b9885e4fbf97769229","Message":"fix NLD thiếu thôn xóm\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T16:14:22+07:00"},{"Sha1":"d23d766ad31f47e8a13372950072f61c31b4c613","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T15:57:30+07:00"},{"Sha1":"9b19a5d67b0674d02e82b762c76e15fdf44a143f","Message":"fix lịch sử thao tác\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T14:24:11+07:00"}],"HeadCommit":{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c1a723a5c031d0b78e2ce052faf2616b8419cf91...0aa2586eb06833d603f5007d094fba54313b3595","Len":7}', 1703862041); INSERT INTO public.action VALUES (1032, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/203/head', false, '', 1704077438); INSERT INTO public.action VALUES (1033, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/203/head', false, '', 1704077438); INSERT INTO public.action VALUES (1025, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},{"Sha1":"b0168ee953762d1f623a490b8051b61d88af6391","Message":"thêm trường thao tác và QLLD_DM_TrangThaiKeHoach\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:19+07:00"},{"Sha1":"802b6d8f88f11dcb5868c1b9885e4fbf97769229","Message":"fix NLD thiếu thôn xóm\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T16:14:22+07:00"},{"Sha1":"d23d766ad31f47e8a13372950072f61c31b4c613","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T15:57:30+07:00"},{"Sha1":"9b19a5d67b0674d02e82b762c76e15fdf44a143f","Message":"fix lịch sử thao tác\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T14:24:11+07:00"}],"HeadCommit":{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c1a723a5c031d0b78e2ce052faf2616b8419cf91...0aa2586eb06833d603f5007d094fba54313b3595","Len":7}', 1703862041); INSERT INTO public.action VALUES (1026, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},{"Sha1":"b0168ee953762d1f623a490b8051b61d88af6391","Message":"thêm trường thao tác và QLLD_DM_TrangThaiKeHoach\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:19+07:00"},{"Sha1":"802b6d8f88f11dcb5868c1b9885e4fbf97769229","Message":"fix NLD thiếu thôn xóm\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T16:14:22+07:00"},{"Sha1":"d23d766ad31f47e8a13372950072f61c31b4c613","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2023-12-29T15:57:30+07:00"},{"Sha1":"9b19a5d67b0674d02e82b762c76e15fdf44a143f","Message":"fix lịch sử thao tác\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T14:24:11+07:00"}],"HeadCommit":{"Sha1":"0aa2586eb06833d603f5007d094fba54313b3595","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2023-12-29T16:58:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/c1a723a5c031d0b78e2ce052faf2616b8419cf91...0aa2586eb06833d603f5007d094fba54313b3595","Len":7}', 1703862041); INSERT INTO public.action VALUES (1027, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a...e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Len":1}', 1703940028); INSERT INTO public.action VALUES (1028, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a...e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Len":1}', 1703940028); INSERT INTO public.action VALUES (1029, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a...e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Len":1}', 1703940028); INSERT INTO public.action VALUES (1030, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a...e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Len":1}', 1703940028); INSERT INTO public.action VALUES (1031, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a...e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Len":1}', 1703940028); INSERT INTO public.action VALUES (1454, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/187/head', false, '', 1704430238); INSERT INTO public.action VALUES (1455, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/187/head', false, '', 1704430239); INSERT INTO public.action VALUES (1456, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/187/head', false, '', 1704430239); INSERT INTO public.action VALUES (1457, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/187/merge', false, '', 1704430239); INSERT INTO public.action VALUES (1458, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/187/merge', false, '', 1704430239); INSERT INTO public.action VALUES (1459, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/187/merge', false, '', 1704430239); INSERT INTO public.action VALUES (1460, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/188/head', false, '', 1704430239); INSERT INTO public.action VALUES (1461, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/188/head', false, '', 1704430239); INSERT INTO public.action VALUES (1462, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/188/head', false, '', 1704430239); INSERT INTO public.action VALUES (1463, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/188/merge', false, '', 1704430239); INSERT INTO public.action VALUES (1464, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/188/merge', false, '', 1704430239); INSERT INTO public.action VALUES (1465, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/188/merge', false, '', 1704430239); INSERT INTO public.action VALUES (1706, 16, 11, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558906); INSERT INTO public.action VALUES (1092, 13, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},"CompareURL":"binh-dinh-f1/website/compare/53c52ec0d6cfe41371cab3639787851006ad2433...8b79942357f0e1a362058fb81823a099385830cc","Len":2}', 1704136239); INSERT INTO public.action VALUES (1093, 1, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},"CompareURL":"binh-dinh-f1/website/compare/53c52ec0d6cfe41371cab3639787851006ad2433...8b79942357f0e1a362058fb81823a099385830cc","Len":2}', 1704136239); INSERT INTO public.action VALUES (1094, 4, 18, 13, 17, 0, false, 'refs/heads/develop', false, '{"Commits":[{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},"CompareURL":"binh-dinh-f1/website/compare/53c52ec0d6cfe41371cab3639787851006ad2433...8b79942357f0e1a362058fb81823a099385830cc","Len":2}', 1704136239); INSERT INTO public.action VALUES (1095, 13, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"},"CompareURL":"binh-dinh-f1/website/compare/3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba...4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Len":1}', 1704136240); INSERT INTO public.action VALUES (1096, 1, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"},"CompareURL":"binh-dinh-f1/website/compare/3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba...4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Len":1}', 1704136240); INSERT INTO public.action VALUES (1097, 4, 18, 13, 17, 0, false, 'refs/heads/dong-dev', false, '{"Commits":[{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"},"CompareURL":"binh-dinh-f1/website/compare/3a78495f9bf879ae1d9ec573f2777c1bdd7f97ba...4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Len":1}', 1704136240); INSERT INTO public.action VALUES (1098, 13, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!212","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:45:10Z"},{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!212","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:45:10Z"},"CompareURL":"binh-dinh-f1/website/compare/24a94ddb7448d419edc28e8d69dfcb73ca0edbd1...3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Len":3}', 1704136241); INSERT INTO public.action VALUES (1234, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/205/merge', false, '', 1704283238); INSERT INTO public.action VALUES (1235, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/206/head', false, '', 1704283238); INSERT INTO public.action VALUES (1236, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/206/head', false, '', 1704283238); INSERT INTO public.action VALUES (1237, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/206/head', false, '', 1704283238); INSERT INTO public.action VALUES (1099, 1, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!212","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:45:10Z"},{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!212","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:45:10Z"},"CompareURL":"binh-dinh-f1/website/compare/24a94ddb7448d419edc28e8d69dfcb73ca0edbd1...3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Len":3}', 1704136241); INSERT INTO public.action VALUES (1100, 4, 18, 13, 17, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!212","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:45:10Z"},{"Sha1":"8b79942357f0e1a362058fb81823a099385830cc","Message":"Merge branch ''dong-dev'' into ''develop''\n\nupdate next event\n\nSee merge request binh-dinh-f1/binhdinhf1-website!211","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:44:49Z"},{"Sha1":"4487e3b77714fa6fa1e7446e2a6e850ad7d92587","Message":"update next event\n","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T18:42:24+07:00"}],"HeadCommit":{"Sha1":"3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Message":"Merge branch ''develop'' into ''main''\n\nDevelop\n\nSee merge request binh-dinh-f1/binhdinhf1-website!212","AuthorEmail":"dongtv2510@gmail.com","AuthorName":"DongTran","CommitterEmail":"dongtv2510@gmail.com","CommitterName":"DongTran","Timestamp":"2024-01-01T11:45:10Z"},"CompareURL":"binh-dinh-f1/website/compare/24a94ddb7448d419edc28e8d69dfcb73ca0edbd1...3388156ba70abc12c5d9f57ba31b3273f2bc34ae","Len":3}', 1704136241); INSERT INTO public.action VALUES (1113, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"}],"HeadCommit":{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e...e03a51dfba325dd115c61bfabae354fc8bce8a39","Len":1}', 1704180854); INSERT INTO public.action VALUES (1114, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"}],"HeadCommit":{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e...e03a51dfba325dd115c61bfabae354fc8bce8a39","Len":1}', 1704180854); INSERT INTO public.action VALUES (1115, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"}],"HeadCommit":{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e...e03a51dfba325dd115c61bfabae354fc8bce8a39","Len":1}', 1704180854); INSERT INTO public.action VALUES (1116, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"}],"HeadCommit":{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e...e03a51dfba325dd115c61bfabae354fc8bce8a39","Len":1}', 1704180854); INSERT INTO public.action VALUES (1117, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"}],"HeadCommit":{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e...e03a51dfba325dd115c61bfabae354fc8bce8a39","Len":1}', 1704180854); INSERT INTO public.action VALUES (1238, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/206/merge', false, '', 1704283238); INSERT INTO public.action VALUES (1239, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/206/merge', false, '', 1704283238); INSERT INTO public.action VALUES (1240, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/206/merge', false, '', 1704283238); INSERT INTO public.action VALUES (1118, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},{"Sha1":"c02a6090333569afa7ad41c16ce3639ef4b93700","Message":"So sánh số kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:37:16+07:00"},{"Sha1":"584711a61d10d4fedf7faf0f8237692f9f2e2f9e","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:35+07:00"},{"Sha1":"f4c42108115e2bcb2c30189b44b299cd6795a67f","Message":" BC Tn kqua giai quyet viec lam\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:30+07:00"},{"Sha1":"05c8943512ee3a890ab4a5fc1b309998f42ef66b","Message":"YCCSKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T11:52:18+07:00"}],"HeadCommit":{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0aa2586eb06833d603f5007d094fba54313b3595...522675e664aeac01db7f9ed3b7694c7380801a45","Len":6}', 1704185440); INSERT INTO public.action VALUES (1119, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},{"Sha1":"c02a6090333569afa7ad41c16ce3639ef4b93700","Message":"So sánh số kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:37:16+07:00"},{"Sha1":"584711a61d10d4fedf7faf0f8237692f9f2e2f9e","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:35+07:00"},{"Sha1":"f4c42108115e2bcb2c30189b44b299cd6795a67f","Message":" BC Tn kqua giai quyet viec lam\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:30+07:00"},{"Sha1":"05c8943512ee3a890ab4a5fc1b309998f42ef66b","Message":"YCCSKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T11:52:18+07:00"}],"HeadCommit":{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0aa2586eb06833d603f5007d094fba54313b3595...522675e664aeac01db7f9ed3b7694c7380801a45","Len":6}', 1704185440); INSERT INTO public.action VALUES (1120, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},{"Sha1":"c02a6090333569afa7ad41c16ce3639ef4b93700","Message":"So sánh số kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:37:16+07:00"},{"Sha1":"584711a61d10d4fedf7faf0f8237692f9f2e2f9e","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:35+07:00"},{"Sha1":"f4c42108115e2bcb2c30189b44b299cd6795a67f","Message":" BC Tn kqua giai quyet viec lam\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:30+07:00"},{"Sha1":"05c8943512ee3a890ab4a5fc1b309998f42ef66b","Message":"YCCSKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T11:52:18+07:00"}],"HeadCommit":{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0aa2586eb06833d603f5007d094fba54313b3595...522675e664aeac01db7f9ed3b7694c7380801a45","Len":6}', 1704185440); INSERT INTO public.action VALUES (1121, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},{"Sha1":"c02a6090333569afa7ad41c16ce3639ef4b93700","Message":"So sánh số kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:37:16+07:00"},{"Sha1":"584711a61d10d4fedf7faf0f8237692f9f2e2f9e","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:35+07:00"},{"Sha1":"f4c42108115e2bcb2c30189b44b299cd6795a67f","Message":" BC Tn kqua giai quyet viec lam\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:30+07:00"},{"Sha1":"05c8943512ee3a890ab4a5fc1b309998f42ef66b","Message":"YCCSKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T11:52:18+07:00"}],"HeadCommit":{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0aa2586eb06833d603f5007d094fba54313b3595...522675e664aeac01db7f9ed3b7694c7380801a45","Len":6}', 1704185440); INSERT INTO public.action VALUES (1122, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},{"Sha1":"c02a6090333569afa7ad41c16ce3639ef4b93700","Message":"So sánh số kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:37:16+07:00"},{"Sha1":"584711a61d10d4fedf7faf0f8237692f9f2e2f9e","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:35+07:00"},{"Sha1":"f4c42108115e2bcb2c30189b44b299cd6795a67f","Message":" BC Tn kqua giai quyet viec lam\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:30+07:00"},{"Sha1":"05c8943512ee3a890ab4a5fc1b309998f42ef66b","Message":"YCCSKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T11:52:18+07:00"}],"HeadCommit":{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0aa2586eb06833d603f5007d094fba54313b3595...522675e664aeac01db7f9ed3b7694c7380801a45","Len":6}', 1704185440); INSERT INTO public.action VALUES (1123, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},{"Sha1":"c02a6090333569afa7ad41c16ce3639ef4b93700","Message":"So sánh số kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:37:16+07:00"},{"Sha1":"584711a61d10d4fedf7faf0f8237692f9f2e2f9e","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:35+07:00"},{"Sha1":"f4c42108115e2bcb2c30189b44b299cd6795a67f","Message":" BC Tn kqua giai quyet viec lam\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-02T15:09:30+07:00"},{"Sha1":"05c8943512ee3a890ab4a5fc1b309998f42ef66b","Message":"YCCSKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T11:52:18+07:00"}],"HeadCommit":{"Sha1":"522675e664aeac01db7f9ed3b7694c7380801a45","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-02T15:41:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/0aa2586eb06833d603f5007d094fba54313b3595...522675e664aeac01db7f9ed3b7694c7380801a45","Len":6}', 1704185440); INSERT INTO public.action VALUES (1124, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"}],"HeadCommit":{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e03a51dfba325dd115c61bfabae354fc8bce8a39...93d05635290ecb9e83937118a5aa9baf089d30ac","Len":1}', 1704247094); INSERT INTO public.action VALUES (1125, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"}],"HeadCommit":{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e03a51dfba325dd115c61bfabae354fc8bce8a39...93d05635290ecb9e83937118a5aa9baf089d30ac","Len":1}', 1704247094); INSERT INTO public.action VALUES (1126, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"}],"HeadCommit":{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e03a51dfba325dd115c61bfabae354fc8bce8a39...93d05635290ecb9e83937118a5aa9baf089d30ac","Len":1}', 1704247094); INSERT INTO public.action VALUES (1247, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/191/head', false, '', 1704312638); INSERT INTO public.action VALUES (1127, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"}],"HeadCommit":{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e03a51dfba325dd115c61bfabae354fc8bce8a39...93d05635290ecb9e83937118a5aa9baf089d30ac","Len":1}', 1704247094); INSERT INTO public.action VALUES (1128, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"}],"HeadCommit":{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e03a51dfba325dd115c61bfabae354fc8bce8a39...93d05635290ecb9e83937118a5aa9baf089d30ac","Len":1}', 1704247094); INSERT INTO public.action VALUES (1129, 11, 7, 11, 21, 0, false, '', false, '29|thinh', 1704247128); INSERT INTO public.action VALUES (1130, 14, 7, 11, 21, 0, false, '', false, '29|thinh', 1704247128); INSERT INTO public.action VALUES (1131, 1, 7, 11, 21, 0, false, '', false, '29|thinh', 1704247128); INSERT INTO public.action VALUES (1132, 5, 7, 11, 21, 0, false, '', false, '29|thinh', 1704247128); INSERT INTO public.action VALUES (1133, 16, 7, 11, 21, 0, false, '', false, '29|thinh', 1704247128); INSERT INTO public.action VALUES (1139, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9...1b4fab6a15956bae864162531765607648272383","Len":4}', 1704247146); INSERT INTO public.action VALUES (1140, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9...1b4fab6a15956bae864162531765607648272383","Len":4}', 1704247146); INSERT INTO public.action VALUES (1144, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/93d05635290ecb9e83937118a5aa9baf089d30ac...97b72611674d4b7b1aef7a4ccf73d301d3b95704","Len":1}', 1704247701); INSERT INTO public.action VALUES (1248, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/191/head', false, '', 1704312639); INSERT INTO public.action VALUES (1249, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/191/head', false, '', 1704312639); INSERT INTO public.action VALUES (1250, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/191/merge', false, '', 1704312639); INSERT INTO public.action VALUES (1251, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/191/merge', false, '', 1704312639); INSERT INTO public.action VALUES (1252, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/191/merge', false, '', 1704312639); INSERT INTO public.action VALUES (1253, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/192/head', false, '', 1704312639); INSERT INTO public.action VALUES (1141, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9...1b4fab6a15956bae864162531765607648272383","Len":4}', 1704247146); INSERT INTO public.action VALUES (1142, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9...1b4fab6a15956bae864162531765607648272383","Len":4}', 1704247146); INSERT INTO public.action VALUES (1143, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},{"Sha1":"93d05635290ecb9e83937118a5aa9baf089d30ac","Message":"fix ke hoach tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T08:58:03+07:00"},{"Sha1":"e03a51dfba325dd115c61bfabae354fc8bce8a39","Message":"fix loi ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-02T14:34:01+07:00"},{"Sha1":"e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","Message":"fix label chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2023-12-30T19:40:17+07:00"}],"HeadCommit":{"Sha1":"1b4fab6a15956bae864162531765607648272383","Message":"Merge pull request ''thinh'' (#29) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/29\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T08:58:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9...1b4fab6a15956bae864162531765607648272383","Len":4}', 1704247146); INSERT INTO public.action VALUES (1466, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/792bcff3d21254a02cb1dc70989f44cd948b788e...abb8ae120157a6719fa9094c0b05ff6c11052efd","Len":1}', 1704444457); INSERT INTO public.action VALUES (1467, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/792bcff3d21254a02cb1dc70989f44cd948b788e...abb8ae120157a6719fa9094c0b05ff6c11052efd","Len":1}', 1704444457); INSERT INTO public.action VALUES (1722, 11, 11, 11, 21, 0, false, '', false, '51|add ui screen', 1704559663); INSERT INTO public.action VALUES (1723, 14, 11, 11, 21, 0, false, '', false, '51|add ui screen', 1704559663); INSERT INTO public.action VALUES (1145, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/93d05635290ecb9e83937118a5aa9baf089d30ac...97b72611674d4b7b1aef7a4ccf73d301d3b95704","Len":1}', 1704247701); INSERT INTO public.action VALUES (1146, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/93d05635290ecb9e83937118a5aa9baf089d30ac...97b72611674d4b7b1aef7a4ccf73d301d3b95704","Len":1}', 1704247701); INSERT INTO public.action VALUES (1147, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/93d05635290ecb9e83937118a5aa9baf089d30ac...97b72611674d4b7b1aef7a4ccf73d301d3b95704","Len":1}', 1704247701); INSERT INTO public.action VALUES (1148, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/93d05635290ecb9e83937118a5aa9baf089d30ac...97b72611674d4b7b1aef7a4ccf73d301d3b95704","Len":1}', 1704247701); INSERT INTO public.action VALUES (1468, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/792bcff3d21254a02cb1dc70989f44cd948b788e...abb8ae120157a6719fa9094c0b05ff6c11052efd","Len":1}', 1704444457); INSERT INTO public.action VALUES (1469, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/792bcff3d21254a02cb1dc70989f44cd948b788e...abb8ae120157a6719fa9094c0b05ff6c11052efd","Len":1}', 1704444457); INSERT INTO public.action VALUES (1470, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/792bcff3d21254a02cb1dc70989f44cd948b788e...abb8ae120157a6719fa9094c0b05ff6c11052efd","Len":1}', 1704444457); INSERT INTO public.action VALUES (1471, 11, 7, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444553); INSERT INTO public.action VALUES (1472, 14, 7, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444553); INSERT INTO public.action VALUES (1473, 1, 7, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444553); INSERT INTO public.action VALUES (1474, 5, 7, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444553); INSERT INTO public.action VALUES (1475, 16, 7, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444553); INSERT INTO public.action VALUES (1476, 11, 11, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444567); INSERT INTO public.action VALUES (1477, 14, 11, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444567); INSERT INTO public.action VALUES (1478, 1, 11, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444567); INSERT INTO public.action VALUES (1479, 5, 11, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444567); INSERT INTO public.action VALUES (1480, 16, 11, 11, 21, 0, false, '', false, '39|update Loai hinh csgdnn', 1704444567); INSERT INTO public.action VALUES (1724, 1, 11, 11, 21, 0, false, '', false, '51|add ui screen', 1704559663); INSERT INTO public.action VALUES (1725, 5, 11, 11, 21, 0, false, '', false, '51|add ui screen', 1704559663); INSERT INTO public.action VALUES (1726, 16, 11, 11, 21, 0, false, '', false, '51|add ui screen', 1704559663); INSERT INTO public.action VALUES (1802, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/182/head', false, '', 1704577239); INSERT INTO public.action VALUES (1159, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b4fab6a15956bae864162531765607648272383...d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Len":2}', 1704247806); INSERT INTO public.action VALUES (1160, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b4fab6a15956bae864162531765607648272383...d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Len":2}', 1704247806); INSERT INTO public.action VALUES (1161, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b4fab6a15956bae864162531765607648272383...d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Len":2}', 1704247806); INSERT INTO public.action VALUES (1162, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b4fab6a15956bae864162531765607648272383...d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Len":2}', 1704247806); INSERT INTO public.action VALUES (1163, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},{"Sha1":"97b72611674d4b7b1aef7a4ccf73d301d3b95704","Message":"fix stlye detail khts\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:08:14+07:00"}],"HeadCommit":{"Sha1":"d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Message":"Merge pull request ''fix stlye detail khts'' (#30) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/30\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T09:10:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b4fab6a15956bae864162531765607648272383...d478dd60abc83b3d9ca9128a2d6976b1322f2ac5","Len":2}', 1704247806); INSERT INTO public.action VALUES (1164, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/97b72611674d4b7b1aef7a4ccf73d301d3b95704...b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Len":1}', 1704250411); INSERT INTO public.action VALUES (1254, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/192/head', false, '', 1704312639); INSERT INTO public.action VALUES (1165, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/97b72611674d4b7b1aef7a4ccf73d301d3b95704...b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Len":1}', 1704250411); INSERT INTO public.action VALUES (1166, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/97b72611674d4b7b1aef7a4ccf73d301d3b95704...b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Len":1}', 1704250411); INSERT INTO public.action VALUES (1167, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/97b72611674d4b7b1aef7a4ccf73d301d3b95704...b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Len":1}', 1704250411); INSERT INTO public.action VALUES (1168, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/97b72611674d4b7b1aef7a4ccf73d301d3b95704...b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Len":1}', 1704250411); INSERT INTO public.action VALUES (1481, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a83c5eae96d22b60f72fa4c1a88aed04b88835af...1511625e8a850a70547c23e491168c2ac465a5e6","Len":2}', 1704444569); INSERT INTO public.action VALUES (1482, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a83c5eae96d22b60f72fa4c1a88aed04b88835af...1511625e8a850a70547c23e491168c2ac465a5e6","Len":2}', 1704444569); INSERT INTO public.action VALUES (1483, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a83c5eae96d22b60f72fa4c1a88aed04b88835af...1511625e8a850a70547c23e491168c2ac465a5e6","Len":2}', 1704444569); INSERT INTO public.action VALUES (1803, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/182/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1169, 15, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"},"CompareURL":"Khieu-nai/mobile/compare/6d798cb61f8811b96ded4282b836f7ebcb04ca00...36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Len":1}', 1704251278); INSERT INTO public.action VALUES (1170, 12, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"},"CompareURL":"Khieu-nai/mobile/compare/6d798cb61f8811b96ded4282b836f7ebcb04ca00...36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Len":1}', 1704251278); INSERT INTO public.action VALUES (1171, 5, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"},"CompareURL":"Khieu-nai/mobile/compare/6d798cb61f8811b96ded4282b836f7ebcb04ca00...36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Len":1}', 1704251278); INSERT INTO public.action VALUES (1172, 1, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"},"CompareURL":"Khieu-nai/mobile/compare/6d798cb61f8811b96ded4282b836f7ebcb04ca00...36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Len":1}', 1704251278); INSERT INTO public.action VALUES (1173, 2, 5, 15, 24, 0, false, 'refs/heads/dev-android', false, '{"Commits":[{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"},"CompareURL":"Khieu-nai/mobile/compare/6d798cb61f8811b96ded4282b836f7ebcb04ca00...36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Len":1}', 1704251278); INSERT INTO public.action VALUES (1174, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"}],"HeadCommit":{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4a6697bee6b6f16460ecbb3a85fe00d085bebe9...1f50a9600f44e3ab03f9211932cd46b5e9acf664","Len":1}', 1704251443); INSERT INTO public.action VALUES (1175, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"}],"HeadCommit":{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4a6697bee6b6f16460ecbb3a85fe00d085bebe9...1f50a9600f44e3ab03f9211932cd46b5e9acf664","Len":1}', 1704251443); INSERT INTO public.action VALUES (1176, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"}],"HeadCommit":{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4a6697bee6b6f16460ecbb3a85fe00d085bebe9...1f50a9600f44e3ab03f9211932cd46b5e9acf664","Len":1}', 1704251443); INSERT INTO public.action VALUES (1177, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"}],"HeadCommit":{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4a6697bee6b6f16460ecbb3a85fe00d085bebe9...1f50a9600f44e3ab03f9211932cd46b5e9acf664","Len":1}', 1704251443); INSERT INTO public.action VALUES (1255, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/192/head', false, '', 1704312639); INSERT INTO public.action VALUES (1178, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"}],"HeadCommit":{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4a6697bee6b6f16460ecbb3a85fe00d085bebe9...1f50a9600f44e3ab03f9211932cd46b5e9acf664","Len":1}', 1704251443); INSERT INTO public.action VALUES (1179, 15, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},"CompareURL":"Khieu-nai/mobile/compare/65654af0b2e8104301d97ec18ce7aace6f92c4d0...30880c575192480eba4d0196a8c82d1212457d4d","Len":2}', 1704252395); INSERT INTO public.action VALUES (1180, 12, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},"CompareURL":"Khieu-nai/mobile/compare/65654af0b2e8104301d97ec18ce7aace6f92c4d0...30880c575192480eba4d0196a8c82d1212457d4d","Len":2}', 1704252395); INSERT INTO public.action VALUES (1181, 5, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},"CompareURL":"Khieu-nai/mobile/compare/65654af0b2e8104301d97ec18ce7aace6f92c4d0...30880c575192480eba4d0196a8c82d1212457d4d","Len":2}', 1704252395); INSERT INTO public.action VALUES (1182, 1, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},"CompareURL":"Khieu-nai/mobile/compare/65654af0b2e8104301d97ec18ce7aace6f92c4d0...30880c575192480eba4d0196a8c82d1212457d4d","Len":2}', 1704252395); INSERT INTO public.action VALUES (1183, 2, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},{"Sha1":"36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0","Message":"noti, chat\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:07:27+07:00"}],"HeadCommit":{"Sha1":"30880c575192480eba4d0196a8c82d1212457d4d","Message":"merge android\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-03T10:26:14+07:00"},"CompareURL":"Khieu-nai/mobile/compare/65654af0b2e8104301d97ec18ce7aace6f92c4d0...30880c575192480eba4d0196a8c82d1212457d4d","Len":2}', 1704252395); INSERT INTO public.action VALUES (1484, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a83c5eae96d22b60f72fa4c1a88aed04b88835af...1511625e8a850a70547c23e491168c2ac465a5e6","Len":2}', 1704444569); INSERT INTO public.action VALUES (1194, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d478dd60abc83b3d9ca9128a2d6976b1322f2ac5...8e828e6f4421b1493f308e824c9e8bdb69e3c312","Len":3}', 1704254967); INSERT INTO public.action VALUES (1195, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d478dd60abc83b3d9ca9128a2d6976b1322f2ac5...8e828e6f4421b1493f308e824c9e8bdb69e3c312","Len":3}', 1704254967); INSERT INTO public.action VALUES (1196, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d478dd60abc83b3d9ca9128a2d6976b1322f2ac5...8e828e6f4421b1493f308e824c9e8bdb69e3c312","Len":3}', 1704254967); INSERT INTO public.action VALUES (1197, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d478dd60abc83b3d9ca9128a2d6976b1322f2ac5...8e828e6f4421b1493f308e824c9e8bdb69e3c312","Len":3}', 1704254967); INSERT INTO public.action VALUES (1206, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"}],"HeadCommit":{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bfc5e6a2209c1af96532ae8bfd9d55874a46e39f...a0b1080d5e7d96c9e634012be07424dcb88c4418","Len":1}', 1704270037); INSERT INTO public.action VALUES (1256, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/192/merge', false, '', 1704312639); INSERT INTO public.action VALUES (1257, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/192/merge', false, '', 1704312639); INSERT INTO public.action VALUES (1258, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/192/merge', false, '', 1704312639); INSERT INTO public.action VALUES (1198, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},{"Sha1":"1f50a9600f44e3ab03f9211932cd46b5e9acf664","Message":"hidden filter year\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T10:10:35+07:00"},{"Sha1":"b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","Message":"fix dia chi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T09:53:22+07:00"}],"HeadCommit":{"Sha1":"8e828e6f4421b1493f308e824c9e8bdb69e3c312","Message":"Merge pull request ''thinh'' (#31) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/31\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T11:09:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d478dd60abc83b3d9ca9128a2d6976b1322f2ac5...8e828e6f4421b1493f308e824c9e8bdb69e3c312","Len":3}', 1704254967); INSERT INTO public.action VALUES (1199, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f50a9600f44e3ab03f9211932cd46b5e9acf664...bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Len":1}', 1704266494); INSERT INTO public.action VALUES (1200, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f50a9600f44e3ab03f9211932cd46b5e9acf664...bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Len":1}', 1704266494); INSERT INTO public.action VALUES (1201, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f50a9600f44e3ab03f9211932cd46b5e9acf664...bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Len":1}', 1704266494); INSERT INTO public.action VALUES (1202, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f50a9600f44e3ab03f9211932cd46b5e9acf664...bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Len":1}', 1704266494); INSERT INTO public.action VALUES (1203, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f50a9600f44e3ab03f9211932cd46b5e9acf664...bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Len":1}', 1704266494); INSERT INTO public.action VALUES (1204, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"}],"HeadCommit":{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bfc5e6a2209c1af96532ae8bfd9d55874a46e39f...a0b1080d5e7d96c9e634012be07424dcb88c4418","Len":1}', 1704270037); INSERT INTO public.action VALUES (1205, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"}],"HeadCommit":{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bfc5e6a2209c1af96532ae8bfd9d55874a46e39f...a0b1080d5e7d96c9e634012be07424dcb88c4418","Len":1}', 1704270037); INSERT INTO public.action VALUES (1207, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"}],"HeadCommit":{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bfc5e6a2209c1af96532ae8bfd9d55874a46e39f...a0b1080d5e7d96c9e634012be07424dcb88c4418","Len":1}', 1704270037); INSERT INTO public.action VALUES (1208, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"}],"HeadCommit":{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bfc5e6a2209c1af96532ae8bfd9d55874a46e39f...a0b1080d5e7d96c9e634012be07424dcb88c4418","Len":1}', 1704270037); INSERT INTO public.action VALUES (1214, 11, 11, 11, 21, 0, false, '', false, '32|thinh', 1704270141); INSERT INTO public.action VALUES (1215, 14, 11, 11, 21, 0, false, '', false, '32|thinh', 1704270141); INSERT INTO public.action VALUES (1216, 1, 11, 11, 21, 0, false, '', false, '32|thinh', 1704270141); INSERT INTO public.action VALUES (1217, 5, 11, 11, 21, 0, false, '', false, '32|thinh', 1704270141); INSERT INTO public.action VALUES (1218, 16, 11, 11, 21, 0, false, '', false, '32|thinh', 1704270141); INSERT INTO public.action VALUES (1485, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},{"Sha1":"abb8ae120157a6719fa9094c0b05ff6c11052efd","Message":"update Loai hinh csgdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T15:47:30+07:00"}],"HeadCommit":{"Sha1":"1511625e8a850a70547c23e491168c2ac465a5e6","Message":"Merge pull request ''update Loai hinh csgdnn'' (#39) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/39\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T15:49:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a83c5eae96d22b60f72fa4c1a88aed04b88835af...1511625e8a850a70547c23e491168c2ac465a5e6","Len":2}', 1704444569); INSERT INTO public.action VALUES (1512, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/984ab8bc6fa2d923599f3f1241b528745fabcf57...a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Len":2}', 1704464876); INSERT INTO public.action VALUES (1513, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/984ab8bc6fa2d923599f3f1241b528745fabcf57...a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Len":2}', 1704464876); INSERT INTO public.action VALUES (1514, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/984ab8bc6fa2d923599f3f1241b528745fabcf57...a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Len":2}', 1704464876); INSERT INTO public.action VALUES (1804, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/182/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1805, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/182/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1806, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/183/head', false, '', 1704577239); INSERT INTO public.action VALUES (1807, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/183/head', false, '', 1704577239); INSERT INTO public.action VALUES (1808, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/183/head', false, '', 1704577239); INSERT INTO public.action VALUES (1219, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e828e6f4421b1493f308e824c9e8bdb69e3c312...66485a7986ab26e07dab856017d0ee7f84234a04","Len":3}', 1704270142); INSERT INTO public.action VALUES (1220, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e828e6f4421b1493f308e824c9e8bdb69e3c312...66485a7986ab26e07dab856017d0ee7f84234a04","Len":3}', 1704270142); INSERT INTO public.action VALUES (1221, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e828e6f4421b1493f308e824c9e8bdb69e3c312...66485a7986ab26e07dab856017d0ee7f84234a04","Len":3}', 1704270142); INSERT INTO public.action VALUES (1222, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e828e6f4421b1493f308e824c9e8bdb69e3c312...66485a7986ab26e07dab856017d0ee7f84234a04","Len":3}', 1704270142); INSERT INTO public.action VALUES (1244, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"}],"HeadCommit":{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/522675e664aeac01db7f9ed3b7694c7380801a45...b104efa75f1c2dc4158c1c6d302501db884230c9","Len":1}', 1704303038); INSERT INTO public.action VALUES (1264, 11, 7, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337473); INSERT INTO public.action VALUES (1265, 14, 7, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337473); INSERT INTO public.action VALUES (1266, 1, 7, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337473); INSERT INTO public.action VALUES (1267, 5, 7, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337473); INSERT INTO public.action VALUES (1268, 16, 7, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337473); INSERT INTO public.action VALUES (1223, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},{"Sha1":"a0b1080d5e7d96c9e634012be07424dcb88c4418","Message":"fix phe duyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T15:20:28+07:00"},{"Sha1":"bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","Message":"add trinh do\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-03T14:21:24+07:00"}],"HeadCommit":{"Sha1":"66485a7986ab26e07dab856017d0ee7f84234a04","Message":"Merge pull request ''thinh'' (#32) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/32\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-03T15:22:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e828e6f4421b1493f308e824c9e8bdb69e3c312...66485a7986ab26e07dab856017d0ee7f84234a04","Len":3}', 1704270142); INSERT INTO public.action VALUES (1224, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"}],"HeadCommit":{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"},"CompareURL":"Khieu-nai/backend/compare/cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4...b470d39f23a4735f04b5b42d5432f7f46a1c37af","Len":1}', 1704272134); INSERT INTO public.action VALUES (1225, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"}],"HeadCommit":{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"},"CompareURL":"Khieu-nai/backend/compare/cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4...b470d39f23a4735f04b5b42d5432f7f46a1c37af","Len":1}', 1704272134); INSERT INTO public.action VALUES (1226, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"}],"HeadCommit":{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"},"CompareURL":"Khieu-nai/backend/compare/cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4...b470d39f23a4735f04b5b42d5432f7f46a1c37af","Len":1}', 1704272134); INSERT INTO public.action VALUES (1227, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"}],"HeadCommit":{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"},"CompareURL":"Khieu-nai/backend/compare/cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4...b470d39f23a4735f04b5b42d5432f7f46a1c37af","Len":1}', 1704272134); INSERT INTO public.action VALUES (1228, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"}],"HeadCommit":{"Sha1":"b470d39f23a4735f04b5b42d5432f7f46a1c37af","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-03T15:55:24+07:00"},"CompareURL":"Khieu-nai/backend/compare/cbe25bc50e5a5d5f9bcc4011b0f713081a2108b4...b470d39f23a4735f04b5b42d5432f7f46a1c37af","Len":1}', 1704272134); INSERT INTO public.action VALUES (1241, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"}],"HeadCommit":{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/522675e664aeac01db7f9ed3b7694c7380801a45...b104efa75f1c2dc4158c1c6d302501db884230c9","Len":1}', 1704303038); INSERT INTO public.action VALUES (1242, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"}],"HeadCommit":{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/522675e664aeac01db7f9ed3b7694c7380801a45...b104efa75f1c2dc4158c1c6d302501db884230c9","Len":1}', 1704303038); INSERT INTO public.action VALUES (1243, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"}],"HeadCommit":{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/522675e664aeac01db7f9ed3b7694c7380801a45...b104efa75f1c2dc4158c1c6d302501db884230c9","Len":1}', 1704303038); INSERT INTO public.action VALUES (1245, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"}],"HeadCommit":{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/522675e664aeac01db7f9ed3b7694c7380801a45...b104efa75f1c2dc4158c1c6d302501db884230c9","Len":1}', 1704303039); INSERT INTO public.action VALUES (1246, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"}],"HeadCommit":{"Sha1":"b104efa75f1c2dc4158c1c6d302501db884230c9","Message":" tổng hợp báo cáo tốt nghiệp\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-03T22:30:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/522675e664aeac01db7f9ed3b7694c7380801a45...b104efa75f1c2dc4158c1c6d302501db884230c9","Len":1}', 1704303039); INSERT INTO public.action VALUES (1259, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a0b1080d5e7d96c9e634012be07424dcb88c4418...205a7f5347c0e379199e46265c084c9be88049dc","Len":1}', 1704337215); INSERT INTO public.action VALUES (1260, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a0b1080d5e7d96c9e634012be07424dcb88c4418...205a7f5347c0e379199e46265c084c9be88049dc","Len":1}', 1704337215); INSERT INTO public.action VALUES (1261, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a0b1080d5e7d96c9e634012be07424dcb88c4418...205a7f5347c0e379199e46265c084c9be88049dc","Len":1}', 1704337215); INSERT INTO public.action VALUES (1262, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a0b1080d5e7d96c9e634012be07424dcb88c4418...205a7f5347c0e379199e46265c084c9be88049dc","Len":1}', 1704337215); INSERT INTO public.action VALUES (1263, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a0b1080d5e7d96c9e634012be07424dcb88c4418...205a7f5347c0e379199e46265c084c9be88049dc","Len":1}', 1704337215); INSERT INTO public.action VALUES (1294, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f34630cbea2ecac67dcb069e4e4a27967ac7b10c...3f0e55f14d544cea196d2bf018b613a7176bd7fd","Len":2}', 1704337727); INSERT INTO public.action VALUES (1809, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/183/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1810, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/183/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1811, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/183/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1269, 11, 11, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337488); INSERT INTO public.action VALUES (1270, 14, 11, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337488); INSERT INTO public.action VALUES (1271, 1, 11, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337488); INSERT INTO public.action VALUES (1272, 5, 11, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337488); INSERT INTO public.action VALUES (1273, 16, 11, 11, 21, 0, false, '', false, '33|update edit location hoso', 1704337488); INSERT INTO public.action VALUES (1274, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66485a7986ab26e07dab856017d0ee7f84234a04...f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Len":2}', 1704337489); INSERT INTO public.action VALUES (1275, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66485a7986ab26e07dab856017d0ee7f84234a04...f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Len":2}', 1704337489); INSERT INTO public.action VALUES (1276, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66485a7986ab26e07dab856017d0ee7f84234a04...f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Len":2}', 1704337489); INSERT INTO public.action VALUES (1277, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66485a7986ab26e07dab856017d0ee7f84234a04...f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Len":2}', 1704337489); INSERT INTO public.action VALUES (1278, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},{"Sha1":"205a7f5347c0e379199e46265c084c9be88049dc","Message":"update edit location hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:00:03+07:00"}],"HeadCommit":{"Sha1":"f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Message":"Merge pull request ''update edit location hoso'' (#33) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/33\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:04:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/66485a7986ab26e07dab856017d0ee7f84234a04...f34630cbea2ecac67dcb069e4e4a27967ac7b10c","Len":2}', 1704337489); INSERT INTO public.action VALUES (1812, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/184/head', false, '', 1704577239); INSERT INTO public.action VALUES (1813, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/184/head', false, '', 1704577239); INSERT INTO public.action VALUES (1814, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/184/head', false, '', 1704577239); INSERT INTO public.action VALUES (1279, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/205a7f5347c0e379199e46265c084c9be88049dc...f099d4b729877303d88c26254708d44fea9a6b91","Len":1}', 1704337682); INSERT INTO public.action VALUES (1280, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/205a7f5347c0e379199e46265c084c9be88049dc...f099d4b729877303d88c26254708d44fea9a6b91","Len":1}', 1704337682); INSERT INTO public.action VALUES (1281, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/205a7f5347c0e379199e46265c084c9be88049dc...f099d4b729877303d88c26254708d44fea9a6b91","Len":1}', 1704337682); INSERT INTO public.action VALUES (1282, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/205a7f5347c0e379199e46265c084c9be88049dc...f099d4b729877303d88c26254708d44fea9a6b91","Len":1}', 1704337682); INSERT INTO public.action VALUES (1283, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/205a7f5347c0e379199e46265c084c9be88049dc...f099d4b729877303d88c26254708d44fea9a6b91","Len":1}', 1704337682); INSERT INTO public.action VALUES (1284, 11, 7, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337712); INSERT INTO public.action VALUES (1285, 14, 7, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337712); INSERT INTO public.action VALUES (1286, 1, 7, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337712); INSERT INTO public.action VALUES (1287, 5, 7, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337712); INSERT INTO public.action VALUES (1288, 16, 7, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337712); INSERT INTO public.action VALUES (1289, 11, 11, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337726); INSERT INTO public.action VALUES (1290, 14, 11, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337726); INSERT INTO public.action VALUES (1291, 1, 11, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337726); INSERT INTO public.action VALUES (1292, 5, 11, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337726); INSERT INTO public.action VALUES (1293, 16, 11, 11, 21, 0, false, '', false, '34|update phan quyen chinh sua', 1704337726); INSERT INTO public.action VALUES (1486, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/abb8ae120157a6719fa9094c0b05ff6c11052efd...984ab8bc6fa2d923599f3f1241b528745fabcf57","Len":1}', 1704446412); INSERT INTO public.action VALUES (1487, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/abb8ae120157a6719fa9094c0b05ff6c11052efd...984ab8bc6fa2d923599f3f1241b528745fabcf57","Len":1}', 1704446412); INSERT INTO public.action VALUES (1815, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/184/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1816, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/184/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1817, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/184/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1295, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f34630cbea2ecac67dcb069e4e4a27967ac7b10c...3f0e55f14d544cea196d2bf018b613a7176bd7fd","Len":2}', 1704337727); INSERT INTO public.action VALUES (1296, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f34630cbea2ecac67dcb069e4e4a27967ac7b10c...3f0e55f14d544cea196d2bf018b613a7176bd7fd","Len":2}', 1704337727); INSERT INTO public.action VALUES (1297, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f34630cbea2ecac67dcb069e4e4a27967ac7b10c...3f0e55f14d544cea196d2bf018b613a7176bd7fd","Len":2}', 1704337727); INSERT INTO public.action VALUES (1298, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},{"Sha1":"f099d4b729877303d88c26254708d44fea9a6b91","Message":"update phan quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T10:07:54+07:00"}],"HeadCommit":{"Sha1":"3f0e55f14d544cea196d2bf018b613a7176bd7fd","Message":"Merge pull request ''update phan quyen chinh sua'' (#34) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/34\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T10:08:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f34630cbea2ecac67dcb069e4e4a27967ac7b10c...3f0e55f14d544cea196d2bf018b613a7176bd7fd","Len":2}', 1704337727); INSERT INTO public.action VALUES (1299, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/189/head', false, '', 1704342037); INSERT INTO public.action VALUES (1300, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/189/head', false, '', 1704342037); INSERT INTO public.action VALUES (1301, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/189/head', false, '', 1704342037); INSERT INTO public.action VALUES (1302, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/189/merge', false, '', 1704342037); INSERT INTO public.action VALUES (1303, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/189/merge', false, '', 1704342037); INSERT INTO public.action VALUES (1304, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/189/merge', false, '', 1704342037); INSERT INTO public.action VALUES (1305, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/190/head', false, '', 1704342037); INSERT INTO public.action VALUES (1306, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/190/head', false, '', 1704342037); INSERT INTO public.action VALUES (1307, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/190/head', false, '', 1704342037); INSERT INTO public.action VALUES (1308, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/190/merge', false, '', 1704342037); INSERT INTO public.action VALUES (1309, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/190/merge', false, '', 1704342037); INSERT INTO public.action VALUES (1310, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/190/merge', false, '', 1704342037); INSERT INTO public.action VALUES (1362, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"}],"HeadCommit":{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"},"CompareURL":"Khieu-nai/backend/compare/86025176851040257b456281747dcc6f14bcd5a7...69d18c753f1ddd779264f74a810c688d109b26e4","Len":1}', 1704355729); INSERT INTO public.action VALUES (1311, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f099d4b729877303d88c26254708d44fea9a6b91...a765747120a51a414474b08290bd6962ad402549","Len":1}', 1704342503); INSERT INTO public.action VALUES (1312, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f099d4b729877303d88c26254708d44fea9a6b91...a765747120a51a414474b08290bd6962ad402549","Len":1}', 1704342503); INSERT INTO public.action VALUES (1313, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f099d4b729877303d88c26254708d44fea9a6b91...a765747120a51a414474b08290bd6962ad402549","Len":1}', 1704342503); INSERT INTO public.action VALUES (1314, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f099d4b729877303d88c26254708d44fea9a6b91...a765747120a51a414474b08290bd6962ad402549","Len":1}', 1704342503); INSERT INTO public.action VALUES (1315, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f099d4b729877303d88c26254708d44fea9a6b91...a765747120a51a414474b08290bd6962ad402549","Len":1}', 1704342503); INSERT INTO public.action VALUES (1316, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"}],"HeadCommit":{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a765747120a51a414474b08290bd6962ad402549...f958d58054337a2fa79a21d97be215ab782e5ead","Len":1}', 1704349657); INSERT INTO public.action VALUES (1317, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"}],"HeadCommit":{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a765747120a51a414474b08290bd6962ad402549...f958d58054337a2fa79a21d97be215ab782e5ead","Len":1}', 1704349657); INSERT INTO public.action VALUES (1318, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"}],"HeadCommit":{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a765747120a51a414474b08290bd6962ad402549...f958d58054337a2fa79a21d97be215ab782e5ead","Len":1}', 1704349657); INSERT INTO public.action VALUES (1818, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/185/head', false, '', 1704577239); INSERT INTO public.action VALUES (1819, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/185/head', false, '', 1704577239); INSERT INTO public.action VALUES (1820, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/185/head', false, '', 1704577239); INSERT INTO public.action VALUES (1821, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/185/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1822, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/185/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1319, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"}],"HeadCommit":{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a765747120a51a414474b08290bd6962ad402549...f958d58054337a2fa79a21d97be215ab782e5ead","Len":1}', 1704349657); INSERT INTO public.action VALUES (1320, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"}],"HeadCommit":{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a765747120a51a414474b08290bd6962ad402549...f958d58054337a2fa79a21d97be215ab782e5ead","Len":1}', 1704349657); INSERT INTO public.action VALUES (1321, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"}],"HeadCommit":{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"},"CompareURL":"Khieu-nai/backend/compare/b470d39f23a4735f04b5b42d5432f7f46a1c37af...86025176851040257b456281747dcc6f14bcd5a7","Len":1}', 1704349706); INSERT INTO public.action VALUES (1322, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"}],"HeadCommit":{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"},"CompareURL":"Khieu-nai/backend/compare/b470d39f23a4735f04b5b42d5432f7f46a1c37af...86025176851040257b456281747dcc6f14bcd5a7","Len":1}', 1704349706); INSERT INTO public.action VALUES (1323, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"}],"HeadCommit":{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"},"CompareURL":"Khieu-nai/backend/compare/b470d39f23a4735f04b5b42d5432f7f46a1c37af...86025176851040257b456281747dcc6f14bcd5a7","Len":1}', 1704349706); INSERT INTO public.action VALUES (1324, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"}],"HeadCommit":{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"},"CompareURL":"Khieu-nai/backend/compare/b470d39f23a4735f04b5b42d5432f7f46a1c37af...86025176851040257b456281747dcc6f14bcd5a7","Len":1}', 1704349706); INSERT INTO public.action VALUES (1325, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"}],"HeadCommit":{"Sha1":"86025176851040257b456281747dcc6f14bcd5a7","Message":"update model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T13:28:13+07:00"},"CompareURL":"Khieu-nai/backend/compare/b470d39f23a4735f04b5b42d5432f7f46a1c37af...86025176851040257b456281747dcc6f14bcd5a7","Len":1}', 1704349706); INSERT INTO public.action VALUES (1326, 11, 7, 11, 21, 0, false, '', false, '35|thinh', 1704349757); INSERT INTO public.action VALUES (1327, 14, 7, 11, 21, 0, false, '', false, '35|thinh', 1704349757); INSERT INTO public.action VALUES (1328, 1, 7, 11, 21, 0, false, '', false, '35|thinh', 1704349757); INSERT INTO public.action VALUES (1329, 5, 7, 11, 21, 0, false, '', false, '35|thinh', 1704349757); INSERT INTO public.action VALUES (1330, 16, 7, 11, 21, 0, false, '', false, '35|thinh', 1704349757); INSERT INTO public.action VALUES (1331, 11, 11, 11, 21, 0, false, '', false, '35|thinh', 1704349775); INSERT INTO public.action VALUES (1332, 14, 11, 11, 21, 0, false, '', false, '35|thinh', 1704349775); INSERT INTO public.action VALUES (1333, 1, 11, 11, 21, 0, false, '', false, '35|thinh', 1704349775); INSERT INTO public.action VALUES (1334, 5, 11, 11, 21, 0, false, '', false, '35|thinh', 1704349775); INSERT INTO public.action VALUES (1335, 16, 11, 11, 21, 0, false, '', false, '35|thinh', 1704349775); INSERT INTO public.action VALUES (1363, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"}],"HeadCommit":{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"},"CompareURL":"Khieu-nai/backend/compare/86025176851040257b456281747dcc6f14bcd5a7...69d18c753f1ddd779264f74a810c688d109b26e4","Len":1}', 1704355729); INSERT INTO public.action VALUES (1823, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/185/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1824, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/186/head', false, '', 1704577239); INSERT INTO public.action VALUES (1825, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/186/head', false, '', 1704577239); INSERT INTO public.action VALUES (1826, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/186/head', false, '', 1704577239); INSERT INTO public.action VALUES (1336, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3f0e55f14d544cea196d2bf018b613a7176bd7fd...209d45fee56b3c30e8134399acf07f2ed034d99a","Len":3}', 1704349775); INSERT INTO public.action VALUES (1337, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3f0e55f14d544cea196d2bf018b613a7176bd7fd...209d45fee56b3c30e8134399acf07f2ed034d99a","Len":3}', 1704349775); INSERT INTO public.action VALUES (1338, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3f0e55f14d544cea196d2bf018b613a7176bd7fd...209d45fee56b3c30e8134399acf07f2ed034d99a","Len":3}', 1704349775); INSERT INTO public.action VALUES (1339, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3f0e55f14d544cea196d2bf018b613a7176bd7fd...209d45fee56b3c30e8134399acf07f2ed034d99a","Len":3}', 1704349775); INSERT INTO public.action VALUES (1364, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"}],"HeadCommit":{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"},"CompareURL":"Khieu-nai/backend/compare/86025176851040257b456281747dcc6f14bcd5a7...69d18c753f1ddd779264f74a810c688d109b26e4","Len":1}', 1704355729); INSERT INTO public.action VALUES (1827, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/186/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1828, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/186/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1829, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/186/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1997, 11, 7, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681576); INSERT INTO public.action VALUES (1340, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},{"Sha1":"f958d58054337a2fa79a21d97be215ab782e5ead","Message":"fix quyen chinh sua\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T13:27:28+07:00"},{"Sha1":"a765747120a51a414474b08290bd6962ad402549","Message":"fix inputchitieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T11:28:14+07:00"}],"HeadCommit":{"Sha1":"209d45fee56b3c30e8134399acf07f2ed034d99a","Message":"Merge pull request ''thinh'' (#35) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/35\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T13:29:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3f0e55f14d544cea196d2bf018b613a7176bd7fd...209d45fee56b3c30e8134399acf07f2ed034d99a","Len":3}', 1704349775); INSERT INTO public.action VALUES (1341, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f958d58054337a2fa79a21d97be215ab782e5ead...3d35753a6ca494289412e6435ad81b388dce8022","Len":1}', 1704352522); INSERT INTO public.action VALUES (1342, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f958d58054337a2fa79a21d97be215ab782e5ead...3d35753a6ca494289412e6435ad81b388dce8022","Len":1}', 1704352522); INSERT INTO public.action VALUES (1343, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f958d58054337a2fa79a21d97be215ab782e5ead...3d35753a6ca494289412e6435ad81b388dce8022","Len":1}', 1704352522); INSERT INTO public.action VALUES (1344, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f958d58054337a2fa79a21d97be215ab782e5ead...3d35753a6ca494289412e6435ad81b388dce8022","Len":1}', 1704352522); INSERT INTO public.action VALUES (1345, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f958d58054337a2fa79a21d97be215ab782e5ead...3d35753a6ca494289412e6435ad81b388dce8022","Len":1}', 1704352522); INSERT INTO public.action VALUES (1346, 11, 7, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352557); INSERT INTO public.action VALUES (1347, 14, 7, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352557); INSERT INTO public.action VALUES (1348, 1, 7, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352557); INSERT INTO public.action VALUES (1349, 5, 7, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352557); INSERT INTO public.action VALUES (1350, 16, 7, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352557); INSERT INTO public.action VALUES (1351, 11, 11, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352573); INSERT INTO public.action VALUES (1352, 14, 11, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352573); INSERT INTO public.action VALUES (1353, 1, 11, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352573); INSERT INTO public.action VALUES (1354, 5, 11, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352573); INSERT INTO public.action VALUES (1355, 16, 11, 11, 21, 0, false, '', false, '36|add nld change year nhucau', 1704352573); INSERT INTO public.action VALUES (1830, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/177/head', false, '', 1704606639); INSERT INTO public.action VALUES (1831, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/177/head', false, '', 1704606639); INSERT INTO public.action VALUES (1832, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/177/head', false, '', 1704606639); INSERT INTO public.action VALUES (1833, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/177/merge', false, '', 1704606639); INSERT INTO public.action VALUES (1356, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/209d45fee56b3c30e8134399acf07f2ed034d99a...e06ac97be44f6830d36c492759a4857e370bcb1f","Len":2}', 1704352575); INSERT INTO public.action VALUES (1357, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/209d45fee56b3c30e8134399acf07f2ed034d99a...e06ac97be44f6830d36c492759a4857e370bcb1f","Len":2}', 1704352575); INSERT INTO public.action VALUES (1358, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/209d45fee56b3c30e8134399acf07f2ed034d99a...e06ac97be44f6830d36c492759a4857e370bcb1f","Len":2}', 1704352575); INSERT INTO public.action VALUES (1359, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/209d45fee56b3c30e8134399acf07f2ed034d99a...e06ac97be44f6830d36c492759a4857e370bcb1f","Len":2}', 1704352575); INSERT INTO public.action VALUES (1360, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},{"Sha1":"3d35753a6ca494289412e6435ad81b388dce8022","Message":"add nld change year nhucau\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-04T14:15:12+07:00"}],"HeadCommit":{"Sha1":"e06ac97be44f6830d36c492759a4857e370bcb1f","Message":"Merge pull request ''add nld change year nhucau'' (#36) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/36\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-04T14:16:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/209d45fee56b3c30e8134399acf07f2ed034d99a...e06ac97be44f6830d36c492759a4857e370bcb1f","Len":2}', 1704352575); INSERT INTO public.action VALUES (1361, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"}],"HeadCommit":{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"},"CompareURL":"Khieu-nai/backend/compare/86025176851040257b456281747dcc6f14bcd5a7...69d18c753f1ddd779264f74a810c688d109b26e4","Len":1}', 1704355729); INSERT INTO public.action VALUES (1834, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/177/merge', false, '', 1704606639); INSERT INTO public.action VALUES (1365, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"}],"HeadCommit":{"Sha1":"69d18c753f1ddd779264f74a810c688d109b26e4","Message":"update Init Model\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T15:08:38+07:00"},"CompareURL":"Khieu-nai/backend/compare/86025176851040257b456281747dcc6f14bcd5a7...69d18c753f1ddd779264f74a810c688d109b26e4","Len":1}', 1704355729); INSERT INTO public.action VALUES (1366, 15, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"}],"HeadCommit":{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"},"CompareURL":"Khieu-nai/mobile/compare/30880c575192480eba4d0196a8c82d1212457d4d...f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Len":1}', 1704360043); INSERT INTO public.action VALUES (1367, 12, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"}],"HeadCommit":{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"},"CompareURL":"Khieu-nai/mobile/compare/30880c575192480eba4d0196a8c82d1212457d4d...f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Len":1}', 1704360043); INSERT INTO public.action VALUES (1368, 5, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"}],"HeadCommit":{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"},"CompareURL":"Khieu-nai/mobile/compare/30880c575192480eba4d0196a8c82d1212457d4d...f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Len":1}', 1704360043); INSERT INTO public.action VALUES (1369, 1, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"}],"HeadCommit":{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"},"CompareURL":"Khieu-nai/mobile/compare/30880c575192480eba4d0196a8c82d1212457d4d...f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Len":1}', 1704360043); INSERT INTO public.action VALUES (1370, 2, 5, 15, 24, 0, false, 'refs/heads/dev-ios', false, '{"Commits":[{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"}],"HeadCommit":{"Sha1":"f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Message":"login, regis\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-04T16:20:30+07:00"},"CompareURL":"Khieu-nai/mobile/compare/30880c575192480eba4d0196a8c82d1212457d4d...f87e57452ea8eb0c41bbdb0f03c41522f317dfb7","Len":1}', 1704360043); INSERT INTO public.action VALUES (1371, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"}],"HeadCommit":{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"},"CompareURL":"Khieu-nai/backend/compare/69d18c753f1ddd779264f74a810c688d109b26e4...228d97b9fcb505875198e7887766d5424c81f9f8","Len":1}', 1704361828); INSERT INTO public.action VALUES (1372, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"}],"HeadCommit":{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"},"CompareURL":"Khieu-nai/backend/compare/69d18c753f1ddd779264f74a810c688d109b26e4...228d97b9fcb505875198e7887766d5424c81f9f8","Len":1}', 1704361828); INSERT INTO public.action VALUES (1373, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"}],"HeadCommit":{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"},"CompareURL":"Khieu-nai/backend/compare/69d18c753f1ddd779264f74a810c688d109b26e4...228d97b9fcb505875198e7887766d5424c81f9f8","Len":1}', 1704361829); INSERT INTO public.action VALUES (1835, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/177/merge', false, '', 1704606639); INSERT INTO public.action VALUES (1836, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/178/head', false, '', 1704606639); INSERT INTO public.action VALUES (1837, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/178/head', false, '', 1704606639); INSERT INTO public.action VALUES (1838, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/178/head', false, '', 1704606639); INSERT INTO public.action VALUES (1839, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/178/merge', false, '', 1704606639); INSERT INTO public.action VALUES (1374, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"}],"HeadCommit":{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"},"CompareURL":"Khieu-nai/backend/compare/69d18c753f1ddd779264f74a810c688d109b26e4...228d97b9fcb505875198e7887766d5424c81f9f8","Len":1}', 1704361829); INSERT INTO public.action VALUES (1375, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"}],"HeadCommit":{"Sha1":"228d97b9fcb505875198e7887766d5424c81f9f8","Message":"add odata\n","AuthorEmail":"gdtvietnam2019@gmail.com","AuthorName":"vu.nguyen","CommitterEmail":"gdtvietnam2019@gmail.com","CommitterName":"vu.nguyen","Timestamp":"2024-01-04T16:50:21+07:00"},"CompareURL":"Khieu-nai/backend/compare/69d18c753f1ddd779264f74a810c688d109b26e4...228d97b9fcb505875198e7887766d5424c81f9f8","Len":1}', 1704361829); INSERT INTO public.action VALUES (1376, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},{"Sha1":"59e755466bb935225ca4feca563f4ba25d059ec4","Message":"check thêm ngành nghề này đã có trong kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:52:46+07:00"}],"HeadCommit":{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/b104efa75f1c2dc4158c1c6d302501db884230c9...7e2dfc497da7b826f8f961d7acc5a0574f73de12","Len":2}', 1704361840); INSERT INTO public.action VALUES (1377, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},{"Sha1":"59e755466bb935225ca4feca563f4ba25d059ec4","Message":"check thêm ngành nghề này đã có trong kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:52:46+07:00"}],"HeadCommit":{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/b104efa75f1c2dc4158c1c6d302501db884230c9...7e2dfc497da7b826f8f961d7acc5a0574f73de12","Len":2}', 1704361840); INSERT INTO public.action VALUES (1378, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},{"Sha1":"59e755466bb935225ca4feca563f4ba25d059ec4","Message":"check thêm ngành nghề này đã có trong kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:52:46+07:00"}],"HeadCommit":{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/b104efa75f1c2dc4158c1c6d302501db884230c9...7e2dfc497da7b826f8f961d7acc5a0574f73de12","Len":2}', 1704361840); INSERT INTO public.action VALUES (1379, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},{"Sha1":"59e755466bb935225ca4feca563f4ba25d059ec4","Message":"check thêm ngành nghề này đã có trong kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:52:46+07:00"}],"HeadCommit":{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/b104efa75f1c2dc4158c1c6d302501db884230c9...7e2dfc497da7b826f8f961d7acc5a0574f73de12","Len":2}', 1704361840); INSERT INTO public.action VALUES (1380, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},{"Sha1":"59e755466bb935225ca4feca563f4ba25d059ec4","Message":"check thêm ngành nghề này đã có trong kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:52:46+07:00"}],"HeadCommit":{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/b104efa75f1c2dc4158c1c6d302501db884230c9...7e2dfc497da7b826f8f961d7acc5a0574f73de12","Len":2}', 1704361840); INSERT INTO public.action VALUES (1840, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/178/merge', false, '', 1704606639); INSERT INTO public.action VALUES (1381, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},{"Sha1":"59e755466bb935225ca4feca563f4ba25d059ec4","Message":"check thêm ngành nghề này đã có trong kế hoạch\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:52:46+07:00"}],"HeadCommit":{"Sha1":"7e2dfc497da7b826f8f961d7acc5a0574f73de12","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-04T12:53:02+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/b104efa75f1c2dc4158c1c6d302501db884230c9...7e2dfc497da7b826f8f961d7acc5a0574f73de12","Len":2}', 1704361840); INSERT INTO public.action VALUES (1488, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/abb8ae120157a6719fa9094c0b05ff6c11052efd...984ab8bc6fa2d923599f3f1241b528745fabcf57","Len":1}', 1704446412); INSERT INTO public.action VALUES (1489, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/abb8ae120157a6719fa9094c0b05ff6c11052efd...984ab8bc6fa2d923599f3f1241b528745fabcf57","Len":1}', 1704446412); INSERT INTO public.action VALUES (1490, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"}],"HeadCommit":{"Sha1":"984ab8bc6fa2d923599f3f1241b528745fabcf57","Message":"add bao cao TN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T16:20:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/abb8ae120157a6719fa9094c0b05ff6c11052efd...984ab8bc6fa2d923599f3f1241b528745fabcf57","Len":1}', 1704446412); INSERT INTO public.action VALUES (1515, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/984ab8bc6fa2d923599f3f1241b528745fabcf57...a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Len":2}', 1704464876); INSERT INTO public.action VALUES (1516, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/984ab8bc6fa2d923599f3f1241b528745fabcf57...a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Len":2}', 1704464876); INSERT INTO public.action VALUES (1526, 16, 11, 11, 21, 0, false, '', false, '41|thinh', 1704464905); INSERT INTO public.action VALUES (1532, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a560a9bc5fc9ec190342b2afbed08fc5a252c0a9...fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Len":1}', 1704525964); INSERT INTO public.action VALUES (1841, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/178/merge', false, '', 1704606639); INSERT INTO public.action VALUES (1998, 14, 7, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681576); INSERT INTO public.action VALUES (1999, 16, 7, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681576); INSERT INTO public.action VALUES (2000, 1, 7, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681576); INSERT INTO public.action VALUES (2001, 5, 7, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681576); INSERT INTO public.action VALUES (1528, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ae5188bd0ff0b0618b16428867ff1d4c001a580b...1f5dbedbc5ac086f344c259aa6523dd859e55509","Len":3}', 1704464905); INSERT INTO public.action VALUES (1529, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ae5188bd0ff0b0618b16428867ff1d4c001a580b...1f5dbedbc5ac086f344c259aa6523dd859e55509","Len":3}', 1704464905); INSERT INTO public.action VALUES (1530, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ae5188bd0ff0b0618b16428867ff1d4c001a580b...1f5dbedbc5ac086f344c259aa6523dd859e55509","Len":3}', 1704464905); INSERT INTO public.action VALUES (1531, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},{"Sha1":"a560a9bc5fc9ec190342b2afbed08fc5a252c0a9","Message":"fix disabled\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:27:48+07:00"},{"Sha1":"de9a1bc215d3c5c6f82b7648e8a6e063da51500f","Message":"fix disable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-05T21:26:53+07:00"}],"HeadCommit":{"Sha1":"1f5dbedbc5ac086f344c259aa6523dd859e55509","Message":"Merge pull request ''thinh'' (#41) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/41\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-05T21:28:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ae5188bd0ff0b0618b16428867ff1d4c001a580b...1f5dbedbc5ac086f344c259aa6523dd859e55509","Len":3}', 1704464905); INSERT INTO public.action VALUES (2936, 11, 7, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030727); INSERT INTO public.action VALUES (2937, 14, 7, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030727); INSERT INTO public.action VALUES (2938, 16, 7, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030727); INSERT INTO public.action VALUES (2939, 5, 7, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030727); INSERT INTO public.action VALUES (2940, 1, 7, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030727); INSERT INTO public.action VALUES (3077, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"}],"HeadCommit":{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"},"CompareURL":"khieu-nai/backend/compare/d2affd50bad1017bfbc9d6940c7b79c6b93e7380...b91fcae669214f6410e0844cb50560d8313ec508","Len":1}', 1705050154); INSERT INTO public.action VALUES (1534, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a560a9bc5fc9ec190342b2afbed08fc5a252c0a9...fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Len":1}', 1704525964); INSERT INTO public.action VALUES (1535, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a560a9bc5fc9ec190342b2afbed08fc5a252c0a9...fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Len":1}', 1704525964); INSERT INTO public.action VALUES (1536, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a560a9bc5fc9ec190342b2afbed08fc5a252c0a9...fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Len":1}', 1704525964); INSERT INTO public.action VALUES (1542, 11, 11, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526120); INSERT INTO public.action VALUES (1543, 14, 11, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526120); INSERT INTO public.action VALUES (1544, 1, 11, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526120); INSERT INTO public.action VALUES (1545, 5, 11, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526120); INSERT INTO public.action VALUES (1546, 16, 11, 11, 21, 0, false, '', false, '42|add menu bao ccao thong ke', 1704526120); INSERT INTO public.action VALUES (1552, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5...119cfde3f4a42038a41db374df8ff0d36954b1b8","Len":1}', 1704530814); INSERT INTO public.action VALUES (1553, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5...119cfde3f4a42038a41db374df8ff0d36954b1b8","Len":1}', 1704530814); INSERT INTO public.action VALUES (1554, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5...119cfde3f4a42038a41db374df8ff0d36954b1b8","Len":1}', 1704530814); INSERT INTO public.action VALUES (1555, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5...119cfde3f4a42038a41db374df8ff0d36954b1b8","Len":1}', 1704530814); INSERT INTO public.action VALUES (1556, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5...119cfde3f4a42038a41db374df8ff0d36954b1b8","Len":1}', 1704530814); INSERT INTO public.action VALUES (1557, 11, 7, 11, 21, 0, false, '', false, '43|add file', 1704530829); INSERT INTO public.action VALUES (1547, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f5dbedbc5ac086f344c259aa6523dd859e55509...6918848f9c759b000de2893835b5d1c027f8ba14","Len":2}', 1704526121); INSERT INTO public.action VALUES (1548, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f5dbedbc5ac086f344c259aa6523dd859e55509...6918848f9c759b000de2893835b5d1c027f8ba14","Len":2}', 1704526121); INSERT INTO public.action VALUES (1549, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f5dbedbc5ac086f344c259aa6523dd859e55509...6918848f9c759b000de2893835b5d1c027f8ba14","Len":2}', 1704526121); INSERT INTO public.action VALUES (1550, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f5dbedbc5ac086f344c259aa6523dd859e55509...6918848f9c759b000de2893835b5d1c027f8ba14","Len":2}', 1704526121); INSERT INTO public.action VALUES (1551, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},{"Sha1":"fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5","Message":"add menu bao ccao thong ke\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T14:25:56+07:00"}],"HeadCommit":{"Sha1":"6918848f9c759b000de2893835b5d1c027f8ba14","Message":"Merge pull request ''add menu bao ccao thong ke'' (#42) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/42\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T14:28:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1f5dbedbc5ac086f344c259aa6523dd859e55509...6918848f9c759b000de2893835b5d1c027f8ba14","Len":2}', 1704526121); INSERT INTO public.action VALUES (2941, 11, 11, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030758); INSERT INTO public.action VALUES (2942, 14, 11, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030758); INSERT INTO public.action VALUES (2943, 16, 11, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030758); INSERT INTO public.action VALUES (2944, 5, 11, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030758); INSERT INTO public.action VALUES (2945, 1, 11, 11, 21, 0, false, '', false, '85|add fuc in send gmail', 1705030758); INSERT INTO public.action VALUES (3104, 13, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/3/head', false, '', 1705076173); INSERT INTO public.action VALUES (3105, 1, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/3/head', false, '', 1705076173); INSERT INTO public.action VALUES (3106, 4, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/3/head', false, '', 1705076173); INSERT INTO public.action VALUES (1567, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6918848f9c759b000de2893835b5d1c027f8ba14...1d296848df6920c81b2395ba376ff937f4b8849b","Len":2}', 1704530898); INSERT INTO public.action VALUES (1568, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6918848f9c759b000de2893835b5d1c027f8ba14...1d296848df6920c81b2395ba376ff937f4b8849b","Len":2}', 1704530898); INSERT INTO public.action VALUES (1569, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6918848f9c759b000de2893835b5d1c027f8ba14...1d296848df6920c81b2395ba376ff937f4b8849b","Len":2}', 1704530898); INSERT INTO public.action VALUES (1570, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6918848f9c759b000de2893835b5d1c027f8ba14...1d296848df6920c81b2395ba376ff937f4b8849b","Len":2}', 1704530898); INSERT INTO public.action VALUES (1571, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},{"Sha1":"119cfde3f4a42038a41db374df8ff0d36954b1b8","Message":"add file\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T15:46:48+07:00"}],"HeadCommit":{"Sha1":"1d296848df6920c81b2395ba376ff937f4b8849b","Message":"Merge pull request ''add file'' (#43) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/43\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T15:48:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6918848f9c759b000de2893835b5d1c027f8ba14...1d296848df6920c81b2395ba376ff937f4b8849b","Len":2}', 1704530898); INSERT INTO public.action VALUES (1572, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/119cfde3f4a42038a41db374df8ff0d36954b1b8...617e946b080534877c3abc010d4e567d2044a504","Len":1}', 1704533540); INSERT INTO public.action VALUES (1842, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/175/head', false, '', 1704636039); INSERT INTO public.action VALUES (1843, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/175/head', false, '', 1704636039); INSERT INTO public.action VALUES (1573, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/119cfde3f4a42038a41db374df8ff0d36954b1b8...617e946b080534877c3abc010d4e567d2044a504","Len":1}', 1704533540); INSERT INTO public.action VALUES (1574, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/119cfde3f4a42038a41db374df8ff0d36954b1b8...617e946b080534877c3abc010d4e567d2044a504","Len":1}', 1704533540); INSERT INTO public.action VALUES (1575, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/119cfde3f4a42038a41db374df8ff0d36954b1b8...617e946b080534877c3abc010d4e567d2044a504","Len":1}', 1704533540); INSERT INTO public.action VALUES (1576, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/119cfde3f4a42038a41db374df8ff0d36954b1b8...617e946b080534877c3abc010d4e567d2044a504","Len":1}', 1704533540); INSERT INTO public.action VALUES (1577, 11, 7, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533561); INSERT INTO public.action VALUES (1578, 14, 7, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533561); INSERT INTO public.action VALUES (1579, 1, 7, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533561); INSERT INTO public.action VALUES (1580, 5, 7, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533561); INSERT INTO public.action VALUES (1581, 16, 7, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533561); INSERT INTO public.action VALUES (1582, 11, 11, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533602); INSERT INTO public.action VALUES (1583, 14, 11, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533602); INSERT INTO public.action VALUES (1584, 1, 11, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533602); INSERT INTO public.action VALUES (1585, 5, 11, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533602); INSERT INTO public.action VALUES (1586, 16, 11, 11, 21, 0, false, '', false, '44|add 4 task bao cao', 1704533602); INSERT INTO public.action VALUES (1587, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d296848df6920c81b2395ba376ff937f4b8849b...4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Len":2}', 1704533603); INSERT INTO public.action VALUES (1588, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d296848df6920c81b2395ba376ff937f4b8849b...4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Len":2}', 1704533603); INSERT INTO public.action VALUES (1844, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/175/head', false, '', 1704636039); INSERT INTO public.action VALUES (1845, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/175/merge', false, '', 1704636039); INSERT INTO public.action VALUES (1846, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/175/merge', false, '', 1704636039); INSERT INTO public.action VALUES (1589, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d296848df6920c81b2395ba376ff937f4b8849b...4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Len":2}', 1704533603); INSERT INTO public.action VALUES (1590, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d296848df6920c81b2395ba376ff937f4b8849b...4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Len":2}', 1704533603); INSERT INTO public.action VALUES (1591, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},{"Sha1":"617e946b080534877c3abc010d4e567d2044a504","Message":"add 4 task bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:32:14+07:00"}],"HeadCommit":{"Sha1":"4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Message":"Merge pull request ''add 4 task bao cao'' (#44) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/44\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:33:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d296848df6920c81b2395ba376ff937f4b8849b...4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c","Len":2}', 1704533603); INSERT INTO public.action VALUES (1592, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/617e946b080534877c3abc010d4e567d2044a504...bd49447e927e089e113e894c4cecbbc57f723a98","Len":1}', 1704534463); INSERT INTO public.action VALUES (1593, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/617e946b080534877c3abc010d4e567d2044a504...bd49447e927e089e113e894c4cecbbc57f723a98","Len":1}', 1704534463); INSERT INTO public.action VALUES (1594, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/617e946b080534877c3abc010d4e567d2044a504...bd49447e927e089e113e894c4cecbbc57f723a98","Len":1}', 1704534463); INSERT INTO public.action VALUES (1595, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/617e946b080534877c3abc010d4e567d2044a504...bd49447e927e089e113e894c4cecbbc57f723a98","Len":1}', 1704534463); INSERT INTO public.action VALUES (1847, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/175/merge', false, '', 1704636039); INSERT INTO public.action VALUES (1596, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/617e946b080534877c3abc010d4e567d2044a504...bd49447e927e089e113e894c4cecbbc57f723a98","Len":1}', 1704534463); INSERT INTO public.action VALUES (1597, 11, 7, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534498); INSERT INTO public.action VALUES (1598, 14, 7, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534498); INSERT INTO public.action VALUES (1599, 1, 7, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534498); INSERT INTO public.action VALUES (1600, 5, 7, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534498); INSERT INTO public.action VALUES (1601, 16, 7, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534498); INSERT INTO public.action VALUES (1602, 11, 11, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534540); INSERT INTO public.action VALUES (1603, 14, 11, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534541); INSERT INTO public.action VALUES (1604, 1, 11, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534541); INSERT INTO public.action VALUES (1605, 5, 11, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534541); INSERT INTO public.action VALUES (1606, 16, 11, 11, 21, 0, false, '', false, '45|phan row bao cao nha giao', 1704534541); INSERT INTO public.action VALUES (1622, 11, 11, 11, 21, 0, false, '', false, '46|fix css', 1704534900); INSERT INTO public.action VALUES (1623, 14, 11, 11, 21, 0, false, '', false, '46|fix css', 1704534900); INSERT INTO public.action VALUES (1624, 1, 11, 11, 21, 0, false, '', false, '46|fix css', 1704534900); INSERT INTO public.action VALUES (1625, 5, 11, 11, 21, 0, false, '', false, '46|fix css', 1704534900); INSERT INTO public.action VALUES (1626, 16, 11, 11, 21, 0, false, '', false, '46|fix css', 1704534900); INSERT INTO public.action VALUES (1627, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8964d98cd5165235ae9910046babd2b3cb7bf55...d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Len":2}', 1704534900); INSERT INTO public.action VALUES (1628, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8964d98cd5165235ae9910046babd2b3cb7bf55...d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Len":2}', 1704534900); INSERT INTO public.action VALUES (1629, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8964d98cd5165235ae9910046babd2b3cb7bf55...d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Len":2}', 1704534900); INSERT INTO public.action VALUES (1630, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8964d98cd5165235ae9910046babd2b3cb7bf55...d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Len":2}', 1704534900); INSERT INTO public.action VALUES (1607, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c...b8964d98cd5165235ae9910046babd2b3cb7bf55","Len":2}', 1704534542); INSERT INTO public.action VALUES (1608, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c...b8964d98cd5165235ae9910046babd2b3cb7bf55","Len":2}', 1704534542); INSERT INTO public.action VALUES (1609, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c...b8964d98cd5165235ae9910046babd2b3cb7bf55","Len":2}', 1704534542); INSERT INTO public.action VALUES (1610, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c...b8964d98cd5165235ae9910046babd2b3cb7bf55","Len":2}', 1704534542); INSERT INTO public.action VALUES (1611, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},{"Sha1":"bd49447e927e089e113e894c4cecbbc57f723a98","Message":"phan row bao cao nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:47:36+07:00"}],"HeadCommit":{"Sha1":"b8964d98cd5165235ae9910046babd2b3cb7bf55","Message":"Merge pull request ''phan row bao cao nha giao'' (#45) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/45\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:48:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c...b8964d98cd5165235ae9910046babd2b3cb7bf55","Len":2}', 1704534542); INSERT INTO public.action VALUES (1612, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bd49447e927e089e113e894c4cecbbc57f723a98...e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Len":1}', 1704534859); INSERT INTO public.action VALUES (1613, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bd49447e927e089e113e894c4cecbbc57f723a98...e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Len":1}', 1704534859); INSERT INTO public.action VALUES (1614, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bd49447e927e089e113e894c4cecbbc57f723a98...e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Len":1}', 1704534859); INSERT INTO public.action VALUES (1615, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bd49447e927e089e113e894c4cecbbc57f723a98...e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Len":1}', 1704534859); INSERT INTO public.action VALUES (1616, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bd49447e927e089e113e894c4cecbbc57f723a98...e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Len":1}', 1704534859); INSERT INTO public.action VALUES (1617, 11, 7, 11, 21, 0, false, '', false, '46|fix css', 1704534885); INSERT INTO public.action VALUES (1618, 14, 7, 11, 21, 0, false, '', false, '46|fix css', 1704534885); INSERT INTO public.action VALUES (1619, 1, 7, 11, 21, 0, false, '', false, '46|fix css', 1704534885); INSERT INTO public.action VALUES (1620, 5, 7, 11, 21, 0, false, '', false, '46|fix css', 1704534885); INSERT INTO public.action VALUES (1621, 16, 7, 11, 21, 0, false, '', false, '46|fix css', 1704534885); INSERT INTO public.action VALUES (1642, 11, 11, 11, 21, 0, false, '', false, '47|fix css', 1704535534); INSERT INTO public.action VALUES (1643, 14, 11, 11, 21, 0, false, '', false, '47|fix css', 1704535534); INSERT INTO public.action VALUES (1644, 1, 11, 11, 21, 0, false, '', false, '47|fix css', 1704535534); INSERT INTO public.action VALUES (1645, 5, 11, 11, 21, 0, false, '', false, '47|fix css', 1704535534); INSERT INTO public.action VALUES (1646, 16, 11, 11, 21, 0, false, '', false, '47|fix css', 1704535534); INSERT INTO public.action VALUES (1647, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d3c53ffa7ca196f1375e95e6cc5d49bc461272fc...0d37213eee90283bab8283fb75293086478de453","Len":2}', 1704535535); INSERT INTO public.action VALUES (1648, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d3c53ffa7ca196f1375e95e6cc5d49bc461272fc...0d37213eee90283bab8283fb75293086478de453","Len":2}', 1704535535); INSERT INTO public.action VALUES (1848, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/176/head', false, '', 1704636039); INSERT INTO public.action VALUES (1849, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/176/head', false, '', 1704636039); INSERT INTO public.action VALUES (1850, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/176/head', false, '', 1704636039); INSERT INTO public.action VALUES (1851, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/176/merge', false, '', 1704636039); INSERT INTO public.action VALUES (1852, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/176/merge', false, '', 1704636039); INSERT INTO public.action VALUES (1853, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/176/merge', false, '', 1704636039); INSERT INTO public.action VALUES (1631, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},{"Sha1":"e5c3a3e2b2b1535da512fd85ccade301eb9e184d","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T16:54:14+07:00"}],"HeadCommit":{"Sha1":"d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Message":"Merge pull request ''fix css'' (#46) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/46\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T16:54:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8964d98cd5165235ae9910046babd2b3cb7bf55...d3c53ffa7ca196f1375e95e6cc5d49bc461272fc","Len":2}', 1704534900); INSERT INTO public.action VALUES (1632, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e5c3a3e2b2b1535da512fd85ccade301eb9e184d...df9b7ce86feb0b36c4d22201228a3e7f52791f31","Len":1}', 1704535486); INSERT INTO public.action VALUES (1633, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e5c3a3e2b2b1535da512fd85ccade301eb9e184d...df9b7ce86feb0b36c4d22201228a3e7f52791f31","Len":1}', 1704535486); INSERT INTO public.action VALUES (1634, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e5c3a3e2b2b1535da512fd85ccade301eb9e184d...df9b7ce86feb0b36c4d22201228a3e7f52791f31","Len":1}', 1704535486); INSERT INTO public.action VALUES (1635, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e5c3a3e2b2b1535da512fd85ccade301eb9e184d...df9b7ce86feb0b36c4d22201228a3e7f52791f31","Len":1}', 1704535486); INSERT INTO public.action VALUES (1636, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e5c3a3e2b2b1535da512fd85ccade301eb9e184d...df9b7ce86feb0b36c4d22201228a3e7f52791f31","Len":1}', 1704535486); INSERT INTO public.action VALUES (1637, 11, 7, 11, 21, 0, false, '', false, '47|fix css', 1704535519); INSERT INTO public.action VALUES (1638, 14, 7, 11, 21, 0, false, '', false, '47|fix css', 1704535519); INSERT INTO public.action VALUES (1639, 1, 7, 11, 21, 0, false, '', false, '47|fix css', 1704535519); INSERT INTO public.action VALUES (1640, 5, 7, 11, 21, 0, false, '', false, '47|fix css', 1704535519); INSERT INTO public.action VALUES (1641, 16, 7, 11, 21, 0, false, '', false, '47|fix css', 1704535519); INSERT INTO public.action VALUES (1652, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/df9b7ce86feb0b36c4d22201228a3e7f52791f31...9748ba33191bfbf094a58a9f8070796b54ca6c95","Len":1}', 1704538654); INSERT INTO public.action VALUES (1864, 11, 11, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649732); INSERT INTO public.action VALUES (1865, 14, 11, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649732); INSERT INTO public.action VALUES (1866, 1, 11, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649732); INSERT INTO public.action VALUES (1867, 5, 11, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649732); INSERT INTO public.action VALUES (1868, 16, 11, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649732); INSERT INTO public.action VALUES (1950, 11, 11, 11, 21, 0, false, '', false, '56|thinh', 1704679142); INSERT INTO public.action VALUES (1951, 14, 11, 11, 21, 0, false, '', false, '56|thinh', 1704679142); INSERT INTO public.action VALUES (1649, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d3c53ffa7ca196f1375e95e6cc5d49bc461272fc...0d37213eee90283bab8283fb75293086478de453","Len":2}', 1704535535); INSERT INTO public.action VALUES (1650, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d3c53ffa7ca196f1375e95e6cc5d49bc461272fc...0d37213eee90283bab8283fb75293086478de453","Len":2}', 1704535535); INSERT INTO public.action VALUES (1651, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},{"Sha1":"df9b7ce86feb0b36c4d22201228a3e7f52791f31","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:04:40+07:00"}],"HeadCommit":{"Sha1":"0d37213eee90283bab8283fb75293086478de453","Message":"Merge pull request ''fix css'' (#47) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/47\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T17:05:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d3c53ffa7ca196f1375e95e6cc5d49bc461272fc...0d37213eee90283bab8283fb75293086478de453","Len":2}', 1704535535); INSERT INTO public.action VALUES (2946, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d48e38d9a17ce739803e4e98d015c2fc443742ac...6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Len":2}', 1705030759); INSERT INTO public.action VALUES (2947, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d48e38d9a17ce739803e4e98d015c2fc443742ac...6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Len":2}', 1705030759); INSERT INTO public.action VALUES (3029, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6...8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Len":1}', 1705047285); INSERT INTO public.action VALUES (3107, 13, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/3/merge', false, '', 1705076173); INSERT INTO public.action VALUES (1653, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/df9b7ce86feb0b36c4d22201228a3e7f52791f31...9748ba33191bfbf094a58a9f8070796b54ca6c95","Len":1}', 1704538654); INSERT INTO public.action VALUES (1654, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/df9b7ce86feb0b36c4d22201228a3e7f52791f31...9748ba33191bfbf094a58a9f8070796b54ca6c95","Len":1}', 1704538654); INSERT INTO public.action VALUES (1655, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/df9b7ce86feb0b36c4d22201228a3e7f52791f31...9748ba33191bfbf094a58a9f8070796b54ca6c95","Len":1}', 1704538654); INSERT INTO public.action VALUES (1656, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/df9b7ce86feb0b36c4d22201228a3e7f52791f31...9748ba33191bfbf094a58a9f8070796b54ca6c95","Len":1}', 1704538654); INSERT INTO public.action VALUES (2948, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d48e38d9a17ce739803e4e98d015c2fc443742ac...6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Len":2}', 1705030759); INSERT INTO public.action VALUES (2949, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d48e38d9a17ce739803e4e98d015c2fc443742ac...6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Len":2}', 1705030759); INSERT INTO public.action VALUES (2950, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Message":"Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T10:39:12+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d48e38d9a17ce739803e4e98d015c2fc443742ac...6e16637a65f7d4d092a3cdbdbd178eb1636964e1","Len":2}', 1705030759); INSERT INTO public.action VALUES (3108, 1, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/3/merge', false, '', 1705076173); INSERT INTO public.action VALUES (1667, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0d37213eee90283bab8283fb75293086478de453...95f1005c26023ce855c24052f06d6e81ce780724","Len":2}', 1704538859); INSERT INTO public.action VALUES (1668, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0d37213eee90283bab8283fb75293086478de453...95f1005c26023ce855c24052f06d6e81ce780724","Len":2}', 1704538859); INSERT INTO public.action VALUES (1669, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0d37213eee90283bab8283fb75293086478de453...95f1005c26023ce855c24052f06d6e81ce780724","Len":2}', 1704538859); INSERT INTO public.action VALUES (1670, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0d37213eee90283bab8283fb75293086478de453...95f1005c26023ce855c24052f06d6e81ce780724","Len":2}', 1704538859); INSERT INTO public.action VALUES (1671, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},{"Sha1":"9748ba33191bfbf094a58a9f8070796b54ca6c95","Message":"fix height body item menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T17:56:26+07:00"}],"HeadCommit":{"Sha1":"95f1005c26023ce855c24052f06d6e81ce780724","Message":"Merge pull request ''fix height body item menu'' (#48) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/48\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:00:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0d37213eee90283bab8283fb75293086478de453...95f1005c26023ce855c24052f06d6e81ce780724","Len":2}', 1704538859); INSERT INTO public.action VALUES (1672, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9748ba33191bfbf094a58a9f8070796b54ca6c95...4d34351dde0810f72be0eb994338cf114049dace","Len":1}', 1704540477); INSERT INTO public.action VALUES (1673, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9748ba33191bfbf094a58a9f8070796b54ca6c95...4d34351dde0810f72be0eb994338cf114049dace","Len":1}', 1704540477); INSERT INTO public.action VALUES (1674, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9748ba33191bfbf094a58a9f8070796b54ca6c95...4d34351dde0810f72be0eb994338cf114049dace","Len":1}', 1704540477); INSERT INTO public.action VALUES (1675, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9748ba33191bfbf094a58a9f8070796b54ca6c95...4d34351dde0810f72be0eb994338cf114049dace","Len":1}', 1704540477); INSERT INTO public.action VALUES (1676, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9748ba33191bfbf094a58a9f8070796b54ca6c95...4d34351dde0810f72be0eb994338cf114049dace","Len":1}', 1704540477); INSERT INTO public.action VALUES (1677, 11, 7, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540571); INSERT INTO public.action VALUES (1678, 14, 7, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540571); INSERT INTO public.action VALUES (1679, 1, 7, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540571); INSERT INTO public.action VALUES (1680, 5, 7, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540571); INSERT INTO public.action VALUES (1681, 16, 7, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540571); INSERT INTO public.action VALUES (1682, 11, 11, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540616); INSERT INTO public.action VALUES (1683, 14, 11, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540616); INSERT INTO public.action VALUES (1684, 1, 11, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540616); INSERT INTO public.action VALUES (1685, 5, 11, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540616); INSERT INTO public.action VALUES (1686, 16, 11, 11, 21, 0, false, '', false, '49|update title menu bao cao', 1704540616); INSERT INTO public.action VALUES (1687, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/95f1005c26023ce855c24052f06d6e81ce780724...b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Len":2}', 1704540616); INSERT INTO public.action VALUES (1688, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/95f1005c26023ce855c24052f06d6e81ce780724...b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Len":2}', 1704540616); INSERT INTO public.action VALUES (3109, 4, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/3/merge', false, '', 1705076173); INSERT INTO public.action VALUES (3222, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/121/head', false, '', 1705164372); INSERT INTO public.action VALUES (1689, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/95f1005c26023ce855c24052f06d6e81ce780724...b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Len":2}', 1704540616); INSERT INTO public.action VALUES (1690, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/95f1005c26023ce855c24052f06d6e81ce780724...b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Len":2}', 1704540616); INSERT INTO public.action VALUES (1691, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},{"Sha1":"4d34351dde0810f72be0eb994338cf114049dace","Message":"update title menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T18:27:52+07:00"}],"HeadCommit":{"Sha1":"b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Message":"Merge pull request ''update title menu bao cao'' (#49) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/49\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T18:30:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/95f1005c26023ce855c24052f06d6e81ce780724...b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af","Len":2}', 1704540616); INSERT INTO public.action VALUES (1692, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4d34351dde0810f72be0eb994338cf114049dace...78578129269292fceb7625c884e5ea7eed543acb","Len":1}', 1704558830); INSERT INTO public.action VALUES (1693, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4d34351dde0810f72be0eb994338cf114049dace...78578129269292fceb7625c884e5ea7eed543acb","Len":1}', 1704558830); INSERT INTO public.action VALUES (1694, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4d34351dde0810f72be0eb994338cf114049dace...78578129269292fceb7625c884e5ea7eed543acb","Len":1}', 1704558830); INSERT INTO public.action VALUES (1695, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4d34351dde0810f72be0eb994338cf114049dace...78578129269292fceb7625c884e5ea7eed543acb","Len":1}', 1704558830); INSERT INTO public.action VALUES (1952, 16, 11, 11, 21, 0, false, '', false, '56|thinh', 1704679142); INSERT INTO public.action VALUES (1953, 1, 11, 11, 21, 0, false, '', false, '56|thinh', 1704679142); INSERT INTO public.action VALUES (1696, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4d34351dde0810f72be0eb994338cf114049dace...78578129269292fceb7625c884e5ea7eed543acb","Len":1}', 1704558830); INSERT INTO public.action VALUES (1697, 11, 7, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558889); INSERT INTO public.action VALUES (1698, 14, 7, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558889); INSERT INTO public.action VALUES (1699, 1, 7, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558889); INSERT INTO public.action VALUES (1700, 5, 7, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558889); INSERT INTO public.action VALUES (1701, 16, 7, 11, 21, 0, false, '', false, '50|fix giao dien', 1704558889); INSERT INTO public.action VALUES (1707, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af...ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Len":2}', 1704558907); INSERT INTO public.action VALUES (1708, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af...ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Len":2}', 1704558907); INSERT INTO public.action VALUES (1709, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af...ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Len":2}', 1704558907); INSERT INTO public.action VALUES (1710, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af...ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Len":2}', 1704558907); INSERT INTO public.action VALUES (1733, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8b1e9d8ca222077ac01cd383e3f4818284508ec...5185419c13b6fec46874892354cc8730462e41f4","Len":1}', 1704561626); INSERT INTO public.action VALUES (1954, 5, 11, 11, 21, 0, false, '', false, '56|thinh', 1704679142); INSERT INTO public.action VALUES (1711, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},{"Sha1":"78578129269292fceb7625c884e5ea7eed543acb","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:32:49+07:00"}],"HeadCommit":{"Sha1":"ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Message":"Merge pull request ''fix giao dien'' (#50) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/50\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:35:00+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af...ab844c362a09a6559ca0a8a4b5d0ace86a82784b","Len":2}', 1704558907); INSERT INTO public.action VALUES (1712, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/78578129269292fceb7625c884e5ea7eed543acb...b8b1e9d8ca222077ac01cd383e3f4818284508ec","Len":1}', 1704559588); INSERT INTO public.action VALUES (1713, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/78578129269292fceb7625c884e5ea7eed543acb...b8b1e9d8ca222077ac01cd383e3f4818284508ec","Len":1}', 1704559588); INSERT INTO public.action VALUES (1714, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/78578129269292fceb7625c884e5ea7eed543acb...b8b1e9d8ca222077ac01cd383e3f4818284508ec","Len":1}', 1704559588); INSERT INTO public.action VALUES (1715, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/78578129269292fceb7625c884e5ea7eed543acb...b8b1e9d8ca222077ac01cd383e3f4818284508ec","Len":1}', 1704559588); INSERT INTO public.action VALUES (1716, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/78578129269292fceb7625c884e5ea7eed543acb...b8b1e9d8ca222077ac01cd383e3f4818284508ec","Len":1}', 1704559588); INSERT INTO public.action VALUES (1717, 11, 7, 11, 21, 0, false, '', false, '51|add ui screen', 1704559647); INSERT INTO public.action VALUES (1718, 14, 7, 11, 21, 0, false, '', false, '51|add ui screen', 1704559647); INSERT INTO public.action VALUES (1719, 1, 7, 11, 21, 0, false, '', false, '51|add ui screen', 1704559647); INSERT INTO public.action VALUES (1720, 5, 7, 11, 21, 0, false, '', false, '51|add ui screen', 1704559647); INSERT INTO public.action VALUES (1721, 16, 7, 11, 21, 0, false, '', false, '51|add ui screen', 1704559647); INSERT INTO public.action VALUES (1742, 11, 11, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561829); INSERT INTO public.action VALUES (1743, 14, 11, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561829); INSERT INTO public.action VALUES (1744, 1, 11, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561829); INSERT INTO public.action VALUES (1745, 5, 11, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561829); INSERT INTO public.action VALUES (1746, 16, 11, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561829); INSERT INTO public.action VALUES (1753, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5185419c13b6fec46874892354cc8730462e41f4...2a6e8489b87520d37042b61f7db2344e7af73158","Len":1}', 1704562828); INSERT INTO public.action VALUES (1970, 11, 11, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679845); INSERT INTO public.action VALUES (1727, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ab844c362a09a6559ca0a8a4b5d0ace86a82784b...9088ce508353da84638b2c28888657686694e6d5","Len":2}', 1704559664); INSERT INTO public.action VALUES (1728, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ab844c362a09a6559ca0a8a4b5d0ace86a82784b...9088ce508353da84638b2c28888657686694e6d5","Len":2}', 1704559664); INSERT INTO public.action VALUES (1729, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ab844c362a09a6559ca0a8a4b5d0ace86a82784b...9088ce508353da84638b2c28888657686694e6d5","Len":2}', 1704559664); INSERT INTO public.action VALUES (1730, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ab844c362a09a6559ca0a8a4b5d0ace86a82784b...9088ce508353da84638b2c28888657686694e6d5","Len":2}', 1704559664); INSERT INTO public.action VALUES (1731, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},{"Sha1":"b8b1e9d8ca222077ac01cd383e3f4818284508ec","Message":"add ui screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-06T23:46:20+07:00"}],"HeadCommit":{"Sha1":"9088ce508353da84638b2c28888657686694e6d5","Message":"Merge pull request ''add ui screen'' (#51) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/51\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-06T23:47:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ab844c362a09a6559ca0a8a4b5d0ace86a82784b...9088ce508353da84638b2c28888657686694e6d5","Len":2}', 1704559664); INSERT INTO public.action VALUES (1732, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8b1e9d8ca222077ac01cd383e3f4818284508ec...5185419c13b6fec46874892354cc8730462e41f4","Len":1}', 1704561626); INSERT INTO public.action VALUES (1737, 11, 7, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561813); INSERT INTO public.action VALUES (1738, 14, 7, 11, 21, 0, false, '', false, '52|update fontfamily', 1704561813); INSERT INTO public.action VALUES (1734, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8b1e9d8ca222077ac01cd383e3f4818284508ec...5185419c13b6fec46874892354cc8730462e41f4","Len":1}', 1704561626); INSERT INTO public.action VALUES (1735, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8b1e9d8ca222077ac01cd383e3f4818284508ec...5185419c13b6fec46874892354cc8730462e41f4","Len":1}', 1704561626); INSERT INTO public.action VALUES (1736, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b8b1e9d8ca222077ac01cd383e3f4818284508ec...5185419c13b6fec46874892354cc8730462e41f4","Len":1}', 1704561626); INSERT INTO public.action VALUES (2951, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"}],"HeadCommit":{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"},"CompareURL":"khieu-nai/backend/compare/f6cf877bbfc129833517eb37d42f3a51e3aa40c7...d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Len":1}', 1705033069); INSERT INTO public.action VALUES (2952, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"}],"HeadCommit":{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"},"CompareURL":"khieu-nai/backend/compare/f6cf877bbfc129833517eb37d42f3a51e3aa40c7...d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Len":1}', 1705033069); INSERT INTO public.action VALUES (2953, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"}],"HeadCommit":{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"},"CompareURL":"khieu-nai/backend/compare/f6cf877bbfc129833517eb37d42f3a51e3aa40c7...d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Len":1}', 1705033069); INSERT INTO public.action VALUES (2954, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"}],"HeadCommit":{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"},"CompareURL":"khieu-nai/backend/compare/f6cf877bbfc129833517eb37d42f3a51e3aa40c7...d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Len":1}', 1705033069); INSERT INTO public.action VALUES (2955, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"}],"HeadCommit":{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"},"CompareURL":"khieu-nai/backend/compare/f6cf877bbfc129833517eb37d42f3a51e3aa40c7...d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Len":1}', 1705033069); INSERT INTO public.action VALUES (2956, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"}],"HeadCommit":{"Sha1":"d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T11:17:42+07:00"},"CompareURL":"khieu-nai/backend/compare/f6cf877bbfc129833517eb37d42f3a51e3aa40c7...d2affd50bad1017bfbc9d6940c7b79c6b93e7380","Len":1}', 1705033069); INSERT INTO public.action VALUES (3110, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/127/head', false, '', 1705105569); INSERT INTO public.action VALUES (3111, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/127/head', false, '', 1705105570); INSERT INTO public.action VALUES (3112, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/127/head', false, '', 1705105570); INSERT INTO public.action VALUES (3113, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/127/merge', false, '', 1705105570); INSERT INTO public.action VALUES (1747, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9088ce508353da84638b2c28888657686694e6d5...06d085be3928daaed5477b3b93f0b645021dc268","Len":2}', 1704561831); INSERT INTO public.action VALUES (1748, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9088ce508353da84638b2c28888657686694e6d5...06d085be3928daaed5477b3b93f0b645021dc268","Len":2}', 1704561831); INSERT INTO public.action VALUES (1749, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9088ce508353da84638b2c28888657686694e6d5...06d085be3928daaed5477b3b93f0b645021dc268","Len":2}', 1704561831); INSERT INTO public.action VALUES (1750, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9088ce508353da84638b2c28888657686694e6d5...06d085be3928daaed5477b3b93f0b645021dc268","Len":2}', 1704561831); INSERT INTO public.action VALUES (1751, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},{"Sha1":"5185419c13b6fec46874892354cc8730462e41f4","Message":"update fontfamily\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:20:17+07:00"}],"HeadCommit":{"Sha1":"06d085be3928daaed5477b3b93f0b645021dc268","Message":"Merge pull request ''update fontfamily'' (#52) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/52\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:23:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9088ce508353da84638b2c28888657686694e6d5...06d085be3928daaed5477b3b93f0b645021dc268","Len":2}', 1704561831); INSERT INTO public.action VALUES (1752, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5185419c13b6fec46874892354cc8730462e41f4...2a6e8489b87520d37042b61f7db2344e7af73158","Len":1}', 1704562828); INSERT INTO public.action VALUES (1782, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/179/head', false, '', 1704577239); INSERT INTO public.action VALUES (1754, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5185419c13b6fec46874892354cc8730462e41f4...2a6e8489b87520d37042b61f7db2344e7af73158","Len":1}', 1704562828); INSERT INTO public.action VALUES (1755, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5185419c13b6fec46874892354cc8730462e41f4...2a6e8489b87520d37042b61f7db2344e7af73158","Len":1}', 1704562828); INSERT INTO public.action VALUES (1756, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5185419c13b6fec46874892354cc8730462e41f4...2a6e8489b87520d37042b61f7db2344e7af73158","Len":1}', 1704562828); INSERT INTO public.action VALUES (1757, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"}],"HeadCommit":{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2a6e8489b87520d37042b61f7db2344e7af73158...45b9c678d73d0bd0daa0fe70c719bc40055f6428","Len":1}', 1704563430); INSERT INTO public.action VALUES (1758, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"}],"HeadCommit":{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2a6e8489b87520d37042b61f7db2344e7af73158...45b9c678d73d0bd0daa0fe70c719bc40055f6428","Len":1}', 1704563430); INSERT INTO public.action VALUES (1759, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"}],"HeadCommit":{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2a6e8489b87520d37042b61f7db2344e7af73158...45b9c678d73d0bd0daa0fe70c719bc40055f6428","Len":1}', 1704563430); INSERT INTO public.action VALUES (1760, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"}],"HeadCommit":{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2a6e8489b87520d37042b61f7db2344e7af73158...45b9c678d73d0bd0daa0fe70c719bc40055f6428","Len":1}', 1704563430); INSERT INTO public.action VALUES (1761, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"}],"HeadCommit":{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2a6e8489b87520d37042b61f7db2344e7af73158...45b9c678d73d0bd0daa0fe70c719bc40055f6428","Len":1}', 1704563430); INSERT INTO public.action VALUES (1762, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"}],"HeadCommit":{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/45b9c678d73d0bd0daa0fe70c719bc40055f6428...b4cb97cfc03652702704d947d95da87772a7267a","Len":1}', 1704563471); INSERT INTO public.action VALUES (1763, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"}],"HeadCommit":{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/45b9c678d73d0bd0daa0fe70c719bc40055f6428...b4cb97cfc03652702704d947d95da87772a7267a","Len":1}', 1704563471); INSERT INTO public.action VALUES (1764, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"}],"HeadCommit":{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/45b9c678d73d0bd0daa0fe70c719bc40055f6428...b4cb97cfc03652702704d947d95da87772a7267a","Len":1}', 1704563471); INSERT INTO public.action VALUES (1765, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"}],"HeadCommit":{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/45b9c678d73d0bd0daa0fe70c719bc40055f6428...b4cb97cfc03652702704d947d95da87772a7267a","Len":1}', 1704563471); INSERT INTO public.action VALUES (1766, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"}],"HeadCommit":{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/45b9c678d73d0bd0daa0fe70c719bc40055f6428...b4cb97cfc03652702704d947d95da87772a7267a","Len":1}', 1704563471); INSERT INTO public.action VALUES (1767, 11, 7, 11, 21, 0, false, '', false, '53|thinh', 1704563537); INSERT INTO public.action VALUES (1768, 14, 7, 11, 21, 0, false, '', false, '53|thinh', 1704563537); INSERT INTO public.action VALUES (1769, 1, 7, 11, 21, 0, false, '', false, '53|thinh', 1704563537); INSERT INTO public.action VALUES (1770, 5, 7, 11, 21, 0, false, '', false, '53|thinh', 1704563537); INSERT INTO public.action VALUES (1771, 16, 7, 11, 21, 0, false, '', false, '53|thinh', 1704563537); INSERT INTO public.action VALUES (1772, 11, 11, 11, 21, 0, false, '', false, '53|thinh', 1704563578); INSERT INTO public.action VALUES (1773, 14, 11, 11, 21, 0, false, '', false, '53|thinh', 1704563578); INSERT INTO public.action VALUES (1774, 1, 11, 11, 21, 0, false, '', false, '53|thinh', 1704563578); INSERT INTO public.action VALUES (1775, 5, 11, 11, 21, 0, false, '', false, '53|thinh', 1704563578); INSERT INTO public.action VALUES (1776, 16, 11, 11, 21, 0, false, '', false, '53|thinh', 1704563578); INSERT INTO public.action VALUES (1777, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/06d085be3928daaed5477b3b93f0b645021dc268...2681e6728650033a8895e8b079f6af34a88c842c","Len":4}', 1704563579); INSERT INTO public.action VALUES (1783, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/179/head', false, '', 1704577239); INSERT INTO public.action VALUES (1784, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/179/head', false, '', 1704577239); INSERT INTO public.action VALUES (1785, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/179/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1786, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/179/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1787, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/179/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1788, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/180/head', false, '', 1704577239); INSERT INTO public.action VALUES (1789, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/180/head', false, '', 1704577239); INSERT INTO public.action VALUES (1790, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/180/head', false, '', 1704577239); INSERT INTO public.action VALUES (1791, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/180/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1792, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/180/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1793, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/180/merge', false, '', 1704577239); INSERT INTO public.action VALUES (1778, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/06d085be3928daaed5477b3b93f0b645021dc268...2681e6728650033a8895e8b079f6af34a88c842c","Len":4}', 1704563579); INSERT INTO public.action VALUES (2957, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},{"Sha1":"452941640be0fe4ba9d7a470d65a2dd2298f1ec7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:16+07:00"},{"Sha1":"b335b4c4867af438f52809be0436486e090bc4c5","Message":"update baocao TS dia phuong\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:10+07:00"},{"Sha1":"c1242c0cc36db357f358465b19daf6661c5a5604","Message":"check xóa ngành nghề trong kế hoạch đã gửi\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:25:16+07:00"},{"Sha1":"d60353fc6e819e577c1d0a1e119257bc185fb22b","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:17:29+07:00"}],"HeadCommit":{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2b39a2404c8800424e13d56f5702c07c9261c67b...869268d636fa17b9ae86c4f0ce751839607f6610","Len":7}', 1705037172); INSERT INTO public.action VALUES (2958, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},{"Sha1":"452941640be0fe4ba9d7a470d65a2dd2298f1ec7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:16+07:00"},{"Sha1":"b335b4c4867af438f52809be0436486e090bc4c5","Message":"update baocao TS dia phuong\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:10+07:00"},{"Sha1":"c1242c0cc36db357f358465b19daf6661c5a5604","Message":"check xóa ngành nghề trong kế hoạch đã gửi\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:25:16+07:00"},{"Sha1":"d60353fc6e819e577c1d0a1e119257bc185fb22b","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:17:29+07:00"}],"HeadCommit":{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2b39a2404c8800424e13d56f5702c07c9261c67b...869268d636fa17b9ae86c4f0ce751839607f6610","Len":7}', 1705037172); INSERT INTO public.action VALUES (2959, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},{"Sha1":"452941640be0fe4ba9d7a470d65a2dd2298f1ec7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:16+07:00"},{"Sha1":"b335b4c4867af438f52809be0436486e090bc4c5","Message":"update baocao TS dia phuong\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:10+07:00"},{"Sha1":"c1242c0cc36db357f358465b19daf6661c5a5604","Message":"check xóa ngành nghề trong kế hoạch đã gửi\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:25:16+07:00"},{"Sha1":"d60353fc6e819e577c1d0a1e119257bc185fb22b","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:17:29+07:00"}],"HeadCommit":{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2b39a2404c8800424e13d56f5702c07c9261c67b...869268d636fa17b9ae86c4f0ce751839607f6610","Len":7}', 1705037172); INSERT INTO public.action VALUES (3114, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/127/merge', false, '', 1705105570); INSERT INTO public.action VALUES (3115, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/127/merge', false, '', 1705105570); INSERT INTO public.action VALUES (1779, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/06d085be3928daaed5477b3b93f0b645021dc268...2681e6728650033a8895e8b079f6af34a88c842c","Len":4}', 1704563579); INSERT INTO public.action VALUES (1780, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/06d085be3928daaed5477b3b93f0b645021dc268...2681e6728650033a8895e8b079f6af34a88c842c","Len":4}', 1704563579); INSERT INTO public.action VALUES (1781, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},{"Sha1":"b4cb97cfc03652702704d947d95da87772a7267a","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:51:03+07:00"},{"Sha1":"45b9c678d73d0bd0daa0fe70c719bc40055f6428","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:50:20+07:00"},{"Sha1":"2a6e8489b87520d37042b61f7db2344e7af73158","Message":"css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-07T00:40:18+07:00"}],"HeadCommit":{"Sha1":"2681e6728650033a8895e8b079f6af34a88c842c","Message":"Merge pull request ''thinh'' (#53) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/53\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-07T00:52:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/06d085be3928daaed5477b3b93f0b645021dc268...2681e6728650033a8895e8b079f6af34a88c842c","Len":4}', 1704563579); INSERT INTO public.action VALUES (1854, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4cb97cfc03652702704d947d95da87772a7267a...de110d6bef4e4af5e2f1749a46e5000bab208e47","Len":1}', 1704649685); INSERT INTO public.action VALUES (1855, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4cb97cfc03652702704d947d95da87772a7267a...de110d6bef4e4af5e2f1749a46e5000bab208e47","Len":1}', 1704649685); INSERT INTO public.action VALUES (1971, 14, 11, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679845); INSERT INTO public.action VALUES (1972, 16, 11, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679845); INSERT INTO public.action VALUES (1856, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4cb97cfc03652702704d947d95da87772a7267a...de110d6bef4e4af5e2f1749a46e5000bab208e47","Len":1}', 1704649685); INSERT INTO public.action VALUES (1857, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4cb97cfc03652702704d947d95da87772a7267a...de110d6bef4e4af5e2f1749a46e5000bab208e47","Len":1}', 1704649685); INSERT INTO public.action VALUES (1858, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4cb97cfc03652702704d947d95da87772a7267a...de110d6bef4e4af5e2f1749a46e5000bab208e47","Len":1}', 1704649685); INSERT INTO public.action VALUES (1859, 11, 7, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649713); INSERT INTO public.action VALUES (1860, 14, 7, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649714); INSERT INTO public.action VALUES (1861, 1, 7, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649714); INSERT INTO public.action VALUES (1862, 5, 7, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649714); INSERT INTO public.action VALUES (1863, 16, 7, 11, 21, 0, false, '', false, '54|update search menu bao cao', 1704649714); INSERT INTO public.action VALUES (1884, 11, 11, 11, 21, 0, false, '', false, '55|fix focus search', 1704650453); INSERT INTO public.action VALUES (1885, 14, 11, 11, 21, 0, false, '', false, '55|fix focus search', 1704650453); INSERT INTO public.action VALUES (1886, 1, 11, 11, 21, 0, false, '', false, '55|fix focus search', 1704650453); INSERT INTO public.action VALUES (1887, 5, 11, 11, 21, 0, false, '', false, '55|fix focus search', 1704650453); INSERT INTO public.action VALUES (1888, 16, 11, 11, 21, 0, false, '', false, '55|fix focus search', 1704650453); INSERT INTO public.action VALUES (1889, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/90acec64f4430f307723d76cea501291a61614f9...b9c768a9904229490cf45090e6edc9f229f94497","Len":2}', 1704650455); INSERT INTO public.action VALUES (2960, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},{"Sha1":"452941640be0fe4ba9d7a470d65a2dd2298f1ec7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:16+07:00"},{"Sha1":"b335b4c4867af438f52809be0436486e090bc4c5","Message":"update baocao TS dia phuong\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:10+07:00"},{"Sha1":"c1242c0cc36db357f358465b19daf6661c5a5604","Message":"check xóa ngành nghề trong kế hoạch đã gửi\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:25:16+07:00"},{"Sha1":"d60353fc6e819e577c1d0a1e119257bc185fb22b","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:17:29+07:00"}],"HeadCommit":{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2b39a2404c8800424e13d56f5702c07c9261c67b...869268d636fa17b9ae86c4f0ce751839607f6610","Len":7}', 1705037172); INSERT INTO public.action VALUES (3116, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/128/head', false, '', 1705105570); INSERT INTO public.action VALUES (3117, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/128/head', false, '', 1705105570); INSERT INTO public.action VALUES (3118, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/128/head', false, '', 1705105570); INSERT INTO public.action VALUES (3119, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/128/merge', false, '', 1705105570); INSERT INTO public.action VALUES (3120, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/128/merge', false, '', 1705105570); INSERT INTO public.action VALUES (3121, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/128/merge', false, '', 1705105570); INSERT INTO public.action VALUES (1869, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2681e6728650033a8895e8b079f6af34a88c842c...90acec64f4430f307723d76cea501291a61614f9","Len":2}', 1704649734); INSERT INTO public.action VALUES (1870, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2681e6728650033a8895e8b079f6af34a88c842c...90acec64f4430f307723d76cea501291a61614f9","Len":2}', 1704649734); INSERT INTO public.action VALUES (1871, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2681e6728650033a8895e8b079f6af34a88c842c...90acec64f4430f307723d76cea501291a61614f9","Len":2}', 1704649734); INSERT INTO public.action VALUES (1872, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2681e6728650033a8895e8b079f6af34a88c842c...90acec64f4430f307723d76cea501291a61614f9","Len":2}', 1704649734); INSERT INTO public.action VALUES (1873, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},{"Sha1":"de110d6bef4e4af5e2f1749a46e5000bab208e47","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:47:28+07:00"}],"HeadCommit":{"Sha1":"90acec64f4430f307723d76cea501291a61614f9","Message":"Merge pull request ''update search menu bao cao'' (#54) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/54\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T00:48:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2681e6728650033a8895e8b079f6af34a88c842c...90acec64f4430f307723d76cea501291a61614f9","Len":2}', 1704649734); INSERT INTO public.action VALUES (1874, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/de110d6bef4e4af5e2f1749a46e5000bab208e47...1d8f88af23f789b2ede493c1d79dd803e096bb05","Len":1}', 1704650051); INSERT INTO public.action VALUES (1875, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/de110d6bef4e4af5e2f1749a46e5000bab208e47...1d8f88af23f789b2ede493c1d79dd803e096bb05","Len":1}', 1704650051); INSERT INTO public.action VALUES (1876, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/de110d6bef4e4af5e2f1749a46e5000bab208e47...1d8f88af23f789b2ede493c1d79dd803e096bb05","Len":1}', 1704650051); INSERT INTO public.action VALUES (1877, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/de110d6bef4e4af5e2f1749a46e5000bab208e47...1d8f88af23f789b2ede493c1d79dd803e096bb05","Len":1}', 1704650051); INSERT INTO public.action VALUES (1878, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/de110d6bef4e4af5e2f1749a46e5000bab208e47...1d8f88af23f789b2ede493c1d79dd803e096bb05","Len":1}', 1704650051); INSERT INTO public.action VALUES (1879, 11, 7, 11, 21, 0, false, '', false, '55|fix focus search', 1704650082); INSERT INTO public.action VALUES (1880, 14, 7, 11, 21, 0, false, '', false, '55|fix focus search', 1704650082); INSERT INTO public.action VALUES (1881, 1, 7, 11, 21, 0, false, '', false, '55|fix focus search', 1704650082); INSERT INTO public.action VALUES (1882, 5, 7, 11, 21, 0, false, '', false, '55|fix focus search', 1704650082); INSERT INTO public.action VALUES (1883, 16, 7, 11, 21, 0, false, '', false, '55|fix focus search', 1704650082); INSERT INTO public.action VALUES (1890, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/90acec64f4430f307723d76cea501291a61614f9...b9c768a9904229490cf45090e6edc9f229f94497","Len":2}', 1704650455); INSERT INTO public.action VALUES (1891, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/90acec64f4430f307723d76cea501291a61614f9...b9c768a9904229490cf45090e6edc9f229f94497","Len":2}', 1704650455); INSERT INTO public.action VALUES (1930, 1, 5, 1, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"}],"HeadCommit":{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"},"CompareURL":"Khieu-nai/admin/compare/00cf5f9186ddbc5f46a0cdf5a670a513403947b9...a4eda163411b228d47b45cec507a829d420b9a67","Len":1}', 1704676617); INSERT INTO public.action VALUES (1973, 1, 11, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679845); INSERT INTO public.action VALUES (1974, 5, 11, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679845); INSERT INTO public.action VALUES (1892, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/90acec64f4430f307723d76cea501291a61614f9...b9c768a9904229490cf45090e6edc9f229f94497","Len":2}', 1704650455); INSERT INTO public.action VALUES (1893, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},{"Sha1":"1d8f88af23f789b2ede493c1d79dd803e096bb05","Message":"fix focus search\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T00:54:05+07:00"}],"HeadCommit":{"Sha1":"b9c768a9904229490cf45090e6edc9f229f94497","Message":"Merge pull request ''fix focus search'' (#55) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/55\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T01:00:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/90acec64f4430f307723d76cea501291a61614f9...b9c768a9904229490cf45090e6edc9f229f94497","Len":2}', 1704650455); INSERT INTO public.action VALUES (1894, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/169/head', false, '', 1704665438); INSERT INTO public.action VALUES (1895, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/169/head', false, '', 1704665438); INSERT INTO public.action VALUES (1896, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/169/head', false, '', 1704665438); INSERT INTO public.action VALUES (1897, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/169/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1898, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/169/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1899, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/169/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1900, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/170/head', false, '', 1704665438); INSERT INTO public.action VALUES (1901, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/170/head', false, '', 1704665438); INSERT INTO public.action VALUES (1902, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/170/head', false, '', 1704665438); INSERT INTO public.action VALUES (1903, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/170/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1904, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/170/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1905, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/170/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1906, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/171/head', false, '', 1704665438); INSERT INTO public.action VALUES (1907, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/171/head', false, '', 1704665438); INSERT INTO public.action VALUES (1908, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/171/head', false, '', 1704665438); INSERT INTO public.action VALUES (1909, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/171/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1910, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/171/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1911, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/171/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1912, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/172/head', false, '', 1704665438); INSERT INTO public.action VALUES (1913, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/172/head', false, '', 1704665438); INSERT INTO public.action VALUES (1914, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/172/head', false, '', 1704665438); INSERT INTO public.action VALUES (1915, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/172/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1916, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/172/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1917, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/172/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1918, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/173/head', false, '', 1704665438); INSERT INTO public.action VALUES (1919, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/173/head', false, '', 1704665438); INSERT INTO public.action VALUES (1920, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/173/head', false, '', 1704665438); INSERT INTO public.action VALUES (1921, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/173/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1922, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/173/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1923, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/173/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1924, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/174/head', false, '', 1704665438); INSERT INTO public.action VALUES (1925, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/174/head', false, '', 1704665438); INSERT INTO public.action VALUES (1926, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/174/head', false, '', 1704665438); INSERT INTO public.action VALUES (1927, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/174/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1928, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/174/merge', false, '', 1704665438); INSERT INTO public.action VALUES (1929, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/174/merge', false, '', 1704665438); INSERT INTO public.action VALUES (3122, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/129/head', false, '', 1705105570); INSERT INTO public.action VALUES (3123, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/129/head', false, '', 1705105570); INSERT INTO public.action VALUES (3124, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/129/head', false, '', 1705105570); INSERT INTO public.action VALUES (3125, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/129/merge', false, '', 1705105570); INSERT INTO public.action VALUES (1931, 12, 5, 1, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"}],"HeadCommit":{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"},"CompareURL":"Khieu-nai/admin/compare/00cf5f9186ddbc5f46a0cdf5a670a513403947b9...a4eda163411b228d47b45cec507a829d420b9a67","Len":1}', 1704676617); INSERT INTO public.action VALUES (1932, 5, 5, 1, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"}],"HeadCommit":{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"},"CompareURL":"Khieu-nai/admin/compare/00cf5f9186ddbc5f46a0cdf5a670a513403947b9...a4eda163411b228d47b45cec507a829d420b9a67","Len":1}', 1704676617); INSERT INTO public.action VALUES (1933, 2, 5, 1, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"}],"HeadCommit":{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"},"CompareURL":"Khieu-nai/admin/compare/00cf5f9186ddbc5f46a0cdf5a670a513403947b9...a4eda163411b228d47b45cec507a829d420b9a67","Len":1}', 1704676617); INSERT INTO public.action VALUES (1934, 15, 5, 1, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"}],"HeadCommit":{"Sha1":"a4eda163411b228d47b45cec507a829d420b9a67","Message":"Add Jenkinsfile\n","AuthorEmail":"cognvn@gmail.com","AuthorName":"Lê Hồng Ngọc","CommitterEmail":"cognvn@gmail.com","CommitterName":"Lê Hồng Ngọc","Timestamp":"2024-01-08T08:16:52+07:00"},"CompareURL":"Khieu-nai/admin/compare/00cf5f9186ddbc5f46a0cdf5a670a513403947b9...a4eda163411b228d47b45cec507a829d420b9a67","Len":1}', 1704676617); INSERT INTO public.action VALUES (1935, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d8f88af23f789b2ede493c1d79dd803e096bb05...e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Len":1}', 1704678939); INSERT INTO public.action VALUES (1936, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d8f88af23f789b2ede493c1d79dd803e096bb05...e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Len":1}', 1704678939); INSERT INTO public.action VALUES (1937, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d8f88af23f789b2ede493c1d79dd803e096bb05...e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Len":1}', 1704678939); INSERT INTO public.action VALUES (1938, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d8f88af23f789b2ede493c1d79dd803e096bb05...e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Len":1}', 1704678939); INSERT INTO public.action VALUES (1939, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1d8f88af23f789b2ede493c1d79dd803e096bb05...e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Len":1}', 1704678939); INSERT INTO public.action VALUES (1980, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '', 1704681340); INSERT INTO public.action VALUES (1981, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '', 1704681340); INSERT INTO public.action VALUES (1982, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '', 1704681340); INSERT INTO public.action VALUES (1983, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '', 1704681340); INSERT INTO public.action VALUES (1940, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"}],"HeadCommit":{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30...1648b96afc95a1c2a74360ae3223ec9016b6019e","Len":1}', 1704678962); INSERT INTO public.action VALUES (1941, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"}],"HeadCommit":{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30...1648b96afc95a1c2a74360ae3223ec9016b6019e","Len":1}', 1704678962); INSERT INTO public.action VALUES (1942, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"}],"HeadCommit":{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30...1648b96afc95a1c2a74360ae3223ec9016b6019e","Len":1}', 1704678962); INSERT INTO public.action VALUES (1943, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"}],"HeadCommit":{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30...1648b96afc95a1c2a74360ae3223ec9016b6019e","Len":1}', 1704678962); INSERT INTO public.action VALUES (1944, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"}],"HeadCommit":{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30...1648b96afc95a1c2a74360ae3223ec9016b6019e","Len":1}', 1704678962); INSERT INTO public.action VALUES (1945, 11, 7, 11, 21, 0, false, '', false, '56|thinh', 1704679122); INSERT INTO public.action VALUES (1946, 14, 7, 11, 21, 0, false, '', false, '56|thinh', 1704679122); INSERT INTO public.action VALUES (1947, 16, 7, 11, 21, 0, false, '', false, '56|thinh', 1704679122); INSERT INTO public.action VALUES (1948, 1, 7, 11, 21, 0, false, '', false, '56|thinh', 1704679122); INSERT INTO public.action VALUES (1949, 5, 7, 11, 21, 0, false, '', false, '56|thinh', 1704679122); INSERT INTO public.action VALUES (1975, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/17223a69f9d2c7982c99e9d063d7796bad0734ad...a5dfd620c51a9baabd25312a8ee7268e03395cec","Len":2}', 1704679846); INSERT INTO public.action VALUES (1976, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/17223a69f9d2c7982c99e9d063d7796bad0734ad...a5dfd620c51a9baabd25312a8ee7268e03395cec","Len":2}', 1704679846); INSERT INTO public.action VALUES (1984, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '', 1704681340); INSERT INTO public.action VALUES (1955, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9c768a9904229490cf45090e6edc9f229f94497...17223a69f9d2c7982c99e9d063d7796bad0734ad","Len":3}', 1704679144); INSERT INTO public.action VALUES (1956, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9c768a9904229490cf45090e6edc9f229f94497...17223a69f9d2c7982c99e9d063d7796bad0734ad","Len":3}', 1704679144); INSERT INTO public.action VALUES (1957, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9c768a9904229490cf45090e6edc9f229f94497...17223a69f9d2c7982c99e9d063d7796bad0734ad","Len":3}', 1704679144); INSERT INTO public.action VALUES (1958, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9c768a9904229490cf45090e6edc9f229f94497...17223a69f9d2c7982c99e9d063d7796bad0734ad","Len":3}', 1704679144); INSERT INTO public.action VALUES (1985, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '', 1704681340); INSERT INTO public.action VALUES (1986, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"}],"HeadCommit":{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...9df9ce65acd485f0315cfec4900eb5e5624123ca","Len":1}', 1704681340); INSERT INTO public.action VALUES (2058, 5, 11, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698166); INSERT INTO public.action VALUES (2090, 1, 7, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705502); INSERT INTO public.action VALUES (2091, 5, 7, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705502); INSERT INTO public.action VALUES (1959, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},{"Sha1":"1648b96afc95a1c2a74360ae3223ec9016b6019e","Message":"clear cosole log\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:54+07:00"},{"Sha1":"e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T08:55:27+07:00"}],"HeadCommit":{"Sha1":"17223a69f9d2c7982c99e9d063d7796bad0734ad","Message":"Merge pull request ''thinh'' (#56) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/56\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T08:58:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b9c768a9904229490cf45090e6edc9f229f94497...17223a69f9d2c7982c99e9d063d7796bad0734ad","Len":3}', 1704679144); INSERT INTO public.action VALUES (1960, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1648b96afc95a1c2a74360ae3223ec9016b6019e...128401d049b3f492a8950948ee794aca9bc472e4","Len":1}', 1704679795); INSERT INTO public.action VALUES (1961, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1648b96afc95a1c2a74360ae3223ec9016b6019e...128401d049b3f492a8950948ee794aca9bc472e4","Len":1}', 1704679795); INSERT INTO public.action VALUES (1962, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1648b96afc95a1c2a74360ae3223ec9016b6019e...128401d049b3f492a8950948ee794aca9bc472e4","Len":1}', 1704679795); INSERT INTO public.action VALUES (1963, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1648b96afc95a1c2a74360ae3223ec9016b6019e...128401d049b3f492a8950948ee794aca9bc472e4","Len":1}', 1704679795); INSERT INTO public.action VALUES (1964, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1648b96afc95a1c2a74360ae3223ec9016b6019e...128401d049b3f492a8950948ee794aca9bc472e4","Len":1}', 1704679795); INSERT INTO public.action VALUES (1965, 11, 7, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679830); INSERT INTO public.action VALUES (1966, 14, 7, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679830); INSERT INTO public.action VALUES (1967, 16, 7, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679830); INSERT INTO public.action VALUES (1968, 1, 7, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679830); INSERT INTO public.action VALUES (1969, 5, 7, 11, 21, 0, false, '', false, '57|update search menu bao cao', 1704679830); INSERT INTO public.action VALUES (3030, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6...8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Len":1}', 1705047285); INSERT INTO public.action VALUES (3126, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/129/merge', false, '', 1705105570); INSERT INTO public.action VALUES (1977, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/17223a69f9d2c7982c99e9d063d7796bad0734ad...a5dfd620c51a9baabd25312a8ee7268e03395cec","Len":2}', 1704679846); INSERT INTO public.action VALUES (1978, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/17223a69f9d2c7982c99e9d063d7796bad0734ad...a5dfd620c51a9baabd25312a8ee7268e03395cec","Len":2}', 1704679846); INSERT INTO public.action VALUES (1979, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},{"Sha1":"128401d049b3f492a8950948ee794aca9bc472e4","Message":"update search menu bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:09:46+07:00"}],"HeadCommit":{"Sha1":"a5dfd620c51a9baabd25312a8ee7268e03395cec","Message":"Merge pull request ''update search menu bao cao'' (#57) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/57\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:10:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/17223a69f9d2c7982c99e9d063d7796bad0734ad...a5dfd620c51a9baabd25312a8ee7268e03395cec","Len":2}', 1704679846); INSERT INTO public.action VALUES (2961, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},{"Sha1":"452941640be0fe4ba9d7a470d65a2dd2298f1ec7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:16+07:00"},{"Sha1":"b335b4c4867af438f52809be0436486e090bc4c5","Message":"update baocao TS dia phuong\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:10+07:00"},{"Sha1":"c1242c0cc36db357f358465b19daf6661c5a5604","Message":"check xóa ngành nghề trong kế hoạch đã gửi\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:25:16+07:00"},{"Sha1":"d60353fc6e819e577c1d0a1e119257bc185fb22b","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:17:29+07:00"}],"HeadCommit":{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2b39a2404c8800424e13d56f5702c07c9261c67b...869268d636fa17b9ae86c4f0ce751839607f6610","Len":7}', 1705037172); INSERT INTO public.action VALUES (3007, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6189e5347420d4bbcee5c4f550ed3cd17a77ba41...1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Len":2}', 1705045583); INSERT INTO public.action VALUES (3127, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/129/merge', false, '', 1705105570); INSERT INTO public.action VALUES (3128, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/130/head', false, '', 1705105570); INSERT INTO public.action VALUES (3129, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/130/head', false, '', 1705105570); INSERT INTO public.action VALUES (1987, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"}],"HeadCommit":{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...9df9ce65acd485f0315cfec4900eb5e5624123ca","Len":1}', 1704681340); INSERT INTO public.action VALUES (1988, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"}],"HeadCommit":{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...9df9ce65acd485f0315cfec4900eb5e5624123ca","Len":1}', 1704681340); INSERT INTO public.action VALUES (1989, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"}],"HeadCommit":{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...9df9ce65acd485f0315cfec4900eb5e5624123ca","Len":1}', 1704681340); INSERT INTO public.action VALUES (1990, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"}],"HeadCommit":{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...9df9ce65acd485f0315cfec4900eb5e5624123ca","Len":1}', 1704681340); INSERT INTO public.action VALUES (1991, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"}],"HeadCommit":{"Sha1":"9df9ce65acd485f0315cfec4900eb5e5624123ca","Message":"list and filter table\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T09:35:23+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...9df9ce65acd485f0315cfec4900eb5e5624123ca","Len":1}', 1704681340); INSERT INTO public.action VALUES (1992, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/128401d049b3f492a8950948ee794aca9bc472e4...4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Len":1}', 1704681491); INSERT INTO public.action VALUES (1993, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/128401d049b3f492a8950948ee794aca9bc472e4...4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Len":1}', 1704681491); INSERT INTO public.action VALUES (1994, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/128401d049b3f492a8950948ee794aca9bc472e4...4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Len":1}', 1704681491); INSERT INTO public.action VALUES (1995, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/128401d049b3f492a8950948ee794aca9bc472e4...4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Len":1}', 1704681491); INSERT INTO public.action VALUES (1996, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/128401d049b3f492a8950948ee794aca9bc472e4...4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Len":1}', 1704681491); INSERT INTO public.action VALUES (2002, 11, 11, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681600); INSERT INTO public.action VALUES (2003, 14, 11, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681600); INSERT INTO public.action VALUES (2004, 16, 11, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681600); INSERT INTO public.action VALUES (2005, 1, 11, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681600); INSERT INTO public.action VALUES (2006, 5, 11, 11, 21, 0, false, '', false, '58|fix text tim kiem', 1704681600); INSERT INTO public.action VALUES (2007, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a5dfd620c51a9baabd25312a8ee7268e03395cec...480eb6217718c62029da79a52f43e3c0b31e5526","Len":2}', 1704681600); INSERT INTO public.action VALUES (2008, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a5dfd620c51a9baabd25312a8ee7268e03395cec...480eb6217718c62029da79a52f43e3c0b31e5526","Len":2}', 1704681600); INSERT INTO public.action VALUES (2009, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a5dfd620c51a9baabd25312a8ee7268e03395cec...480eb6217718c62029da79a52f43e3c0b31e5526","Len":2}', 1704681600); INSERT INTO public.action VALUES (2010, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a5dfd620c51a9baabd25312a8ee7268e03395cec...480eb6217718c62029da79a52f43e3c0b31e5526","Len":2}', 1704681600); INSERT INTO public.action VALUES (2020, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e4fdd8f67557bd5fa3129c9bad708d15b67971a...7f7c96671126ae1b236dd7b6f0ece8be147517c9","Len":1}', 1704685335); INSERT INTO public.action VALUES (2092, 11, 11, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705564); INSERT INTO public.action VALUES (2011, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},{"Sha1":"4e4fdd8f67557bd5fa3129c9bad708d15b67971a","Message":"fix text tim kiem\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T09:38:03+07:00"}],"HeadCommit":{"Sha1":"480eb6217718c62029da79a52f43e3c0b31e5526","Message":"Merge pull request ''fix text tim kiem'' (#58) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/58\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T09:39:54+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a5dfd620c51a9baabd25312a8ee7268e03395cec...480eb6217718c62029da79a52f43e3c0b31e5526","Len":2}', 1704681600); INSERT INTO public.action VALUES (2012, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"}],"HeadCommit":{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3dd99d415a74c6cbd11b6db0ed8ce7887bc79191...aaf721c367e86f19a4b53427293e75118b2eb03d","Len":1}', 1704684657); INSERT INTO public.action VALUES (2013, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"}],"HeadCommit":{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3dd99d415a74c6cbd11b6db0ed8ce7887bc79191...aaf721c367e86f19a4b53427293e75118b2eb03d","Len":1}', 1704684657); INSERT INTO public.action VALUES (2014, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"}],"HeadCommit":{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3dd99d415a74c6cbd11b6db0ed8ce7887bc79191...aaf721c367e86f19a4b53427293e75118b2eb03d","Len":1}', 1704684657); INSERT INTO public.action VALUES (2015, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"}],"HeadCommit":{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3dd99d415a74c6cbd11b6db0ed8ce7887bc79191...aaf721c367e86f19a4b53427293e75118b2eb03d","Len":1}', 1704684657); INSERT INTO public.action VALUES (2016, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"}],"HeadCommit":{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3dd99d415a74c6cbd11b6db0ed8ce7887bc79191...aaf721c367e86f19a4b53427293e75118b2eb03d","Len":1}', 1704684657); INSERT INTO public.action VALUES (2017, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"}],"HeadCommit":{"Sha1":"aaf721c367e86f19a4b53427293e75118b2eb03d","Message":"TongHopSoLieuTuyenSinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T09:36:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3dd99d415a74c6cbd11b6db0ed8ce7887bc79191...aaf721c367e86f19a4b53427293e75118b2eb03d","Len":1}', 1704684657); INSERT INTO public.action VALUES (2018, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e4fdd8f67557bd5fa3129c9bad708d15b67971a...7f7c96671126ae1b236dd7b6f0ece8be147517c9","Len":1}', 1704685335); INSERT INTO public.action VALUES (2019, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e4fdd8f67557bd5fa3129c9bad708d15b67971a...7f7c96671126ae1b236dd7b6f0ece8be147517c9","Len":1}', 1704685335); INSERT INTO public.action VALUES (2093, 14, 11, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705564); INSERT INTO public.action VALUES (2094, 16, 11, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705565); INSERT INTO public.action VALUES (2021, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e4fdd8f67557bd5fa3129c9bad708d15b67971a...7f7c96671126ae1b236dd7b6f0ece8be147517c9","Len":1}', 1704685335); INSERT INTO public.action VALUES (2022, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4e4fdd8f67557bd5fa3129c9bad708d15b67971a...7f7c96671126ae1b236dd7b6f0ece8be147517c9","Len":1}', 1704685335); INSERT INTO public.action VALUES (2023, 11, 7, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685354); INSERT INTO public.action VALUES (2024, 14, 7, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685354); INSERT INTO public.action VALUES (2025, 16, 7, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685354); INSERT INTO public.action VALUES (2026, 1, 7, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685354); INSERT INTO public.action VALUES (2027, 5, 7, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685354); INSERT INTO public.action VALUES (2028, 11, 11, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685372); INSERT INTO public.action VALUES (2029, 14, 11, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685372); INSERT INTO public.action VALUES (2030, 16, 11, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685372); INSERT INTO public.action VALUES (2031, 1, 11, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685372); INSERT INTO public.action VALUES (2032, 5, 11, 11, 21, 0, false, '', false, '59|upcode rang buoc', 1704685372); INSERT INTO public.action VALUES (2033, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/480eb6217718c62029da79a52f43e3c0b31e5526...a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Len":2}', 1704685374); INSERT INTO public.action VALUES (2034, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/480eb6217718c62029da79a52f43e3c0b31e5526...a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Len":2}', 1704685374); INSERT INTO public.action VALUES (2035, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/480eb6217718c62029da79a52f43e3c0b31e5526...a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Len":2}', 1704685374); INSERT INTO public.action VALUES (2044, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f7c96671126ae1b236dd7b6f0ece8be147517c9...d47e007a7e3bf39970904a203d5c3b50fd7c355c","Len":1}', 1704698117); INSERT INTO public.action VALUES (2036, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/480eb6217718c62029da79a52f43e3c0b31e5526...a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Len":2}', 1704685374); INSERT INTO public.action VALUES (2037, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},{"Sha1":"7f7c96671126ae1b236dd7b6f0ece8be147517c9","Message":"upcode rang buoc\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T10:42:08+07:00"}],"HeadCommit":{"Sha1":"a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Message":"Merge pull request ''upcode rang buoc'' (#59) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/59\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T10:42:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/480eb6217718c62029da79a52f43e3c0b31e5526...a2ef85dd7af229c8630f60b81daea4f3a2a04c43","Len":2}', 1704685374); INSERT INTO public.action VALUES (2038, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"}],"HeadCommit":{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"},"CompareURL":"khieu-nai/backend/compare/da2aec3d3d8073a39a1b44aa48641e4b6141397f...1045a6ad6a995e5140ba86b64b81609f4bb89248","Len":1}', 1704688677); INSERT INTO public.action VALUES (2039, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"}],"HeadCommit":{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"},"CompareURL":"khieu-nai/backend/compare/da2aec3d3d8073a39a1b44aa48641e4b6141397f...1045a6ad6a995e5140ba86b64b81609f4bb89248","Len":1}', 1704688677); INSERT INTO public.action VALUES (2040, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"}],"HeadCommit":{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"},"CompareURL":"khieu-nai/backend/compare/da2aec3d3d8073a39a1b44aa48641e4b6141397f...1045a6ad6a995e5140ba86b64b81609f4bb89248","Len":1}', 1704688677); INSERT INTO public.action VALUES (2041, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"}],"HeadCommit":{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"},"CompareURL":"khieu-nai/backend/compare/da2aec3d3d8073a39a1b44aa48641e4b6141397f...1045a6ad6a995e5140ba86b64b81609f4bb89248","Len":1}', 1704688677); INSERT INTO public.action VALUES (2042, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"}],"HeadCommit":{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"},"CompareURL":"khieu-nai/backend/compare/da2aec3d3d8073a39a1b44aa48641e4b6141397f...1045a6ad6a995e5140ba86b64b81609f4bb89248","Len":1}', 1704688677); INSERT INTO public.action VALUES (2043, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"}],"HeadCommit":{"Sha1":"1045a6ad6a995e5140ba86b64b81609f4bb89248","Message":"update tiepdan\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T11:35:48+07:00"},"CompareURL":"khieu-nai/backend/compare/da2aec3d3d8073a39a1b44aa48641e4b6141397f...1045a6ad6a995e5140ba86b64b81609f4bb89248","Len":1}', 1704688677); INSERT INTO public.action VALUES (2054, 11, 11, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698166); INSERT INTO public.action VALUES (2055, 14, 11, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698166); INSERT INTO public.action VALUES (2056, 16, 11, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698166); INSERT INTO public.action VALUES (2057, 1, 11, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698166); INSERT INTO public.action VALUES (2045, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f7c96671126ae1b236dd7b6f0ece8be147517c9...d47e007a7e3bf39970904a203d5c3b50fd7c355c","Len":1}', 1704698117); INSERT INTO public.action VALUES (2046, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f7c96671126ae1b236dd7b6f0ece8be147517c9...d47e007a7e3bf39970904a203d5c3b50fd7c355c","Len":1}', 1704698117); INSERT INTO public.action VALUES (2047, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f7c96671126ae1b236dd7b6f0ece8be147517c9...d47e007a7e3bf39970904a203d5c3b50fd7c355c","Len":1}', 1704698117); INSERT INTO public.action VALUES (2048, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f7c96671126ae1b236dd7b6f0ece8be147517c9...d47e007a7e3bf39970904a203d5c3b50fd7c355c","Len":1}', 1704698117); INSERT INTO public.action VALUES (2049, 11, 7, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698140); INSERT INTO public.action VALUES (2050, 14, 7, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698140); INSERT INTO public.action VALUES (2051, 16, 7, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698140); INSERT INTO public.action VALUES (2052, 1, 7, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698140); INSERT INTO public.action VALUES (2053, 5, 7, 11, 21, 0, false, '', false, '60|fix giao dien', 1704698140); INSERT INTO public.action VALUES (2962, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},{"Sha1":"452941640be0fe4ba9d7a470d65a2dd2298f1ec7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:16+07:00"},{"Sha1":"b335b4c4867af438f52809be0436486e090bc4c5","Message":"update baocao TS dia phuong\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:10+07:00"},{"Sha1":"c1242c0cc36db357f358465b19daf6661c5a5604","Message":"check xóa ngành nghề trong kế hoạch đã gửi\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:25:16+07:00"},{"Sha1":"d60353fc6e819e577c1d0a1e119257bc185fb22b","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T10:17:29+07:00"}],"HeadCommit":{"Sha1":"869268d636fa17b9ae86c4f0ce751839607f6610","Message":".\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T11:22:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/2b39a2404c8800424e13d56f5702c07c9261c67b...869268d636fa17b9ae86c4f0ce751839607f6610","Len":7}', 1705037172); INSERT INTO public.action VALUES (3008, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6189e5347420d4bbcee5c4f550ed3cd17a77ba41...1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Len":2}', 1705045583); INSERT INTO public.action VALUES (3009, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/133/head', false, '', 1705046771); INSERT INTO public.action VALUES (3010, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/133/head', false, '', 1705046771); INSERT INTO public.action VALUES (3011, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/133/head', false, '', 1705046771); INSERT INTO public.action VALUES (3012, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/133/merge', false, '', 1705046771); INSERT INTO public.action VALUES (2059, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2ef85dd7af229c8630f60b81daea4f3a2a04c43...c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Len":2}', 1704698168); INSERT INTO public.action VALUES (2060, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2ef85dd7af229c8630f60b81daea4f3a2a04c43...c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Len":2}', 1704698168); INSERT INTO public.action VALUES (2061, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2ef85dd7af229c8630f60b81daea4f3a2a04c43...c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Len":2}', 1704698168); INSERT INTO public.action VALUES (2062, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2ef85dd7af229c8630f60b81daea4f3a2a04c43...c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Len":2}', 1704698168); INSERT INTO public.action VALUES (2063, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},{"Sha1":"d47e007a7e3bf39970904a203d5c3b50fd7c355c","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T14:15:06+07:00"}],"HeadCommit":{"Sha1":"c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Message":"Merge pull request ''fix giao dien'' (#60) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/60\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T14:16:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2ef85dd7af229c8630f60b81daea4f3a2a04c43...c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf","Len":2}', 1704698168); INSERT INTO public.action VALUES (2064, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...fe703c97de68da85478ffde612c30fc6b8e34f1a","Len":2}', 1704701515); INSERT INTO public.action VALUES (2065, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...fe703c97de68da85478ffde612c30fc6b8e34f1a","Len":2}', 1704701515); INSERT INTO public.action VALUES (2066, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...fe703c97de68da85478ffde612c30fc6b8e34f1a","Len":2}', 1704701515); INSERT INTO public.action VALUES (2067, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...fe703c97de68da85478ffde612c30fc6b8e34f1a","Len":2}', 1704701515); INSERT INTO public.action VALUES (2068, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...fe703c97de68da85478ffde612c30fc6b8e34f1a","Len":2}', 1704701515); INSERT INTO public.action VALUES (2069, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},"CompareURL":"khieu-nai/admin/compare/a4eda163411b228d47b45cec507a829d420b9a67...fe703c97de68da85478ffde612c30fc6b8e34f1a","Len":2}', 1704701515); INSERT INTO public.action VALUES (2070, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"}],"HeadCommit":{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},"CompareURL":"khieu-nai/admin/compare/fe703c97de68da85478ffde612c30fc6b8e34f1a...2549a06a592bbe9d424ee2074ae32b7dca2878df","Len":1}', 1704702556); INSERT INTO public.action VALUES (2071, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"}],"HeadCommit":{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},"CompareURL":"khieu-nai/admin/compare/fe703c97de68da85478ffde612c30fc6b8e34f1a...2549a06a592bbe9d424ee2074ae32b7dca2878df","Len":1}', 1704702556); INSERT INTO public.action VALUES (2072, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"}],"HeadCommit":{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},"CompareURL":"khieu-nai/admin/compare/fe703c97de68da85478ffde612c30fc6b8e34f1a...2549a06a592bbe9d424ee2074ae32b7dca2878df","Len":1}', 1704702556); INSERT INTO public.action VALUES (2095, 1, 11, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705565); INSERT INTO public.action VALUES (2096, 5, 11, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705565); INSERT INTO public.action VALUES (2073, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"}],"HeadCommit":{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},"CompareURL":"khieu-nai/admin/compare/fe703c97de68da85478ffde612c30fc6b8e34f1a...2549a06a592bbe9d424ee2074ae32b7dca2878df","Len":1}', 1704702556); INSERT INTO public.action VALUES (2074, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"}],"HeadCommit":{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},"CompareURL":"khieu-nai/admin/compare/fe703c97de68da85478ffde612c30fc6b8e34f1a...2549a06a592bbe9d424ee2074ae32b7dca2878df","Len":1}', 1704702556); INSERT INTO public.action VALUES (2075, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"}],"HeadCommit":{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},"CompareURL":"khieu-nai/admin/compare/fe703c97de68da85478ffde612c30fc6b8e34f1a...2549a06a592bbe9d424ee2074ae32b7dca2878df","Len":1}', 1704702556); INSERT INTO public.action VALUES (2076, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"},{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},"CompareURL":"khieu-nai/admin/compare/9df9ce65acd485f0315cfec4900eb5e5624123ca...69d562176e46ab843c90e41309ffeab53a0b93ae","Len":5}', 1704703935); INSERT INTO public.action VALUES (2077, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"},{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},"CompareURL":"khieu-nai/admin/compare/9df9ce65acd485f0315cfec4900eb5e5624123ca...69d562176e46ab843c90e41309ffeab53a0b93ae","Len":5}', 1704703935); INSERT INTO public.action VALUES (2082, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d47e007a7e3bf39970904a203d5c3b50fd7c355c...dc1b5b62b753d93980b10f171b24d473d172b2c8","Len":1}', 1704705476); INSERT INTO public.action VALUES (2083, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d47e007a7e3bf39970904a203d5c3b50fd7c355c...dc1b5b62b753d93980b10f171b24d473d172b2c8","Len":1}', 1704705476); INSERT INTO public.action VALUES (2078, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"},{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},"CompareURL":"khieu-nai/admin/compare/9df9ce65acd485f0315cfec4900eb5e5624123ca...69d562176e46ab843c90e41309ffeab53a0b93ae","Len":5}', 1704703935); INSERT INTO public.action VALUES (2079, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"},{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},"CompareURL":"khieu-nai/admin/compare/9df9ce65acd485f0315cfec4900eb5e5624123ca...69d562176e46ab843c90e41309ffeab53a0b93ae","Len":5}', 1704703935); INSERT INTO public.action VALUES (2080, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"},{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},"CompareURL":"khieu-nai/admin/compare/9df9ce65acd485f0315cfec4900eb5e5624123ca...69d562176e46ab843c90e41309ffeab53a0b93ae","Len":5}', 1704703935); INSERT INTO public.action VALUES (2081, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"},{"Sha1":"2549a06a592bbe9d424ee2074ae32b7dca2878df","Message":"fix: update pass default\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:29:05+07:00"},{"Sha1":"fe703c97de68da85478ffde612c30fc6b8e34f1a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:43+07:00"},{"Sha1":"eca3fa5628db6a1b6d58e0f61abc5415d3d84d78","Message":"fix: change layout\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T15:11:01+07:00"}],"HeadCommit":{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},"CompareURL":"khieu-nai/admin/compare/9df9ce65acd485f0315cfec4900eb5e5624123ca...69d562176e46ab843c90e41309ffeab53a0b93ae","Len":5}', 1704703935); INSERT INTO public.action VALUES (2087, 11, 7, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705502); INSERT INTO public.action VALUES (2088, 14, 7, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705502); INSERT INTO public.action VALUES (2089, 16, 7, 11, 21, 0, false, '', false, '61|add detail gv nhieu co so', 1704705502); INSERT INTO public.action VALUES (2084, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d47e007a7e3bf39970904a203d5c3b50fd7c355c...dc1b5b62b753d93980b10f171b24d473d172b2c8","Len":1}', 1704705476); INSERT INTO public.action VALUES (2085, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d47e007a7e3bf39970904a203d5c3b50fd7c355c...dc1b5b62b753d93980b10f171b24d473d172b2c8","Len":1}', 1704705476); INSERT INTO public.action VALUES (2086, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d47e007a7e3bf39970904a203d5c3b50fd7c355c...dc1b5b62b753d93980b10f171b24d473d172b2c8","Len":1}', 1704705476); INSERT INTO public.action VALUES (2097, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf...426a1faa2094a598744486c24ae40977eceee332","Len":2}', 1704705566); INSERT INTO public.action VALUES (2098, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf...426a1faa2094a598744486c24ae40977eceee332","Len":2}', 1704705566); INSERT INTO public.action VALUES (2099, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf...426a1faa2094a598744486c24ae40977eceee332","Len":2}', 1704705566); INSERT INTO public.action VALUES (2102, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc1b5b62b753d93980b10f171b24d473d172b2c8...f4e3881a081a31795d2162f9cbc281b4aba8ef27","Len":1}', 1704706347); INSERT INTO public.action VALUES (2190, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/163/head', false, '', 1704753056); INSERT INTO public.action VALUES (2100, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf...426a1faa2094a598744486c24ae40977eceee332","Len":2}', 1704705566); INSERT INTO public.action VALUES (2101, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},{"Sha1":"dc1b5b62b753d93980b10f171b24d473d172b2c8","Message":"add detail gv nhieu co so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:17:45+07:00"}],"HeadCommit":{"Sha1":"426a1faa2094a598744486c24ae40977eceee332","Message":"Merge pull request ''add detail gv nhieu co so'' (#61) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/61\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:19:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf...426a1faa2094a598744486c24ae40977eceee332","Len":2}', 1704705566); INSERT INTO public.action VALUES (2149, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/59b787e85b18879fb9d8f189914021acb7746405...5674ad927bb01fce2f1f31cb2bbee967c0147568","Len":2}', 1704707883); INSERT INTO public.action VALUES (2150, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/59b787e85b18879fb9d8f189914021acb7746405...5674ad927bb01fce2f1f31cb2bbee967c0147568","Len":2}', 1704707883); INSERT INTO public.action VALUES (2151, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/59b787e85b18879fb9d8f189914021acb7746405...5674ad927bb01fce2f1f31cb2bbee967c0147568","Len":2}', 1704707883); INSERT INTO public.action VALUES (2160, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/209/head', false, '', 1704723656); INSERT INTO public.action VALUES (2161, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/209/head', false, '', 1704723656); INSERT INTO public.action VALUES (2162, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/209/head', false, '', 1704723656); INSERT INTO public.action VALUES (2163, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/209/merge', false, '', 1704723656); INSERT INTO public.action VALUES (2164, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/209/merge', false, '', 1704723656); INSERT INTO public.action VALUES (2165, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/209/merge', false, '', 1704723656); INSERT INTO public.action VALUES (2166, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/210/head', false, '', 1704723656); INSERT INTO public.action VALUES (2103, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc1b5b62b753d93980b10f171b24d473d172b2c8...f4e3881a081a31795d2162f9cbc281b4aba8ef27","Len":1}', 1704706347); INSERT INTO public.action VALUES (2104, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc1b5b62b753d93980b10f171b24d473d172b2c8...f4e3881a081a31795d2162f9cbc281b4aba8ef27","Len":1}', 1704706347); INSERT INTO public.action VALUES (2105, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc1b5b62b753d93980b10f171b24d473d172b2c8...f4e3881a081a31795d2162f9cbc281b4aba8ef27","Len":1}', 1704706347); INSERT INTO public.action VALUES (2106, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc1b5b62b753d93980b10f171b24d473d172b2c8...f4e3881a081a31795d2162f9cbc281b4aba8ef27","Len":1}', 1704706347); INSERT INTO public.action VALUES (2107, 11, 7, 11, 21, 0, false, '', false, '62|fix css', 1704706460); INSERT INTO public.action VALUES (2108, 14, 7, 11, 21, 0, false, '', false, '62|fix css', 1704706460); INSERT INTO public.action VALUES (2109, 16, 7, 11, 21, 0, false, '', false, '62|fix css', 1704706460); INSERT INTO public.action VALUES (2110, 1, 7, 11, 21, 0, false, '', false, '62|fix css', 1704706460); INSERT INTO public.action VALUES (2111, 5, 7, 11, 21, 0, false, '', false, '62|fix css', 1704706460); INSERT INTO public.action VALUES (2112, 11, 11, 11, 21, 0, false, '', false, '62|fix css', 1704706491); INSERT INTO public.action VALUES (2113, 14, 11, 11, 21, 0, false, '', false, '62|fix css', 1704706491); INSERT INTO public.action VALUES (2114, 16, 11, 11, 21, 0, false, '', false, '62|fix css', 1704706491); INSERT INTO public.action VALUES (2115, 1, 11, 11, 21, 0, false, '', false, '62|fix css', 1704706491); INSERT INTO public.action VALUES (2116, 5, 11, 11, 21, 0, false, '', false, '62|fix css', 1704706491); INSERT INTO public.action VALUES (2117, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/426a1faa2094a598744486c24ae40977eceee332...59b787e85b18879fb9d8f189914021acb7746405","Len":2}', 1704706492); INSERT INTO public.action VALUES (2118, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/426a1faa2094a598744486c24ae40977eceee332...59b787e85b18879fb9d8f189914021acb7746405","Len":2}', 1704706492); INSERT INTO public.action VALUES (2167, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/210/head', false, '', 1704723656); INSERT INTO public.action VALUES (2168, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/210/head', false, '', 1704723656); INSERT INTO public.action VALUES (2169, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/210/merge', false, '', 1704723656); INSERT INTO public.action VALUES (2170, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/210/merge', false, '', 1704723656); INSERT INTO public.action VALUES (2171, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/210/merge', false, '', 1704723656); INSERT INTO public.action VALUES (2191, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/163/head', false, '', 1704753056); INSERT INTO public.action VALUES (2119, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/426a1faa2094a598744486c24ae40977eceee332...59b787e85b18879fb9d8f189914021acb7746405","Len":2}', 1704706492); INSERT INTO public.action VALUES (2120, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/426a1faa2094a598744486c24ae40977eceee332...59b787e85b18879fb9d8f189914021acb7746405","Len":2}', 1704706492); INSERT INTO public.action VALUES (2121, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},{"Sha1":"f4e3881a081a31795d2162f9cbc281b4aba8ef27","Message":"fix css\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:32:17+07:00"}],"HeadCommit":{"Sha1":"59b787e85b18879fb9d8f189914021acb7746405","Message":"Merge pull request ''fix css'' (#62) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/62\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:34:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/426a1faa2094a598744486c24ae40977eceee332...59b787e85b18879fb9d8f189914021acb7746405","Len":2}', 1704706492); INSERT INTO public.action VALUES (2122, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"}],"HeadCommit":{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"},"CompareURL":"khieu-nai/backend/compare/1045a6ad6a995e5140ba86b64b81609f4bb89248...432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Len":1}', 1704707175); INSERT INTO public.action VALUES (2123, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"}],"HeadCommit":{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"},"CompareURL":"khieu-nai/backend/compare/1045a6ad6a995e5140ba86b64b81609f4bb89248...432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Len":1}', 1704707175); INSERT INTO public.action VALUES (2124, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"}],"HeadCommit":{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"},"CompareURL":"khieu-nai/backend/compare/1045a6ad6a995e5140ba86b64b81609f4bb89248...432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Len":1}', 1704707176); INSERT INTO public.action VALUES (2125, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"}],"HeadCommit":{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"},"CompareURL":"khieu-nai/backend/compare/1045a6ad6a995e5140ba86b64b81609f4bb89248...432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Len":1}', 1704707176); INSERT INTO public.action VALUES (2178, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/161/head', false, '', 1704753055); INSERT INTO public.action VALUES (2179, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/161/head', false, '', 1704753055); INSERT INTO public.action VALUES (2180, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/161/head', false, '', 1704753055); INSERT INTO public.action VALUES (2181, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/161/merge', false, '', 1704753055); INSERT INTO public.action VALUES (2182, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/161/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2126, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"}],"HeadCommit":{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"},"CompareURL":"khieu-nai/backend/compare/1045a6ad6a995e5140ba86b64b81609f4bb89248...432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Len":1}', 1704707176); INSERT INTO public.action VALUES (2127, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"}],"HeadCommit":{"Sha1":"432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Message":"update model Đơn thư\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:44:58+07:00"},"CompareURL":"khieu-nai/backend/compare/1045a6ad6a995e5140ba86b64b81609f4bb89248...432166d5ca2c7e2c68897f7c4cd3d5c80e428db4","Len":1}', 1704707176); INSERT INTO public.action VALUES (2128, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"}],"HeadCommit":{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"},"CompareURL":"khieu-nai/backend/compare/432166d5ca2c7e2c68897f7c4cd3d5c80e428db4...5f287cf162a6f7e4bac0eda6ca78603b02665568","Len":1}', 1704707611); INSERT INTO public.action VALUES (2129, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"}],"HeadCommit":{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"},"CompareURL":"khieu-nai/backend/compare/432166d5ca2c7e2c68897f7c4cd3d5c80e428db4...5f287cf162a6f7e4bac0eda6ca78603b02665568","Len":1}', 1704707611); INSERT INTO public.action VALUES (2130, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"}],"HeadCommit":{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"},"CompareURL":"khieu-nai/backend/compare/432166d5ca2c7e2c68897f7c4cd3d5c80e428db4...5f287cf162a6f7e4bac0eda6ca78603b02665568","Len":1}', 1704707611); INSERT INTO public.action VALUES (2131, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"}],"HeadCommit":{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"},"CompareURL":"khieu-nai/backend/compare/432166d5ca2c7e2c68897f7c4cd3d5c80e428db4...5f287cf162a6f7e4bac0eda6ca78603b02665568","Len":1}', 1704707611); INSERT INTO public.action VALUES (2132, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"}],"HeadCommit":{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"},"CompareURL":"khieu-nai/backend/compare/432166d5ca2c7e2c68897f7c4cd3d5c80e428db4...5f287cf162a6f7e4bac0eda6ca78603b02665568","Len":1}', 1704707611); INSERT INTO public.action VALUES (2133, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"}],"HeadCommit":{"Sha1":"5f287cf162a6f7e4bac0eda6ca78603b02665568","Message":".\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-08T16:53:22+07:00"},"CompareURL":"khieu-nai/backend/compare/432166d5ca2c7e2c68897f7c4cd3d5c80e428db4...5f287cf162a6f7e4bac0eda6ca78603b02665568","Len":1}', 1704707611); INSERT INTO public.action VALUES (2134, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f4e3881a081a31795d2162f9cbc281b4aba8ef27...efc00fcfeaafade84d8cbe9eebd39891331630c5","Len":1}', 1704707774); INSERT INTO public.action VALUES (2135, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f4e3881a081a31795d2162f9cbc281b4aba8ef27...efc00fcfeaafade84d8cbe9eebd39891331630c5","Len":1}', 1704707774); INSERT INTO public.action VALUES (2136, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f4e3881a081a31795d2162f9cbc281b4aba8ef27...efc00fcfeaafade84d8cbe9eebd39891331630c5","Len":1}', 1704707774); INSERT INTO public.action VALUES (2137, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f4e3881a081a31795d2162f9cbc281b4aba8ef27...efc00fcfeaafade84d8cbe9eebd39891331630c5","Len":1}', 1704707774); INSERT INTO public.action VALUES (2138, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f4e3881a081a31795d2162f9cbc281b4aba8ef27...efc00fcfeaafade84d8cbe9eebd39891331630c5","Len":1}', 1704707774); INSERT INTO public.action VALUES (2139, 11, 7, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707849); INSERT INTO public.action VALUES (2140, 14, 7, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707849); INSERT INTO public.action VALUES (2141, 16, 7, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707849); INSERT INTO public.action VALUES (2142, 1, 7, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707849); INSERT INTO public.action VALUES (2143, 5, 7, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707849); INSERT INTO public.action VALUES (2144, 11, 11, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707883); INSERT INTO public.action VALUES (2145, 14, 11, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707883); INSERT INTO public.action VALUES (2146, 16, 11, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707883); INSERT INTO public.action VALUES (2147, 1, 11, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707883); INSERT INTO public.action VALUES (2148, 5, 11, 11, 21, 0, false, '', false, '63|update filter year hs/sv', 1704707883); INSERT INTO public.action VALUES (2963, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"}],"HeadCommit":{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},"CompareURL":"khieu-nai/admin/compare/94ffd4fad7e84bcd1525ff0775450354d753d78a...15e39944f15f208be7ba038d75a2f68911f1d21e","Len":1}', 1705042665); INSERT INTO public.action VALUES (2964, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"}],"HeadCommit":{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},"CompareURL":"khieu-nai/admin/compare/94ffd4fad7e84bcd1525ff0775450354d753d78a...15e39944f15f208be7ba038d75a2f68911f1d21e","Len":1}', 1705042665); INSERT INTO public.action VALUES (2965, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"}],"HeadCommit":{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},"CompareURL":"khieu-nai/admin/compare/94ffd4fad7e84bcd1525ff0775450354d753d78a...15e39944f15f208be7ba038d75a2f68911f1d21e","Len":1}', 1705042665); INSERT INTO public.action VALUES (2966, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"}],"HeadCommit":{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},"CompareURL":"khieu-nai/admin/compare/94ffd4fad7e84bcd1525ff0775450354d753d78a...15e39944f15f208be7ba038d75a2f68911f1d21e","Len":1}', 1705042665); INSERT INTO public.action VALUES (2967, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"}],"HeadCommit":{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},"CompareURL":"khieu-nai/admin/compare/94ffd4fad7e84bcd1525ff0775450354d753d78a...15e39944f15f208be7ba038d75a2f68911f1d21e","Len":1}', 1705042665); INSERT INTO public.action VALUES (3013, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/133/merge', false, '', 1705046771); INSERT INTO public.action VALUES (3014, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/133/merge', false, '', 1705046771); INSERT INTO public.action VALUES (2152, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/59b787e85b18879fb9d8f189914021acb7746405...5674ad927bb01fce2f1f31cb2bbee967c0147568","Len":2}', 1704707883); INSERT INTO public.action VALUES (2153, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},{"Sha1":"efc00fcfeaafade84d8cbe9eebd39891331630c5","Message":"update filter year hs/sv\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-08T16:56:04+07:00"}],"HeadCommit":{"Sha1":"5674ad927bb01fce2f1f31cb2bbee967c0147568","Message":"Merge pull request ''update filter year hs/sv'' (#63) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/63\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-08T16:57:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/59b787e85b18879fb9d8f189914021acb7746405...5674ad927bb01fce2f1f31cb2bbee967c0147568","Len":2}', 1704707883); INSERT INTO public.action VALUES (2154, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},{"Sha1":"f29b000d13072305899fb570de3abd6b7c1a2bbf","Message":"Báo cáo kết quả tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T13:48:23+07:00"}],"HeadCommit":{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/aaf721c367e86f19a4b53427293e75118b2eb03d...3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Len":2}', 1704714056); INSERT INTO public.action VALUES (2155, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},{"Sha1":"f29b000d13072305899fb570de3abd6b7c1a2bbf","Message":"Báo cáo kết quả tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T13:48:23+07:00"}],"HeadCommit":{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/aaf721c367e86f19a4b53427293e75118b2eb03d...3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Len":2}', 1704714056); INSERT INTO public.action VALUES (2156, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},{"Sha1":"f29b000d13072305899fb570de3abd6b7c1a2bbf","Message":"Báo cáo kết quả tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T13:48:23+07:00"}],"HeadCommit":{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/aaf721c367e86f19a4b53427293e75118b2eb03d...3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Len":2}', 1704714056); INSERT INTO public.action VALUES (2157, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},{"Sha1":"f29b000d13072305899fb570de3abd6b7c1a2bbf","Message":"Báo cáo kết quả tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T13:48:23+07:00"}],"HeadCommit":{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/aaf721c367e86f19a4b53427293e75118b2eb03d...3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Len":2}', 1704714056); INSERT INTO public.action VALUES (2183, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/161/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2184, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/162/head', false, '', 1704753056); INSERT INTO public.action VALUES (2185, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/162/head', false, '', 1704753056); INSERT INTO public.action VALUES (2186, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/162/head', false, '', 1704753056); INSERT INTO public.action VALUES (2187, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/162/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2188, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/162/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2189, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/162/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2158, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},{"Sha1":"f29b000d13072305899fb570de3abd6b7c1a2bbf","Message":"Báo cáo kết quả tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T13:48:23+07:00"}],"HeadCommit":{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/aaf721c367e86f19a4b53427293e75118b2eb03d...3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Len":2}', 1704714056); INSERT INTO public.action VALUES (2159, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},{"Sha1":"f29b000d13072305899fb570de3abd6b7c1a2bbf","Message":"Báo cáo kết quả tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T13:48:23+07:00"}],"HeadCommit":{"Sha1":"3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Message":"báo cáo chỉ tiêu tuyển sinh\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-08T16:24:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/aaf721c367e86f19a4b53427293e75118b2eb03d...3efeb98aa6e5f064a9ac0997551f9ef39a0c2609","Len":2}', 1704714056); INSERT INTO public.action VALUES (2172, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"},"CompareURL":"khieu-nai/admin/compare/2549a06a592bbe9d424ee2074ae32b7dca2878df...82db8039462498c123744f7b56fd5e5f7093ddd8","Len":1}', 1704728086); INSERT INTO public.action VALUES (2173, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"},"CompareURL":"khieu-nai/admin/compare/2549a06a592bbe9d424ee2074ae32b7dca2878df...82db8039462498c123744f7b56fd5e5f7093ddd8","Len":1}', 1704728086); INSERT INTO public.action VALUES (2174, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"},"CompareURL":"khieu-nai/admin/compare/2549a06a592bbe9d424ee2074ae32b7dca2878df...82db8039462498c123744f7b56fd5e5f7093ddd8","Len":1}', 1704728086); INSERT INTO public.action VALUES (2175, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"},"CompareURL":"khieu-nai/admin/compare/2549a06a592bbe9d424ee2074ae32b7dca2878df...82db8039462498c123744f7b56fd5e5f7093ddd8","Len":1}', 1704728086); INSERT INTO public.action VALUES (2176, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"},"CompareURL":"khieu-nai/admin/compare/2549a06a592bbe9d424ee2074ae32b7dca2878df...82db8039462498c123744f7b56fd5e5f7093ddd8","Len":1}', 1704728086); INSERT INTO public.action VALUES (2177, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"},"CompareURL":"khieu-nai/admin/compare/2549a06a592bbe9d424ee2074ae32b7dca2878df...82db8039462498c123744f7b56fd5e5f7093ddd8","Len":1}', 1704728086); INSERT INTO public.action VALUES (2968, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"}],"HeadCommit":{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},"CompareURL":"khieu-nai/admin/compare/94ffd4fad7e84bcd1525ff0775450354d753d78a...15e39944f15f208be7ba038d75a2f68911f1d21e","Len":1}', 1705042665); INSERT INTO public.action VALUES (3015, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/134/head', false, '', 1705046771); INSERT INTO public.action VALUES (3016, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/134/head', false, '', 1705046771); INSERT INTO public.action VALUES (3017, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/134/head', false, '', 1705046771); INSERT INTO public.action VALUES (3018, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/134/merge', false, '', 1705046771); INSERT INTO public.action VALUES (2192, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/163/head', false, '', 1704753056); INSERT INTO public.action VALUES (2193, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/163/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2194, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/163/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2195, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/163/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2196, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/164/head', false, '', 1704753056); INSERT INTO public.action VALUES (2197, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/164/head', false, '', 1704753056); INSERT INTO public.action VALUES (2198, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/164/head', false, '', 1704753056); INSERT INTO public.action VALUES (2199, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/164/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2200, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/164/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2201, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/164/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2202, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/165/head', false, '', 1704753056); INSERT INTO public.action VALUES (2203, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/165/head', false, '', 1704753056); INSERT INTO public.action VALUES (2204, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/165/head', false, '', 1704753056); INSERT INTO public.action VALUES (2205, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/165/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2206, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/165/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2207, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/165/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2208, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/166/head', false, '', 1704753056); INSERT INTO public.action VALUES (2209, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/166/head', false, '', 1704753056); INSERT INTO public.action VALUES (2210, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/166/head', false, '', 1704753056); INSERT INTO public.action VALUES (2211, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/166/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2212, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/166/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2213, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/166/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2214, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/167/head', false, '', 1704753056); INSERT INTO public.action VALUES (2215, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/167/head', false, '', 1704753056); INSERT INTO public.action VALUES (2216, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/167/head', false, '', 1704753056); INSERT INTO public.action VALUES (2217, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/167/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2218, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/167/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2219, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/167/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2220, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/168/head', false, '', 1704753056); INSERT INTO public.action VALUES (2221, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/168/head', false, '', 1704753056); INSERT INTO public.action VALUES (2222, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/168/head', false, '', 1704753056); INSERT INTO public.action VALUES (2223, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/168/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2224, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/168/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2225, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/168/merge', false, '', 1704753056); INSERT INTO public.action VALUES (2226, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/efc00fcfeaafade84d8cbe9eebd39891331630c5...cd975fd61522e19149dd713289ee1e0199a4c04d","Len":1}', 1704766171); INSERT INTO public.action VALUES (2227, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/efc00fcfeaafade84d8cbe9eebd39891331630c5...cd975fd61522e19149dd713289ee1e0199a4c04d","Len":1}', 1704766171); INSERT INTO public.action VALUES (2228, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/efc00fcfeaafade84d8cbe9eebd39891331630c5...cd975fd61522e19149dd713289ee1e0199a4c04d","Len":1}', 1704766171); INSERT INTO public.action VALUES (2319, 11, 11, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783867); INSERT INTO public.action VALUES (2320, 14, 11, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783867); INSERT INTO public.action VALUES (2321, 16, 11, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783867); INSERT INTO public.action VALUES (2322, 1, 11, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783867); INSERT INTO public.action VALUES (2323, 5, 11, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783867); INSERT INTO public.action VALUES (2441, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/153/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2229, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/efc00fcfeaafade84d8cbe9eebd39891331630c5...cd975fd61522e19149dd713289ee1e0199a4c04d","Len":1}', 1704766171); INSERT INTO public.action VALUES (2230, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/efc00fcfeaafade84d8cbe9eebd39891331630c5...cd975fd61522e19149dd713289ee1e0199a4c04d","Len":1}', 1704766171); INSERT INTO public.action VALUES (2231, 11, 7, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766194); INSERT INTO public.action VALUES (2232, 14, 7, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766194); INSERT INTO public.action VALUES (2233, 16, 7, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766194); INSERT INTO public.action VALUES (2234, 1, 7, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766194); INSERT INTO public.action VALUES (2235, 5, 7, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766194); INSERT INTO public.action VALUES (2236, 11, 11, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766275); INSERT INTO public.action VALUES (2237, 14, 11, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766275); INSERT INTO public.action VALUES (2238, 16, 11, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766275); INSERT INTO public.action VALUES (2239, 1, 11, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766275); INSERT INTO public.action VALUES (2240, 5, 11, 11, 21, 0, false, '', false, '64|change zindex ModalEditTTTN', 1704766275); INSERT INTO public.action VALUES (2241, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5674ad927bb01fce2f1f31cb2bbee967c0147568...2e4d83e639d3a02e175d16951cdb2e2654baab6a","Len":2}', 1704766276); INSERT INTO public.action VALUES (2242, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5674ad927bb01fce2f1f31cb2bbee967c0147568...2e4d83e639d3a02e175d16951cdb2e2654baab6a","Len":2}', 1704766276); INSERT INTO public.action VALUES (2243, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5674ad927bb01fce2f1f31cb2bbee967c0147568...2e4d83e639d3a02e175d16951cdb2e2654baab6a","Len":2}', 1704766276); INSERT INTO public.action VALUES (2442, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/153/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2443, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/154/head', false, '', 1704841256); INSERT INTO public.action VALUES (2444, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/154/head', false, '', 1704841256); INSERT INTO public.action VALUES (2445, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/154/head', false, '', 1704841256); INSERT INTO public.action VALUES (2446, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/154/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2244, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5674ad927bb01fce2f1f31cb2bbee967c0147568...2e4d83e639d3a02e175d16951cdb2e2654baab6a","Len":2}', 1704766276); INSERT INTO public.action VALUES (2969, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c78cbbacb228029e2f7904edb91659aa06135be7...bf230208b1efd148c1dec00f3c4eb158311100bd","Len":1}', 1705044399); INSERT INTO public.action VALUES (2970, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c78cbbacb228029e2f7904edb91659aa06135be7...bf230208b1efd148c1dec00f3c4eb158311100bd","Len":1}', 1705044399); INSERT INTO public.action VALUES (2971, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c78cbbacb228029e2f7904edb91659aa06135be7...bf230208b1efd148c1dec00f3c4eb158311100bd","Len":1}', 1705044399); INSERT INTO public.action VALUES (2972, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c78cbbacb228029e2f7904edb91659aa06135be7...bf230208b1efd148c1dec00f3c4eb158311100bd","Len":1}', 1705044399); INSERT INTO public.action VALUES (2973, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c78cbbacb228029e2f7904edb91659aa06135be7...bf230208b1efd148c1dec00f3c4eb158311100bd","Len":1}', 1705044399); INSERT INTO public.action VALUES (2979, 11, 11, 11, 21, 0, false, '', false, '86|fix icon user', 1705044537); INSERT INTO public.action VALUES (2980, 14, 11, 11, 21, 0, false, '', false, '86|fix icon user', 1705044537); INSERT INTO public.action VALUES (2981, 16, 11, 11, 21, 0, false, '', false, '86|fix icon user', 1705044537); INSERT INTO public.action VALUES (2982, 5, 11, 11, 21, 0, false, '', false, '86|fix icon user', 1705044537); INSERT INTO public.action VALUES (2983, 1, 11, 11, 21, 0, false, '', false, '86|fix icon user', 1705044537); INSERT INTO public.action VALUES (3019, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/134/merge', false, '', 1705046771); INSERT INTO public.action VALUES (3020, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/134/merge', false, '', 1705046771); INSERT INTO public.action VALUES (3021, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/135/head', false, '', 1705046771); INSERT INTO public.action VALUES (3022, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/135/head', false, '', 1705046771); INSERT INTO public.action VALUES (3023, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/135/head', false, '', 1705046771); INSERT INTO public.action VALUES (3024, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/135/merge', false, '', 1705046771); INSERT INTO public.action VALUES (3025, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/135/merge', false, '', 1705046771); INSERT INTO public.action VALUES (3026, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/135/merge', false, '', 1705046771); INSERT INTO public.action VALUES (3130, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/130/head', false, '', 1705105570); INSERT INTO public.action VALUES (3131, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/130/merge', false, '', 1705105570); INSERT INTO public.action VALUES (3132, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/130/merge', false, '', 1705105570); INSERT INTO public.action VALUES (3133, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/130/merge', false, '', 1705105570); INSERT INTO public.action VALUES (2245, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},{"Sha1":"cd975fd61522e19149dd713289ee1e0199a4c04d","Message":"change zindex ModalEditTTTN\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:08:46+07:00"}],"HeadCommit":{"Sha1":"2e4d83e639d3a02e175d16951cdb2e2654baab6a","Message":"Merge pull request ''change zindex ModalEditTTTN'' (#64) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/64\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:11:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5674ad927bb01fce2f1f31cb2bbee967c0147568...2e4d83e639d3a02e175d16951cdb2e2654baab6a","Len":2}', 1704766276); INSERT INTO public.action VALUES (2246, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cd975fd61522e19149dd713289ee1e0199a4c04d...ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Len":1}', 1704767004); INSERT INTO public.action VALUES (2247, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cd975fd61522e19149dd713289ee1e0199a4c04d...ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Len":1}', 1704767004); INSERT INTO public.action VALUES (2248, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cd975fd61522e19149dd713289ee1e0199a4c04d...ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Len":1}', 1704767004); INSERT INTO public.action VALUES (2249, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cd975fd61522e19149dd713289ee1e0199a4c04d...ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Len":1}', 1704767004); INSERT INTO public.action VALUES (2250, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cd975fd61522e19149dd713289ee1e0199a4c04d...ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Len":1}', 1704767004); INSERT INTO public.action VALUES (2251, 11, 7, 11, 21, 0, false, '', false, '65|fix zindex', 1704767039); INSERT INTO public.action VALUES (2252, 14, 7, 11, 21, 0, false, '', false, '65|fix zindex', 1704767039); INSERT INTO public.action VALUES (2253, 16, 7, 11, 21, 0, false, '', false, '65|fix zindex', 1704767039); INSERT INTO public.action VALUES (2254, 1, 7, 11, 21, 0, false, '', false, '65|fix zindex', 1704767039); INSERT INTO public.action VALUES (2255, 5, 7, 11, 21, 0, false, '', false, '65|fix zindex', 1704767039); INSERT INTO public.action VALUES (2256, 11, 11, 11, 21, 0, false, '', false, '65|fix zindex', 1704767055); INSERT INTO public.action VALUES (2257, 14, 11, 11, 21, 0, false, '', false, '65|fix zindex', 1704767055); INSERT INTO public.action VALUES (2258, 16, 11, 11, 21, 0, false, '', false, '65|fix zindex', 1704767055); INSERT INTO public.action VALUES (2259, 1, 11, 11, 21, 0, false, '', false, '65|fix zindex', 1704767055); INSERT INTO public.action VALUES (2260, 5, 11, 11, 21, 0, false, '', false, '65|fix zindex', 1704767055); INSERT INTO public.action VALUES (2273, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150...b51394f3145212044dd5954b808a0d9543bdaf5e","Len":1}', 1704773716); INSERT INTO public.action VALUES (2447, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/154/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2261, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4d83e639d3a02e175d16951cdb2e2654baab6a...6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Len":2}', 1704767055); INSERT INTO public.action VALUES (2262, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4d83e639d3a02e175d16951cdb2e2654baab6a...6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Len":2}', 1704767055); INSERT INTO public.action VALUES (2263, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4d83e639d3a02e175d16951cdb2e2654baab6a...6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Len":2}', 1704767055); INSERT INTO public.action VALUES (2264, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4d83e639d3a02e175d16951cdb2e2654baab6a...6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Len":2}', 1704767055); INSERT INTO public.action VALUES (2265, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},{"Sha1":"ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150","Message":"fix zindex\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T09:23:16+07:00"}],"HeadCommit":{"Sha1":"6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Message":"Merge pull request ''fix zindex'' (#65) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/65\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T09:24:09+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4d83e639d3a02e175d16951cdb2e2654baab6a...6e09f0acfd90921544a46a80a0fa99c37c13ecd1","Len":2}', 1704767055); INSERT INTO public.action VALUES (2272, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150...b51394f3145212044dd5954b808a0d9543bdaf5e","Len":1}', 1704773716); INSERT INTO public.action VALUES (2289, 16, 11, 11, 21, 0, false, '', false, '66|thinh', 1704774842); INSERT INTO public.action VALUES (2290, 1, 11, 11, 21, 0, false, '', false, '66|thinh', 1704774842); INSERT INTO public.action VALUES (2266, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},"CompareURL":"khieu-nai/admin/compare/69d562176e46ab843c90e41309ffeab53a0b93ae...fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Len":3}', 1704769746); INSERT INTO public.action VALUES (2267, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},"CompareURL":"khieu-nai/admin/compare/69d562176e46ab843c90e41309ffeab53a0b93ae...fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Len":3}', 1704769746); INSERT INTO public.action VALUES (2268, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},"CompareURL":"khieu-nai/admin/compare/69d562176e46ab843c90e41309ffeab53a0b93ae...fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Len":3}', 1704769746); INSERT INTO public.action VALUES (2269, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},"CompareURL":"khieu-nai/admin/compare/69d562176e46ab843c90e41309ffeab53a0b93ae...fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Len":3}', 1704769746); INSERT INTO public.action VALUES (2270, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},"CompareURL":"khieu-nai/admin/compare/69d562176e46ab843c90e41309ffeab53a0b93ae...fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Len":3}', 1704769746); INSERT INTO public.action VALUES (2291, 5, 11, 11, 21, 0, false, '', false, '66|thinh', 1704774842); INSERT INTO public.action VALUES (2448, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/154/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2449, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/155/head', false, '', 1704841256); INSERT INTO public.action VALUES (2450, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/155/head', false, '', 1704841256); INSERT INTO public.action VALUES (2451, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/155/head', false, '', 1704841256); INSERT INTO public.action VALUES (2452, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/155/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2271, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"82db8039462498c123744f7b56fd5e5f7093ddd8","Message":"fix: change theme\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-08T22:34:00+07:00"}],"HeadCommit":{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},"CompareURL":"khieu-nai/admin/compare/69d562176e46ab843c90e41309ffeab53a0b93ae...fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Len":3}', 1704769746); INSERT INTO public.action VALUES (2974, 11, 7, 11, 21, 0, false, '', false, '86|fix icon user', 1705044514); INSERT INTO public.action VALUES (2975, 14, 7, 11, 21, 0, false, '', false, '86|fix icon user', 1705044514); INSERT INTO public.action VALUES (2976, 16, 7, 11, 21, 0, false, '', false, '86|fix icon user', 1705044514); INSERT INTO public.action VALUES (2977, 5, 7, 11, 21, 0, false, '', false, '86|fix icon user', 1705044514); INSERT INTO public.action VALUES (2978, 1, 7, 11, 21, 0, false, '', false, '86|fix icon user', 1705044514); INSERT INTO public.action VALUES (2984, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e16637a65f7d4d092a3cdbdbd178eb1636964e1...6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Len":2}', 1705044538); INSERT INTO public.action VALUES (2985, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e16637a65f7d4d092a3cdbdbd178eb1636964e1...6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Len":2}', 1705044538); INSERT INTO public.action VALUES (2986, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e16637a65f7d4d092a3cdbdbd178eb1636964e1...6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Len":2}', 1705044538); INSERT INTO public.action VALUES (2987, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e16637a65f7d4d092a3cdbdbd178eb1636964e1...6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Len":2}', 1705044538); INSERT INTO public.action VALUES (3134, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/131/head', false, '', 1705105570); INSERT INTO public.action VALUES (3135, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/131/head', false, '', 1705105570); INSERT INTO public.action VALUES (3136, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/131/head', false, '', 1705105570); INSERT INTO public.action VALUES (3137, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/131/merge', false, '', 1705105570); INSERT INTO public.action VALUES (2274, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150...b51394f3145212044dd5954b808a0d9543bdaf5e","Len":1}', 1704773716); INSERT INTO public.action VALUES (2275, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150...b51394f3145212044dd5954b808a0d9543bdaf5e","Len":1}', 1704773716); INSERT INTO public.action VALUES (2276, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150...b51394f3145212044dd5954b808a0d9543bdaf5e","Len":1}', 1704773716); INSERT INTO public.action VALUES (2277, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"}],"HeadCommit":{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51394f3145212044dd5954b808a0d9543bdaf5e...f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Len":1}', 1704774778); INSERT INTO public.action VALUES (2278, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"}],"HeadCommit":{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51394f3145212044dd5954b808a0d9543bdaf5e...f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Len":1}', 1704774778); INSERT INTO public.action VALUES (2279, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"}],"HeadCommit":{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51394f3145212044dd5954b808a0d9543bdaf5e...f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Len":1}', 1704774778); INSERT INTO public.action VALUES (2280, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"}],"HeadCommit":{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51394f3145212044dd5954b808a0d9543bdaf5e...f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Len":1}', 1704774778); INSERT INTO public.action VALUES (2281, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"}],"HeadCommit":{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51394f3145212044dd5954b808a0d9543bdaf5e...f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Len":1}', 1704774778); INSERT INTO public.action VALUES (2282, 11, 7, 11, 21, 0, false, '', false, '66|thinh', 1704774826); INSERT INTO public.action VALUES (2283, 14, 7, 11, 21, 0, false, '', false, '66|thinh', 1704774826); INSERT INTO public.action VALUES (2284, 16, 7, 11, 21, 0, false, '', false, '66|thinh', 1704774826); INSERT INTO public.action VALUES (2285, 1, 7, 11, 21, 0, false, '', false, '66|thinh', 1704774826); INSERT INTO public.action VALUES (2286, 5, 7, 11, 21, 0, false, '', false, '66|thinh', 1704774826); INSERT INTO public.action VALUES (2287, 11, 11, 11, 21, 0, false, '', false, '66|thinh', 1704774842); INSERT INTO public.action VALUES (2288, 14, 11, 11, 21, 0, false, '', false, '66|thinh', 1704774842); INSERT INTO public.action VALUES (2292, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e09f0acfd90921544a46a80a0fa99c37c13ecd1...4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Len":3}', 1704774844); INSERT INTO public.action VALUES (2293, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e09f0acfd90921544a46a80a0fa99c37c13ecd1...4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Len":3}', 1704774844); INSERT INTO public.action VALUES (2294, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e09f0acfd90921544a46a80a0fa99c37c13ecd1...4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Len":3}', 1704774844); INSERT INTO public.action VALUES (2295, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e09f0acfd90921544a46a80a0fa99c37c13ecd1...4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Len":3}', 1704774844); INSERT INTO public.action VALUES (2315, 14, 7, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783850); INSERT INTO public.action VALUES (2316, 16, 7, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783850); INSERT INTO public.action VALUES (2317, 1, 7, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783850); INSERT INTO public.action VALUES (2318, 5, 7, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783850); INSERT INTO public.action VALUES (2371, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/fbdf0da958a4d25cb531ddf0db3f159673cf6e5b...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":1}', 1704788024); INSERT INTO public.action VALUES (2296, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},{"Sha1":"f84a3dfbb60e8522bd2a4e5b4bfc811486bce001","Message":"update title\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:32:51+07:00"},{"Sha1":"b51394f3145212044dd5954b808a0d9543bdaf5e","Message":"fix form add hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T11:15:07+07:00"}],"HeadCommit":{"Sha1":"4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Message":"Merge pull request ''thinh'' (#66) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/66\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T11:33:56+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e09f0acfd90921544a46a80a0fa99c37c13ecd1...4a1e20f14835559c8bb4f994be3bdbbaa72cdac2","Len":3}', 1704774844); INSERT INTO public.action VALUES (2297, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/159/head', false, '', 1704782455); INSERT INTO public.action VALUES (2298, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/159/head', false, '', 1704782455); INSERT INTO public.action VALUES (2299, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/159/head', false, '', 1704782455); INSERT INTO public.action VALUES (2300, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/159/merge', false, '', 1704782455); INSERT INTO public.action VALUES (2301, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/159/merge', false, '', 1704782455); INSERT INTO public.action VALUES (2302, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/159/merge', false, '', 1704782455); INSERT INTO public.action VALUES (2303, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/160/head', false, '', 1704782455); INSERT INTO public.action VALUES (2304, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/160/head', false, '', 1704782455); INSERT INTO public.action VALUES (2305, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/160/head', false, '', 1704782455); INSERT INTO public.action VALUES (2306, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/160/merge', false, '', 1704782455); INSERT INTO public.action VALUES (2307, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/160/merge', false, '', 1704782455); INSERT INTO public.action VALUES (2308, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/160/merge', false, '', 1704782455); INSERT INTO public.action VALUES (2309, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f84a3dfbb60e8522bd2a4e5b4bfc811486bce001...ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Len":1}', 1704783829); INSERT INTO public.action VALUES (2310, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f84a3dfbb60e8522bd2a4e5b4bfc811486bce001...ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Len":1}', 1704783829); INSERT INTO public.action VALUES (2311, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f84a3dfbb60e8522bd2a4e5b4bfc811486bce001...ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Len":1}', 1704783829); INSERT INTO public.action VALUES (2312, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f84a3dfbb60e8522bd2a4e5b4bfc811486bce001...ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Len":1}', 1704783829); INSERT INTO public.action VALUES (2313, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f84a3dfbb60e8522bd2a4e5b4bfc811486bce001...ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Len":1}', 1704783829); INSERT INTO public.action VALUES (2314, 11, 7, 11, 21, 0, false, '', false, '67|update check requite bao cao', 1704783850); INSERT INTO public.action VALUES (2324, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4a1e20f14835559c8bb4f994be3bdbbaa72cdac2...7d38765ee7248f74597c22ad61fac6a865a76263","Len":2}', 1704783868); INSERT INTO public.action VALUES (2325, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4a1e20f14835559c8bb4f994be3bdbbaa72cdac2...7d38765ee7248f74597c22ad61fac6a865a76263","Len":2}', 1704783868); INSERT INTO public.action VALUES (2326, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4a1e20f14835559c8bb4f994be3bdbbaa72cdac2...7d38765ee7248f74597c22ad61fac6a865a76263","Len":2}', 1704783868); INSERT INTO public.action VALUES (2327, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4a1e20f14835559c8bb4f994be3bdbbaa72cdac2...7d38765ee7248f74597c22ad61fac6a865a76263","Len":2}', 1704783868); INSERT INTO public.action VALUES (2328, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},{"Sha1":"ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb","Message":"update check requite bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:03:40+07:00"}],"HeadCommit":{"Sha1":"7d38765ee7248f74597c22ad61fac6a865a76263","Message":"Merge pull request ''update check requite bao cao'' (#67) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/67\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:04:21+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4a1e20f14835559c8bb4f994be3bdbbaa72cdac2...7d38765ee7248f74597c22ad61fac6a865a76263","Len":2}', 1704783868); INSERT INTO public.action VALUES (2339, 11, 11, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784796); INSERT INTO public.action VALUES (2340, 14, 11, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784796); INSERT INTO public.action VALUES (2341, 16, 11, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784796); INSERT INTO public.action VALUES (2342, 1, 11, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784796); INSERT INTO public.action VALUES (2343, 5, 11, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784796); INSERT INTO public.action VALUES (2453, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/155/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2454, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/155/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2455, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/156/head', false, '', 1704841256); INSERT INTO public.action VALUES (2329, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb...f2389db592f2b5230471326f66fa942bbafb1ca4","Len":1}', 1704784728); INSERT INTO public.action VALUES (2330, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb...f2389db592f2b5230471326f66fa942bbafb1ca4","Len":1}', 1704784728); INSERT INTO public.action VALUES (2331, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb...f2389db592f2b5230471326f66fa942bbafb1ca4","Len":1}', 1704784728); INSERT INTO public.action VALUES (2332, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb...f2389db592f2b5230471326f66fa942bbafb1ca4","Len":1}', 1704784728); INSERT INTO public.action VALUES (2333, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb...f2389db592f2b5230471326f66fa942bbafb1ca4","Len":1}', 1704784728); INSERT INTO public.action VALUES (2334, 11, 7, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784779); INSERT INTO public.action VALUES (2335, 14, 7, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784779); INSERT INTO public.action VALUES (2336, 16, 7, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784779); INSERT INTO public.action VALUES (2337, 1, 7, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784779); INSERT INTO public.action VALUES (2338, 5, 7, 11, 21, 0, false, '', false, '68|add check trung chi tieu', 1704784779); INSERT INTO public.action VALUES (2344, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7d38765ee7248f74597c22ad61fac6a865a76263...e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Len":2}', 1704784797); INSERT INTO public.action VALUES (2345, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7d38765ee7248f74597c22ad61fac6a865a76263...e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Len":2}', 1704784797); INSERT INTO public.action VALUES (2346, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7d38765ee7248f74597c22ad61fac6a865a76263...e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Len":2}', 1704784797); INSERT INTO public.action VALUES (2347, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7d38765ee7248f74597c22ad61fac6a865a76263...e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Len":2}', 1704784797); INSERT INTO public.action VALUES (2348, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},{"Sha1":"f2389db592f2b5230471326f66fa942bbafb1ca4","Message":"add check trung chi tieu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T14:18:41+07:00"}],"HeadCommit":{"Sha1":"e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Message":"Merge pull request ''add check trung chi tieu'' (#68) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/68\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T14:19:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7d38765ee7248f74597c22ad61fac6a865a76263...e938e87dccb49b7a9c0fd0c02a54920b7ef0d925","Len":2}', 1704784797); INSERT INTO public.action VALUES (2349, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f2389db592f2b5230471326f66fa942bbafb1ca4...ba7fc72161054e3a1085ed4b8c70d84198ce961b","Len":1}', 1704787767); INSERT INTO public.action VALUES (2350, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f2389db592f2b5230471326f66fa942bbafb1ca4...ba7fc72161054e3a1085ed4b8c70d84198ce961b","Len":1}', 1704787767); INSERT INTO public.action VALUES (2351, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f2389db592f2b5230471326f66fa942bbafb1ca4...ba7fc72161054e3a1085ed4b8c70d84198ce961b","Len":1}', 1704787767); INSERT INTO public.action VALUES (2352, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f2389db592f2b5230471326f66fa942bbafb1ca4...ba7fc72161054e3a1085ed4b8c70d84198ce961b","Len":1}', 1704787767); INSERT INTO public.action VALUES (2353, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f2389db592f2b5230471326f66fa942bbafb1ca4...ba7fc72161054e3a1085ed4b8c70d84198ce961b","Len":1}', 1704787767); INSERT INTO public.action VALUES (2354, 11, 7, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787810); INSERT INTO public.action VALUES (2355, 14, 7, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787810); INSERT INTO public.action VALUES (2356, 16, 7, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787810); INSERT INTO public.action VALUES (2357, 1, 7, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787810); INSERT INTO public.action VALUES (2358, 5, 7, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787810); INSERT INTO public.action VALUES (2359, 11, 11, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787825); INSERT INTO public.action VALUES (2360, 14, 11, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787825); INSERT INTO public.action VALUES (2361, 16, 11, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787825); INSERT INTO public.action VALUES (2362, 1, 11, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787825); INSERT INTO public.action VALUES (2363, 5, 11, 11, 21, 0, false, '', false, '69|add required tu ngay den ngay', 1704787825); INSERT INTO public.action VALUES (2366, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e938e87dccb49b7a9c0fd0c02a54920b7ef0d925...84e51ab1a10e1be4299a3924c9379a9732aa726b","Len":2}', 1704787826); INSERT INTO public.action VALUES (2988, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},{"Sha1":"bf230208b1efd148c1dec00f3c4eb158311100bd","Message":"fix icon user\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:26:31+07:00"}],"HeadCommit":{"Sha1":"6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Message":"Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:28:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6e16637a65f7d4d092a3cdbdbd178eb1636964e1...6189e5347420d4bbcee5c4f550ed3cd17a77ba41","Len":2}', 1705044538); INSERT INTO public.action VALUES (3004, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6189e5347420d4bbcee5c4f550ed3cd17a77ba41...1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Len":2}', 1705045583); INSERT INTO public.action VALUES (3005, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6189e5347420d4bbcee5c4f550ed3cd17a77ba41...1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Len":2}', 1705045583); INSERT INTO public.action VALUES (3138, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/131/merge', false, '', 1705105570); INSERT INTO public.action VALUES (2364, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e938e87dccb49b7a9c0fd0c02a54920b7ef0d925...84e51ab1a10e1be4299a3924c9379a9732aa726b","Len":2}', 1704787826); INSERT INTO public.action VALUES (2365, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e938e87dccb49b7a9c0fd0c02a54920b7ef0d925...84e51ab1a10e1be4299a3924c9379a9732aa726b","Len":2}', 1704787826); INSERT INTO public.action VALUES (2367, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e938e87dccb49b7a9c0fd0c02a54920b7ef0d925...84e51ab1a10e1be4299a3924c9379a9732aa726b","Len":2}', 1704787826); INSERT INTO public.action VALUES (2368, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},{"Sha1":"ba7fc72161054e3a1085ed4b8c70d84198ce961b","Message":"add required tu ngay den ngay\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T15:09:20+07:00"}],"HeadCommit":{"Sha1":"84e51ab1a10e1be4299a3924c9379a9732aa726b","Message":"Merge pull request ''add required tu ngay den ngay'' (#69) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/69\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T15:10:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e938e87dccb49b7a9c0fd0c02a54920b7ef0d925...84e51ab1a10e1be4299a3924c9379a9732aa726b","Len":2}', 1704787826); INSERT INTO public.action VALUES (2369, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/fbdf0da958a4d25cb531ddf0db3f159673cf6e5b...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":1}', 1704788024); INSERT INTO public.action VALUES (2370, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/fbdf0da958a4d25cb531ddf0db3f159673cf6e5b...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":1}', 1704788024); INSERT INTO public.action VALUES (2456, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/156/head', false, '', 1704841256); INSERT INTO public.action VALUES (2457, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/156/head', false, '', 1704841256); INSERT INTO public.action VALUES (2458, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/156/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2459, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/156/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2460, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/156/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2372, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/fbdf0da958a4d25cb531ddf0db3f159673cf6e5b...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":1}', 1704788024); INSERT INTO public.action VALUES (2373, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/fbdf0da958a4d25cb531ddf0db3f159673cf6e5b...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":1}', 1704788024); INSERT INTO public.action VALUES (2374, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/fbdf0da958a4d25cb531ddf0db3f159673cf6e5b...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":1}', 1704788024); INSERT INTO public.action VALUES (2375, 15, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/82db8039462498c123744f7b56fd5e5f7093ddd8...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":6}', 1704788108); INSERT INTO public.action VALUES (2376, 12, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/82db8039462498c123744f7b56fd5e5f7093ddd8...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":6}', 1704788108); INSERT INTO public.action VALUES (2377, 2, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/82db8039462498c123744f7b56fd5e5f7093ddd8...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":6}', 1704788108); INSERT INTO public.action VALUES (2378, 1, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/82db8039462498c123744f7b56fd5e5f7093ddd8...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":6}', 1704788108); INSERT INTO public.action VALUES (2379, 5, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/82db8039462498c123744f7b56fd5e5f7093ddd8...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":6}', 1704788108); INSERT INTO public.action VALUES (2380, 9, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},{"Sha1":"fbdf0da958a4d25cb531ddf0db3f159673cf6e5b","Message":"form add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T10:06:43+07:00"},{"Sha1":"6a80b95cc1db1917864f82590d04246acef14ca0","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin into dev-hoa\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T08:28:54+07:00"},{"Sha1":"69d562176e46ab843c90e41309ffeab53a0b93ae","Message":"confli\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:51:58+07:00"},{"Sha1":"8ab38ea4dccb484e670835e3889e14aa358d7ea7","Message":"delete update add\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-08T15:48:40+07:00"}],"HeadCommit":{"Sha1":"b0d567bde1bba9076c0b76bc58cf3877afbd980a","Message":"form data\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T15:13:23+07:00"},"CompareURL":"khieu-nai/admin/compare/82db8039462498c123744f7b56fd5e5f7093ddd8...b0d567bde1bba9076c0b76bc58cf3877afbd980a","Len":6}', 1704788108); INSERT INTO public.action VALUES (2496, 5, 7, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854938); INSERT INTO public.action VALUES (3139, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/131/merge', false, '', 1705105570); INSERT INTO public.action VALUES (3140, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/132/head', false, '', 1705105570); INSERT INTO public.action VALUES (3141, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/132/head', false, '', 1705105570); INSERT INTO public.action VALUES (3142, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/132/head', false, '', 1705105570); INSERT INTO public.action VALUES (2381, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...18aa26a4f2220e381af8bb873922aece59bd4ac5","Len":2}', 1704791224); INSERT INTO public.action VALUES (2382, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...18aa26a4f2220e381af8bb873922aece59bd4ac5","Len":2}', 1704791224); INSERT INTO public.action VALUES (2383, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...18aa26a4f2220e381af8bb873922aece59bd4ac5","Len":2}', 1704791224); INSERT INTO public.action VALUES (2384, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...18aa26a4f2220e381af8bb873922aece59bd4ac5","Len":2}', 1704791224); INSERT INTO public.action VALUES (2385, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...18aa26a4f2220e381af8bb873922aece59bd4ac5","Len":2}', 1704791224); INSERT INTO public.action VALUES (2386, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...18aa26a4f2220e381af8bb873922aece59bd4ac5","Len":2}', 1704791224); INSERT INTO public.action VALUES (2408, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84e51ab1a10e1be4299a3924c9379a9732aa726b...ca8a43c962e9597749bca9604a23617d805bae38","Len":2}', 1704807710); INSERT INTO public.action VALUES (2387, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},{"Sha1":"23affd0b78c2076c2baa3aefc0d18613b09f1bc7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:37+07:00"},{"Sha1":"7b8a440c77ff7429faebccbc1d1599aa34c13123","Message":"fix PheDuyetKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:10+07:00"}],"HeadCommit":{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3efeb98aa6e5f064a9ac0997551f9ef39a0c2609...11f6b26840584031c51dc4aaaaf912919fb5f87b","Len":3}', 1704802257); INSERT INTO public.action VALUES (2388, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},{"Sha1":"23affd0b78c2076c2baa3aefc0d18613b09f1bc7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:37+07:00"},{"Sha1":"7b8a440c77ff7429faebccbc1d1599aa34c13123","Message":"fix PheDuyetKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:10+07:00"}],"HeadCommit":{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3efeb98aa6e5f064a9ac0997551f9ef39a0c2609...11f6b26840584031c51dc4aaaaf912919fb5f87b","Len":3}', 1704802257); INSERT INTO public.action VALUES (2389, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},{"Sha1":"23affd0b78c2076c2baa3aefc0d18613b09f1bc7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:37+07:00"},{"Sha1":"7b8a440c77ff7429faebccbc1d1599aa34c13123","Message":"fix PheDuyetKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:10+07:00"}],"HeadCommit":{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3efeb98aa6e5f064a9ac0997551f9ef39a0c2609...11f6b26840584031c51dc4aaaaf912919fb5f87b","Len":3}', 1704802257); INSERT INTO public.action VALUES (2390, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},{"Sha1":"23affd0b78c2076c2baa3aefc0d18613b09f1bc7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:37+07:00"},{"Sha1":"7b8a440c77ff7429faebccbc1d1599aa34c13123","Message":"fix PheDuyetKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:10+07:00"}],"HeadCommit":{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3efeb98aa6e5f064a9ac0997551f9ef39a0c2609...11f6b26840584031c51dc4aaaaf912919fb5f87b","Len":3}', 1704802257); INSERT INTO public.action VALUES (2391, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},{"Sha1":"23affd0b78c2076c2baa3aefc0d18613b09f1bc7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:37+07:00"},{"Sha1":"7b8a440c77ff7429faebccbc1d1599aa34c13123","Message":"fix PheDuyetKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:10+07:00"}],"HeadCommit":{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3efeb98aa6e5f064a9ac0997551f9ef39a0c2609...11f6b26840584031c51dc4aaaaf912919fb5f87b","Len":3}', 1704802257); INSERT INTO public.action VALUES (2431, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/152/head', false, '', 1704841256); INSERT INTO public.action VALUES (2432, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/152/head', false, '', 1704841256); INSERT INTO public.action VALUES (2433, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/152/head', false, '', 1704841256); INSERT INTO public.action VALUES (2434, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/152/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2392, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},{"Sha1":"23affd0b78c2076c2baa3aefc0d18613b09f1bc7","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:37+07:00"},{"Sha1":"7b8a440c77ff7429faebccbc1d1599aa34c13123","Message":"fix PheDuyetKeHoachTuyenSinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:19:10+07:00"}],"HeadCommit":{"Sha1":"11f6b26840584031c51dc4aaaaf912919fb5f87b","Message":"Check trùng nhà giáo, học viên\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-09T15:56:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/3efeb98aa6e5f064a9ac0997551f9ef39a0c2609...11f6b26840584031c51dc4aaaaf912919fb5f87b","Len":3}', 1704802257); INSERT INTO public.action VALUES (2393, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba7fc72161054e3a1085ed4b8c70d84198ce961b...18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Len":1}', 1704807655); INSERT INTO public.action VALUES (2394, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba7fc72161054e3a1085ed4b8c70d84198ce961b...18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Len":1}', 1704807655); INSERT INTO public.action VALUES (2395, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba7fc72161054e3a1085ed4b8c70d84198ce961b...18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Len":1}', 1704807655); INSERT INTO public.action VALUES (2396, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba7fc72161054e3a1085ed4b8c70d84198ce961b...18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Len":1}', 1704807655); INSERT INTO public.action VALUES (2397, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ba7fc72161054e3a1085ed4b8c70d84198ce961b...18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Len":1}', 1704807655); INSERT INTO public.action VALUES (2398, 11, 7, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807691); INSERT INTO public.action VALUES (2399, 14, 7, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807691); INSERT INTO public.action VALUES (2400, 16, 7, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807691); INSERT INTO public.action VALUES (2401, 1, 7, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807691); INSERT INTO public.action VALUES (2402, 5, 7, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807691); INSERT INTO public.action VALUES (2403, 11, 11, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807708); INSERT INTO public.action VALUES (2404, 14, 11, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807708); INSERT INTO public.action VALUES (2405, 16, 11, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807708); INSERT INTO public.action VALUES (2406, 1, 11, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807708); INSERT INTO public.action VALUES (2407, 5, 11, 11, 21, 0, false, '', false, '70|add list choose cs gdnn', 1704807708); INSERT INTO public.action VALUES (2435, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/152/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2436, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/152/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2437, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/153/head', false, '', 1704841256); INSERT INTO public.action VALUES (2438, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/153/head', false, '', 1704841256); INSERT INTO public.action VALUES (2439, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/153/head', false, '', 1704841256); INSERT INTO public.action VALUES (2440, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/153/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2409, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84e51ab1a10e1be4299a3924c9379a9732aa726b...ca8a43c962e9597749bca9604a23617d805bae38","Len":2}', 1704807710); INSERT INTO public.action VALUES (2410, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84e51ab1a10e1be4299a3924c9379a9732aa726b...ca8a43c962e9597749bca9604a23617d805bae38","Len":2}', 1704807710); INSERT INTO public.action VALUES (2411, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84e51ab1a10e1be4299a3924c9379a9732aa726b...ca8a43c962e9597749bca9604a23617d805bae38","Len":2}', 1704807710); INSERT INTO public.action VALUES (2412, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},{"Sha1":"18d73caa2573e24d8b765dbac7ddb10d036a7e2c","Message":"add list choose cs gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-09T20:40:44+07:00"}],"HeadCommit":{"Sha1":"ca8a43c962e9597749bca9604a23617d805bae38","Message":"Merge pull request ''add list choose cs gdnn'' (#70) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/70\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-09T20:41:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/84e51ab1a10e1be4299a3924c9379a9732aa726b...ca8a43c962e9597749bca9604a23617d805bae38","Len":2}', 1704807710); INSERT INTO public.action VALUES (2413, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/157/head', false, '', 1704811855); INSERT INTO public.action VALUES (2414, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/157/head', false, '', 1704811855); INSERT INTO public.action VALUES (2415, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/157/head', false, '', 1704811855); INSERT INTO public.action VALUES (2416, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/157/merge', false, '', 1704811855); INSERT INTO public.action VALUES (2417, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/157/merge', false, '', 1704811855); INSERT INTO public.action VALUES (2418, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/157/merge', false, '', 1704811855); INSERT INTO public.action VALUES (2419, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/158/head', false, '', 1704811855); INSERT INTO public.action VALUES (2420, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/158/head', false, '', 1704811855); INSERT INTO public.action VALUES (2421, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/158/head', false, '', 1704811855); INSERT INTO public.action VALUES (2422, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/158/merge', false, '', 1704811855); INSERT INTO public.action VALUES (2423, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/158/merge', false, '', 1704811855); INSERT INTO public.action VALUES (2424, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/158/merge', false, '', 1704811855); INSERT INTO public.action VALUES (2425, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/151/head', false, '', 1704841255); INSERT INTO public.action VALUES (2426, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/151/head', false, '', 1704841255); INSERT INTO public.action VALUES (2427, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/151/head', false, '', 1704841255); INSERT INTO public.action VALUES (2428, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/151/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2429, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/151/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2430, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/151/merge', false, '', 1704841256); INSERT INTO public.action VALUES (2461, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"}],"HeadCommit":{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"},"CompareURL":"khieu-nai/backend/compare/5f287cf162a6f7e4bac0eda6ca78603b02665568...e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Len":1}', 1704849359); INSERT INTO public.action VALUES (2462, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"}],"HeadCommit":{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"},"CompareURL":"khieu-nai/backend/compare/5f287cf162a6f7e4bac0eda6ca78603b02665568...e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Len":1}', 1704849359); INSERT INTO public.action VALUES (2463, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"}],"HeadCommit":{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"},"CompareURL":"khieu-nai/backend/compare/5f287cf162a6f7e4bac0eda6ca78603b02665568...e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Len":1}', 1704849359); INSERT INTO public.action VALUES (2464, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"}],"HeadCommit":{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"},"CompareURL":"khieu-nai/backend/compare/5f287cf162a6f7e4bac0eda6ca78603b02665568...e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Len":1}', 1704849359); INSERT INTO public.action VALUES (2465, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"}],"HeadCommit":{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"},"CompareURL":"khieu-nai/backend/compare/5f287cf162a6f7e4bac0eda6ca78603b02665568...e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Len":1}', 1704849359); INSERT INTO public.action VALUES (2466, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"}],"HeadCommit":{"Sha1":"e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Message":"update\n","AuthorEmail":"nguyentrananhvu88@gmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@gmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-10T01:15:49+07:00"},"CompareURL":"khieu-nai/backend/compare/5f287cf162a6f7e4bac0eda6ca78603b02665568...e28da4e943c7dcb8c90c13eed30ec05e405f6e3c","Len":1}', 1704849359); INSERT INTO public.action VALUES (2467, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d73caa2573e24d8b765dbac7ddb10d036a7e2c...60913e501d422158067d25f877b8db01f2433abe","Len":1}', 1704853810); INSERT INTO public.action VALUES (2468, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d73caa2573e24d8b765dbac7ddb10d036a7e2c...60913e501d422158067d25f877b8db01f2433abe","Len":1}', 1704853810); INSERT INTO public.action VALUES (2469, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d73caa2573e24d8b765dbac7ddb10d036a7e2c...60913e501d422158067d25f877b8db01f2433abe","Len":1}', 1704853810); INSERT INTO public.action VALUES (2556, 14, 7, 11, 21, 0, false, '', false, '74|update search menu', 1704870391); INSERT INTO public.action VALUES (2557, 16, 7, 11, 21, 0, false, '', false, '74|update search menu', 1704870391); INSERT INTO public.action VALUES (2558, 1, 7, 11, 21, 0, false, '', false, '74|update search menu', 1704870391); INSERT INTO public.action VALUES (2559, 5, 7, 11, 21, 0, false, '', false, '74|update search menu', 1704870391); INSERT INTO public.action VALUES (2560, 11, 11, 11, 21, 0, false, '', false, '74|update search menu', 1704870509); INSERT INTO public.action VALUES (2470, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d73caa2573e24d8b765dbac7ddb10d036a7e2c...60913e501d422158067d25f877b8db01f2433abe","Len":1}', 1704853810); INSERT INTO public.action VALUES (2471, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d73caa2573e24d8b765dbac7ddb10d036a7e2c...60913e501d422158067d25f877b8db01f2433abe","Len":1}', 1704853810); INSERT INTO public.action VALUES (2472, 11, 7, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853905); INSERT INTO public.action VALUES (2473, 14, 7, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853905); INSERT INTO public.action VALUES (2474, 16, 7, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853905); INSERT INTO public.action VALUES (2475, 1, 7, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853905); INSERT INTO public.action VALUES (2476, 5, 7, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853905); INSERT INTO public.action VALUES (2477, 11, 11, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853919); INSERT INTO public.action VALUES (2478, 14, 11, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853919); INSERT INTO public.action VALUES (2479, 16, 11, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853919); INSERT INTO public.action VALUES (2480, 1, 11, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853919); INSERT INTO public.action VALUES (2481, 5, 11, 11, 21, 0, false, '', false, '71|add btn gui mail nhac nho', 1704853919); INSERT INTO public.action VALUES (2482, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ca8a43c962e9597749bca9604a23617d805bae38...1669b03cec92558923e86c96f89e177f983d7e66","Len":2}', 1704853919); INSERT INTO public.action VALUES (2483, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ca8a43c962e9597749bca9604a23617d805bae38...1669b03cec92558923e86c96f89e177f983d7e66","Len":2}', 1704853919); INSERT INTO public.action VALUES (2484, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ca8a43c962e9597749bca9604a23617d805bae38...1669b03cec92558923e86c96f89e177f983d7e66","Len":2}', 1704853919); INSERT INTO public.action VALUES (2497, 11, 11, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854953); INSERT INTO public.action VALUES (2498, 14, 11, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854953); INSERT INTO public.action VALUES (2499, 16, 11, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854953); INSERT INTO public.action VALUES (2500, 1, 11, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854953); INSERT INTO public.action VALUES (2501, 5, 11, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854953); INSERT INTO public.action VALUES (2561, 14, 11, 11, 21, 0, false, '', false, '74|update search menu', 1704870509); INSERT INTO public.action VALUES (2485, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ca8a43c962e9597749bca9604a23617d805bae38...1669b03cec92558923e86c96f89e177f983d7e66","Len":2}', 1704853919); INSERT INTO public.action VALUES (2486, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},{"Sha1":"60913e501d422158067d25f877b8db01f2433abe","Message":"add btn gui mail nhac nho\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:30:01+07:00"}],"HeadCommit":{"Sha1":"1669b03cec92558923e86c96f89e177f983d7e66","Message":"Merge pull request ''add btn gui mail nhac nho'' (#71) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/71\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:31:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ca8a43c962e9597749bca9604a23617d805bae38...1669b03cec92558923e86c96f89e177f983d7e66","Len":2}', 1704853919); INSERT INTO public.action VALUES (2487, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/60913e501d422158067d25f877b8db01f2433abe...919d45696e37045a2346ec721738b205ccb683a6","Len":1}', 1704854911); INSERT INTO public.action VALUES (2488, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/60913e501d422158067d25f877b8db01f2433abe...919d45696e37045a2346ec721738b205ccb683a6","Len":1}', 1704854911); INSERT INTO public.action VALUES (2489, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/60913e501d422158067d25f877b8db01f2433abe...919d45696e37045a2346ec721738b205ccb683a6","Len":1}', 1704854911); INSERT INTO public.action VALUES (2490, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/60913e501d422158067d25f877b8db01f2433abe...919d45696e37045a2346ec721738b205ccb683a6","Len":1}', 1704854911); INSERT INTO public.action VALUES (2491, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/60913e501d422158067d25f877b8db01f2433abe...919d45696e37045a2346ec721738b205ccb683a6","Len":1}', 1704854911); INSERT INTO public.action VALUES (2492, 11, 7, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854938); INSERT INTO public.action VALUES (2493, 14, 7, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854938); INSERT INTO public.action VALUES (2494, 16, 7, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854938); INSERT INTO public.action VALUES (2495, 1, 7, 11, 21, 0, false, '', false, '72|fix thong bao loi hs + nha giao', 1704854938); INSERT INTO public.action VALUES (2502, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1669b03cec92558923e86c96f89e177f983d7e66...2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Len":2}', 1704854954); INSERT INTO public.action VALUES (2503, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1669b03cec92558923e86c96f89e177f983d7e66...2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Len":2}', 1704854954); INSERT INTO public.action VALUES (2504, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1669b03cec92558923e86c96f89e177f983d7e66...2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Len":2}', 1704854954); INSERT INTO public.action VALUES (2505, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1669b03cec92558923e86c96f89e177f983d7e66...2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Len":2}', 1704854954); INSERT INTO public.action VALUES (2506, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},{"Sha1":"919d45696e37045a2346ec721738b205ccb683a6","Message":"fix thong bao loi hs + nha giao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T09:48:23+07:00"}],"HeadCommit":{"Sha1":"2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Message":"Merge pull request ''fix thong bao loi hs + nha giao'' (#72) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/72\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T09:49:07+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1669b03cec92558923e86c96f89e177f983d7e66...2450107fb2f67f6adad8cfe8683ded6dce63a0a2","Len":2}', 1704854954); INSERT INTO public.action VALUES (2562, 16, 11, 11, 21, 0, false, '', false, '74|update search menu', 1704870509); INSERT INTO public.action VALUES (2563, 1, 11, 11, 21, 0, false, '', false, '74|update search menu', 1704870509); INSERT INTO public.action VALUES (2564, 5, 11, 11, 21, 0, false, '', false, '74|update search menu', 1704870509); INSERT INTO public.action VALUES (3143, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/132/merge', false, '', 1705105570); INSERT INTO public.action VALUES (3144, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/132/merge', false, '', 1705105570); INSERT INTO public.action VALUES (3145, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/132/merge', false, '', 1705105570); INSERT INTO public.action VALUES (3223, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/121/head', false, '', 1705164372); INSERT INTO public.action VALUES (2507, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/919d45696e37045a2346ec721738b205ccb683a6...70f24e6d6cf607b25226c6469303429543dc99e2","Len":1}', 1704858985); INSERT INTO public.action VALUES (2508, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/919d45696e37045a2346ec721738b205ccb683a6...70f24e6d6cf607b25226c6469303429543dc99e2","Len":1}', 1704858985); INSERT INTO public.action VALUES (2509, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/919d45696e37045a2346ec721738b205ccb683a6...70f24e6d6cf607b25226c6469303429543dc99e2","Len":1}', 1704858985); INSERT INTO public.action VALUES (2510, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/919d45696e37045a2346ec721738b205ccb683a6...70f24e6d6cf607b25226c6469303429543dc99e2","Len":1}', 1704858985); INSERT INTO public.action VALUES (2511, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/919d45696e37045a2346ec721738b205ccb683a6...70f24e6d6cf607b25226c6469303429543dc99e2","Len":1}', 1704858985); INSERT INTO public.action VALUES (2512, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"},{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":4}', 1704860399); INSERT INTO public.action VALUES (2513, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"},{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":4}', 1704860399); INSERT INTO public.action VALUES (2570, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/149/head', false, '', 1704870655); INSERT INTO public.action VALUES (2514, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"},{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":4}', 1704860399); INSERT INTO public.action VALUES (2515, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"},{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":4}', 1704860399); INSERT INTO public.action VALUES (2516, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"},{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":4}', 1704860399); INSERT INTO public.action VALUES (2517, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"},{"Sha1":"18aa26a4f2220e381af8bb873922aece59bd4ac5","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:55+07:00"},{"Sha1":"75a33c4b60ab107210c252939cd1576293f369ec","Message":"fix: fomControl File\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-09T16:06:15+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/b0d567bde1bba9076c0b76bc58cf3877afbd980a...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":4}', 1704860399); INSERT INTO public.action VALUES (2518, 15, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/18aa26a4f2220e381af8bb873922aece59bd4ac5...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":2}', 1704860458); INSERT INTO public.action VALUES (2571, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/149/head', false, '', 1704870655); INSERT INTO public.action VALUES (2519, 12, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/18aa26a4f2220e381af8bb873922aece59bd4ac5...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":2}', 1704860458); INSERT INTO public.action VALUES (2520, 2, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/18aa26a4f2220e381af8bb873922aece59bd4ac5...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":2}', 1704860458); INSERT INTO public.action VALUES (2521, 1, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/18aa26a4f2220e381af8bb873922aece59bd4ac5...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":2}', 1704860458); INSERT INTO public.action VALUES (2522, 5, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/18aa26a4f2220e381af8bb873922aece59bd4ac5...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":2}', 1704860458); INSERT INTO public.action VALUES (2523, 9, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},{"Sha1":"3280f52298250f322f9086596c314792ab19574e","Message":"doc\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-09T16:07:34+07:00"}],"HeadCommit":{"Sha1":"9bb151d8d320322dc1ac1f34d79739b6448af864","Message":"action with letter\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T11:19:32+07:00"},"CompareURL":"khieu-nai/admin/compare/18aa26a4f2220e381af8bb873922aece59bd4ac5...9bb151d8d320322dc1ac1f34d79739b6448af864","Len":2}', 1704860458); INSERT INTO public.action VALUES (2524, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},{"Sha1":"2364649e3ae48916acf9b3affbdc0cc1f63ab1dd","Message":"update baocao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:00+07:00"}],"HeadCommit":{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/11f6b26840584031c51dc4aaaaf912919fb5f87b...6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Len":2}', 1704861056); INSERT INTO public.action VALUES (2525, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},{"Sha1":"2364649e3ae48916acf9b3affbdc0cc1f63ab1dd","Message":"update baocao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:00+07:00"}],"HeadCommit":{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/11f6b26840584031c51dc4aaaaf912919fb5f87b...6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Len":2}', 1704861056); INSERT INTO public.action VALUES (2572, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/149/head', false, '', 1704870655); INSERT INTO public.action VALUES (2573, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/149/merge', false, '', 1704870655); INSERT INTO public.action VALUES (2574, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/149/merge', false, '', 1704870655); INSERT INTO public.action VALUES (2526, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},{"Sha1":"2364649e3ae48916acf9b3affbdc0cc1f63ab1dd","Message":"update baocao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:00+07:00"}],"HeadCommit":{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/11f6b26840584031c51dc4aaaaf912919fb5f87b...6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Len":2}', 1704861056); INSERT INTO public.action VALUES (2527, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},{"Sha1":"2364649e3ae48916acf9b3affbdc0cc1f63ab1dd","Message":"update baocao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:00+07:00"}],"HeadCommit":{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/11f6b26840584031c51dc4aaaaf912919fb5f87b...6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Len":2}', 1704861056); INSERT INTO public.action VALUES (2528, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},{"Sha1":"2364649e3ae48916acf9b3affbdc0cc1f63ab1dd","Message":"update baocao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:00+07:00"}],"HeadCommit":{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/11f6b26840584031c51dc4aaaaf912919fb5f87b...6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Len":2}', 1704861056); INSERT INTO public.action VALUES (2529, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},{"Sha1":"2364649e3ae48916acf9b3affbdc0cc1f63ab1dd","Message":"update baocao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:00+07:00"}],"HeadCommit":{"Sha1":"6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Message":"merge\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T08:33:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/11f6b26840584031c51dc4aaaaf912919fb5f87b...6288fef2f7b3c22aa70ba1038d18cbb1a7940c63","Len":2}', 1704861056); INSERT INTO public.action VALUES (2530, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"}],"HeadCommit":{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/70f24e6d6cf607b25226c6469303429543dc99e2...a537b38790dca067cd5d107807932adb39f23a99","Len":1}', 1704868481); INSERT INTO public.action VALUES (2531, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"}],"HeadCommit":{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/70f24e6d6cf607b25226c6469303429543dc99e2...a537b38790dca067cd5d107807932adb39f23a99","Len":1}', 1704868481); INSERT INTO public.action VALUES (2532, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"}],"HeadCommit":{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/70f24e6d6cf607b25226c6469303429543dc99e2...a537b38790dca067cd5d107807932adb39f23a99","Len":1}', 1704868481); INSERT INTO public.action VALUES (2533, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"}],"HeadCommit":{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/70f24e6d6cf607b25226c6469303429543dc99e2...a537b38790dca067cd5d107807932adb39f23a99","Len":1}', 1704868481); INSERT INTO public.action VALUES (2575, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/149/merge', false, '', 1704870655); INSERT INTO public.action VALUES (2576, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/150/head', false, '', 1704870655); INSERT INTO public.action VALUES (2577, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/150/head', false, '', 1704870655); INSERT INTO public.action VALUES (2578, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/150/head', false, '', 1704870655); INSERT INTO public.action VALUES (2534, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"}],"HeadCommit":{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/70f24e6d6cf607b25226c6469303429543dc99e2...a537b38790dca067cd5d107807932adb39f23a99","Len":1}', 1704868481); INSERT INTO public.action VALUES (2535, 11, 7, 11, 21, 0, false, '', false, '73|thinh', 1704868563); INSERT INTO public.action VALUES (2536, 14, 7, 11, 21, 0, false, '', false, '73|thinh', 1704868563); INSERT INTO public.action VALUES (2537, 16, 7, 11, 21, 0, false, '', false, '73|thinh', 1704868563); INSERT INTO public.action VALUES (2538, 1, 7, 11, 21, 0, false, '', false, '73|thinh', 1704868563); INSERT INTO public.action VALUES (2539, 5, 7, 11, 21, 0, false, '', false, '73|thinh', 1704868563); INSERT INTO public.action VALUES (2540, 11, 11, 11, 21, 0, false, '', false, '73|thinh', 1704868579); INSERT INTO public.action VALUES (2541, 14, 11, 11, 21, 0, false, '', false, '73|thinh', 1704868579); INSERT INTO public.action VALUES (2542, 16, 11, 11, 21, 0, false, '', false, '73|thinh', 1704868579); INSERT INTO public.action VALUES (2543, 1, 11, 11, 21, 0, false, '', false, '73|thinh', 1704868579); INSERT INTO public.action VALUES (2544, 5, 11, 11, 21, 0, false, '', false, '73|thinh', 1704868579); INSERT INTO public.action VALUES (2545, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2450107fb2f67f6adad8cfe8683ded6dce63a0a2...221a94ac133d4b35ce6145276c4094662a6fe4d1","Len":3}', 1704868580); INSERT INTO public.action VALUES (2546, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2450107fb2f67f6adad8cfe8683ded6dce63a0a2...221a94ac133d4b35ce6145276c4094662a6fe4d1","Len":3}', 1704868580); INSERT INTO public.action VALUES (2547, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2450107fb2f67f6adad8cfe8683ded6dce63a0a2...221a94ac133d4b35ce6145276c4094662a6fe4d1","Len":3}', 1704868580); INSERT INTO public.action VALUES (2579, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/150/merge', false, '', 1704870655); INSERT INTO public.action VALUES (2580, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/150/merge', false, '', 1704870655); INSERT INTO public.action VALUES (2581, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/150/merge', false, '', 1704870655); INSERT INTO public.action VALUES (3146, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/123/head', false, '', 1705134970); INSERT INTO public.action VALUES (3147, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/123/head', false, '', 1705134970); INSERT INTO public.action VALUES (3148, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/123/head', false, '', 1705134970); INSERT INTO public.action VALUES (3149, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/123/merge', false, '', 1705134971); INSERT INTO public.action VALUES (3150, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/123/merge', false, '', 1705134971); INSERT INTO public.action VALUES (2548, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2450107fb2f67f6adad8cfe8683ded6dce63a0a2...221a94ac133d4b35ce6145276c4094662a6fe4d1","Len":3}', 1704868580); INSERT INTO public.action VALUES (2549, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},{"Sha1":"a537b38790dca067cd5d107807932adb39f23a99","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T13:34:31+07:00"},{"Sha1":"70f24e6d6cf607b25226c6469303429543dc99e2","Message":"add data + endpoint\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T10:56:16+07:00"}],"HeadCommit":{"Sha1":"221a94ac133d4b35ce6145276c4094662a6fe4d1","Message":"Merge pull request ''thinh'' (#73) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/73\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T13:36:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2450107fb2f67f6adad8cfe8683ded6dce63a0a2...221a94ac133d4b35ce6145276c4094662a6fe4d1","Len":3}', 1704868580); INSERT INTO public.action VALUES (2550, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a537b38790dca067cd5d107807932adb39f23a99...adee15cab9cef8728d2dbce1099fb43c2a2efabf","Len":1}', 1704870136); INSERT INTO public.action VALUES (2551, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a537b38790dca067cd5d107807932adb39f23a99...adee15cab9cef8728d2dbce1099fb43c2a2efabf","Len":1}', 1704870136); INSERT INTO public.action VALUES (2552, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a537b38790dca067cd5d107807932adb39f23a99...adee15cab9cef8728d2dbce1099fb43c2a2efabf","Len":1}', 1704870136); INSERT INTO public.action VALUES (2553, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a537b38790dca067cd5d107807932adb39f23a99...adee15cab9cef8728d2dbce1099fb43c2a2efabf","Len":1}', 1704870136); INSERT INTO public.action VALUES (2554, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a537b38790dca067cd5d107807932adb39f23a99...adee15cab9cef8728d2dbce1099fb43c2a2efabf","Len":1}', 1704870136); INSERT INTO public.action VALUES (2555, 11, 7, 11, 21, 0, false, '', false, '74|update search menu', 1704870391); INSERT INTO public.action VALUES (2565, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/221a94ac133d4b35ce6145276c4094662a6fe4d1...07b329f3e772c8eefb2d36090487965eef74c9e4","Len":2}', 1704870510); INSERT INTO public.action VALUES (2566, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/221a94ac133d4b35ce6145276c4094662a6fe4d1...07b329f3e772c8eefb2d36090487965eef74c9e4","Len":2}', 1704870510); INSERT INTO public.action VALUES (2567, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/221a94ac133d4b35ce6145276c4094662a6fe4d1...07b329f3e772c8eefb2d36090487965eef74c9e4","Len":2}', 1704870510); INSERT INTO public.action VALUES (2568, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/221a94ac133d4b35ce6145276c4094662a6fe4d1...07b329f3e772c8eefb2d36090487965eef74c9e4","Len":2}', 1704870510); INSERT INTO public.action VALUES (2569, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},{"Sha1":"adee15cab9cef8728d2dbce1099fb43c2a2efabf","Message":"update search menu\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T14:02:08+07:00"}],"HeadCommit":{"Sha1":"07b329f3e772c8eefb2d36090487965eef74c9e4","Message":"Merge pull request ''update search menu'' (#74) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/74\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T14:08:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/221a94ac133d4b35ce6145276c4094662a6fe4d1...07b329f3e772c8eefb2d36090487965eef74c9e4","Len":2}', 1704870510); INSERT INTO public.action VALUES (2582, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876276); INSERT INTO public.action VALUES (3151, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/123/merge', false, '', 1705134971); INSERT INTO public.action VALUES (2583, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876276); INSERT INTO public.action VALUES (2584, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876276); INSERT INTO public.action VALUES (2585, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876276); INSERT INTO public.action VALUES (2586, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876276); INSERT INTO public.action VALUES (2587, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876276); INSERT INTO public.action VALUES (2588, 15, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876311); INSERT INTO public.action VALUES (2589, 12, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876311); INSERT INTO public.action VALUES (2590, 2, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876311); INSERT INTO public.action VALUES (2591, 1, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876311); INSERT INTO public.action VALUES (3152, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/124/head', false, '', 1705134971); INSERT INTO public.action VALUES (3153, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/124/head', false, '', 1705134971); INSERT INTO public.action VALUES (3154, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/124/head', false, '', 1705134971); INSERT INTO public.action VALUES (2592, 5, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876311); INSERT INTO public.action VALUES (2593, 9, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"}],"HeadCommit":{"Sha1":"55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Message":"update 1 chút\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-10T15:44:19+07:00"},"CompareURL":"khieu-nai/admin/compare/9bb151d8d320322dc1ac1f34d79739b6448af864...55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f","Len":1}', 1704876311); INSERT INTO public.action VALUES (2594, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/adee15cab9cef8728d2dbce1099fb43c2a2efabf...e3e580b4e1bedadc760640fc3572e51a2a805b27","Len":1}', 1704878169); INSERT INTO public.action VALUES (2595, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/adee15cab9cef8728d2dbce1099fb43c2a2efabf...e3e580b4e1bedadc760640fc3572e51a2a805b27","Len":1}', 1704878169); INSERT INTO public.action VALUES (2596, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/adee15cab9cef8728d2dbce1099fb43c2a2efabf...e3e580b4e1bedadc760640fc3572e51a2a805b27","Len":1}', 1704878169); INSERT INTO public.action VALUES (2597, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/adee15cab9cef8728d2dbce1099fb43c2a2efabf...e3e580b4e1bedadc760640fc3572e51a2a805b27","Len":1}', 1704878169); INSERT INTO public.action VALUES (2598, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/adee15cab9cef8728d2dbce1099fb43c2a2efabf...e3e580b4e1bedadc760640fc3572e51a2a805b27","Len":1}', 1704878169); INSERT INTO public.action VALUES (2599, 11, 7, 11, 21, 0, false, '', false, '75|add bao cao', 1704878198); INSERT INTO public.action VALUES (2600, 14, 7, 11, 21, 0, false, '', false, '75|add bao cao', 1704878198); INSERT INTO public.action VALUES (2601, 16, 7, 11, 21, 0, false, '', false, '75|add bao cao', 1704878198); INSERT INTO public.action VALUES (2602, 1, 7, 11, 21, 0, false, '', false, '75|add bao cao', 1704878198); INSERT INTO public.action VALUES (2603, 5, 7, 11, 21, 0, false, '', false, '75|add bao cao', 1704878198); INSERT INTO public.action VALUES (2604, 11, 11, 11, 21, 0, false, '', false, '75|add bao cao', 1704878217); INSERT INTO public.action VALUES (2605, 14, 11, 11, 21, 0, false, '', false, '75|add bao cao', 1704878217); INSERT INTO public.action VALUES (2606, 16, 11, 11, 21, 0, false, '', false, '75|add bao cao', 1704878217); INSERT INTO public.action VALUES (2607, 1, 11, 11, 21, 0, false, '', false, '75|add bao cao', 1704878217); INSERT INTO public.action VALUES (2608, 5, 11, 11, 21, 0, false, '', false, '75|add bao cao', 1704878217); INSERT INTO public.action VALUES (2638, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"}],"HeadCommit":{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/6288fef2f7b3c22aa70ba1038d18cbb1a7940c63...f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Len":1}', 1704890457); INSERT INTO public.action VALUES (2609, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07b329f3e772c8eefb2d36090487965eef74c9e4...8cb811be2927c486df5dbb09a8aa0a63535709d3","Len":2}', 1704878218); INSERT INTO public.action VALUES (2610, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07b329f3e772c8eefb2d36090487965eef74c9e4...8cb811be2927c486df5dbb09a8aa0a63535709d3","Len":2}', 1704878218); INSERT INTO public.action VALUES (2611, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07b329f3e772c8eefb2d36090487965eef74c9e4...8cb811be2927c486df5dbb09a8aa0a63535709d3","Len":2}', 1704878218); INSERT INTO public.action VALUES (2612, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07b329f3e772c8eefb2d36090487965eef74c9e4...8cb811be2927c486df5dbb09a8aa0a63535709d3","Len":2}', 1704878218); INSERT INTO public.action VALUES (2613, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},{"Sha1":"e3e580b4e1bedadc760640fc3572e51a2a805b27","Message":"add bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:15:59+07:00"}],"HeadCommit":{"Sha1":"8cb811be2927c486df5dbb09a8aa0a63535709d3","Message":"Merge pull request ''add bao cao'' (#75) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/75\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:16:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07b329f3e772c8eefb2d36090487965eef74c9e4...8cb811be2927c486df5dbb09a8aa0a63535709d3","Len":2}', 1704878218); INSERT INTO public.action VALUES (2614, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3e580b4e1bedadc760640fc3572e51a2a805b27...b72b77ce6d6441f022c666171f558d3b6ff8994f","Len":1}', 1704878615); INSERT INTO public.action VALUES (3155, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/124/merge', false, '', 1705134971); INSERT INTO public.action VALUES (3156, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/124/merge', false, '', 1705134971); INSERT INTO public.action VALUES (2615, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3e580b4e1bedadc760640fc3572e51a2a805b27...b72b77ce6d6441f022c666171f558d3b6ff8994f","Len":1}', 1704878615); INSERT INTO public.action VALUES (2616, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3e580b4e1bedadc760640fc3572e51a2a805b27...b72b77ce6d6441f022c666171f558d3b6ff8994f","Len":1}', 1704878615); INSERT INTO public.action VALUES (2617, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3e580b4e1bedadc760640fc3572e51a2a805b27...b72b77ce6d6441f022c666171f558d3b6ff8994f","Len":1}', 1704878615); INSERT INTO public.action VALUES (2618, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3e580b4e1bedadc760640fc3572e51a2a805b27...b72b77ce6d6441f022c666171f558d3b6ff8994f","Len":1}', 1704878615); INSERT INTO public.action VALUES (2619, 11, 7, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878895); INSERT INTO public.action VALUES (2620, 14, 7, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878895); INSERT INTO public.action VALUES (2621, 16, 7, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878895); INSERT INTO public.action VALUES (2622, 1, 7, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878895); INSERT INTO public.action VALUES (2623, 5, 7, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878895); INSERT INTO public.action VALUES (2624, 11, 11, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878912); INSERT INTO public.action VALUES (2625, 14, 11, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878912); INSERT INTO public.action VALUES (2626, 16, 11, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878912); INSERT INTO public.action VALUES (2627, 1, 11, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878912); INSERT INTO public.action VALUES (2628, 5, 11, 11, 21, 0, false, '', false, '76|fix info hoc vien', 1704878912); INSERT INTO public.action VALUES (2629, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8cb811be2927c486df5dbb09a8aa0a63535709d3...d8568ef2cb388ffa029778d557c778ce2efa3353","Len":2}', 1704878912); INSERT INTO public.action VALUES (2630, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8cb811be2927c486df5dbb09a8aa0a63535709d3...d8568ef2cb388ffa029778d557c778ce2efa3353","Len":2}', 1704878912); INSERT INTO public.action VALUES (3157, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/124/merge', false, '', 1705134971); INSERT INTO public.action VALUES (3158, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/125/head', false, '', 1705134971); INSERT INTO public.action VALUES (3159, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/125/head', false, '', 1705134971); INSERT INTO public.action VALUES (3160, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/125/head', false, '', 1705134971); INSERT INTO public.action VALUES (2631, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8cb811be2927c486df5dbb09a8aa0a63535709d3...d8568ef2cb388ffa029778d557c778ce2efa3353","Len":2}', 1704878912); INSERT INTO public.action VALUES (2632, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8cb811be2927c486df5dbb09a8aa0a63535709d3...d8568ef2cb388ffa029778d557c778ce2efa3353","Len":2}', 1704878912); INSERT INTO public.action VALUES (2633, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},{"Sha1":"b72b77ce6d6441f022c666171f558d3b6ff8994f","Message":"fix info hoc vien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-10T16:23:27+07:00"}],"HeadCommit":{"Sha1":"d8568ef2cb388ffa029778d557c778ce2efa3353","Message":"Merge pull request ''fix info hoc vien'' (#76) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/76\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-10T16:28:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8cb811be2927c486df5dbb09a8aa0a63535709d3...d8568ef2cb388ffa029778d557c778ce2efa3353","Len":2}', 1704878912); INSERT INTO public.action VALUES (2634, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"}],"HeadCommit":{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/6288fef2f7b3c22aa70ba1038d18cbb1a7940c63...f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Len":1}', 1704890457); INSERT INTO public.action VALUES (2635, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"}],"HeadCommit":{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/6288fef2f7b3c22aa70ba1038d18cbb1a7940c63...f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Len":1}', 1704890457); INSERT INTO public.action VALUES (2636, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"}],"HeadCommit":{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/6288fef2f7b3c22aa70ba1038d18cbb1a7940c63...f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Len":1}', 1704890457); INSERT INTO public.action VALUES (2637, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"}],"HeadCommit":{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/6288fef2f7b3c22aa70ba1038d18cbb1a7940c63...f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Len":1}', 1704890457); INSERT INTO public.action VALUES (3161, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/125/merge', false, '', 1705134971); INSERT INTO public.action VALUES (3162, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/125/merge', false, '', 1705134971); INSERT INTO public.action VALUES (3163, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/125/merge', false, '', 1705134971); INSERT INTO public.action VALUES (3164, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/126/head', false, '', 1705134971); INSERT INTO public.action VALUES (3165, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/126/head', false, '', 1705134971); INSERT INTO public.action VALUES (2639, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"}],"HeadCommit":{"Sha1":"f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Message":"bao cáo nhu cầu học nghể\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-10T13:54:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/6288fef2f7b3c22aa70ba1038d18cbb1a7940c63...f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b","Len":1}', 1704890457); INSERT INTO public.action VALUES (2640, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/148/head', false, '', 1704900055); INSERT INTO public.action VALUES (2641, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/148/head', false, '', 1704900055); INSERT INTO public.action VALUES (2642, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/148/head', false, '', 1704900055); INSERT INTO public.action VALUES (2643, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/148/merge', false, '', 1704900055); INSERT INTO public.action VALUES (2644, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/148/merge', false, '', 1704900055); INSERT INTO public.action VALUES (2645, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/148/merge', false, '', 1704900055); INSERT INTO public.action VALUES (2646, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/144/head', false, '', 1704929456); INSERT INTO public.action VALUES (2647, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/144/head', false, '', 1704929456); INSERT INTO public.action VALUES (2648, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/144/head', false, '', 1704929456); INSERT INTO public.action VALUES (2649, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/144/merge', false, '', 1704929456); INSERT INTO public.action VALUES (2650, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/144/merge', false, '', 1704929456); INSERT INTO public.action VALUES (2651, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/144/merge', false, '', 1704929456); INSERT INTO public.action VALUES (2652, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/145/head', false, '', 1704929456); INSERT INTO public.action VALUES (2653, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/145/head', false, '', 1704929456); INSERT INTO public.action VALUES (2654, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/145/head', false, '', 1704929456); INSERT INTO public.action VALUES (2655, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/145/merge', false, '', 1704929456); INSERT INTO public.action VALUES (2656, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/145/merge', false, '', 1704929456); INSERT INTO public.action VALUES (2657, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/145/merge', false, '', 1704929456); INSERT INTO public.action VALUES (2658, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/146/head', false, '', 1704929456); INSERT INTO public.action VALUES (2659, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/146/head', false, '', 1704929456); INSERT INTO public.action VALUES (2660, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/146/head', false, '', 1704929456); INSERT INTO public.action VALUES (2661, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/146/merge', false, '', 1704929456); INSERT INTO public.action VALUES (2662, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/146/merge', false, '', 1704929456); INSERT INTO public.action VALUES (2663, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/146/merge', false, '', 1704929456); INSERT INTO public.action VALUES (2664, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/147/head', false, '', 1704929456); INSERT INTO public.action VALUES (2665, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/147/head', false, '', 1704929456); INSERT INTO public.action VALUES (2666, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/147/head', false, '', 1704929456); INSERT INTO public.action VALUES (2667, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/147/merge', false, '', 1704929456); INSERT INTO public.action VALUES (2668, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/147/merge', false, '', 1704929456); INSERT INTO public.action VALUES (2669, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/147/merge', false, '', 1704929456); INSERT INTO public.action VALUES (2670, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b72b77ce6d6441f022c666171f558d3b6ff8994f...b864b6c508a7e992ec724257ba8068066dea62c2","Len":1}', 1704937711); INSERT INTO public.action VALUES (2671, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b72b77ce6d6441f022c666171f558d3b6ff8994f...b864b6c508a7e992ec724257ba8068066dea62c2","Len":1}', 1704937711); INSERT INTO public.action VALUES (2672, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b72b77ce6d6441f022c666171f558d3b6ff8994f...b864b6c508a7e992ec724257ba8068066dea62c2","Len":1}', 1704937711); INSERT INTO public.action VALUES (3166, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/126/head', false, '', 1705134971); INSERT INTO public.action VALUES (3167, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/126/merge', false, '', 1705134971); INSERT INTO public.action VALUES (3168, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/126/merge', false, '', 1705134971); INSERT INTO public.action VALUES (3169, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/126/merge', false, '', 1705134971); INSERT INTO public.action VALUES (2673, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b72b77ce6d6441f022c666171f558d3b6ff8994f...b864b6c508a7e992ec724257ba8068066dea62c2","Len":1}', 1704937711); INSERT INTO public.action VALUES (2674, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b72b77ce6d6441f022c666171f558d3b6ff8994f...b864b6c508a7e992ec724257ba8068066dea62c2","Len":1}', 1704937711); INSERT INTO public.action VALUES (2675, 11, 7, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937756); INSERT INTO public.action VALUES (2676, 14, 7, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937756); INSERT INTO public.action VALUES (2677, 16, 7, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937756); INSERT INTO public.action VALUES (2678, 5, 7, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937756); INSERT INTO public.action VALUES (2679, 1, 7, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937756); INSERT INTO public.action VALUES (2680, 11, 11, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937772); INSERT INTO public.action VALUES (2681, 14, 11, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937772); INSERT INTO public.action VALUES (2682, 16, 11, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937772); INSERT INTO public.action VALUES (2683, 5, 11, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937772); INSERT INTO public.action VALUES (2684, 1, 11, 11, 21, 0, false, '', false, '77|change api kq tuyen sinh', 1704937772); INSERT INTO public.action VALUES (2685, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d8568ef2cb388ffa029778d557c778ce2efa3353...5b398e4f4feead79e0fcaa363254896d4c7749c3","Len":2}', 1704937772); INSERT INTO public.action VALUES (2686, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d8568ef2cb388ffa029778d557c778ce2efa3353...5b398e4f4feead79e0fcaa363254896d4c7749c3","Len":2}', 1704937772); INSERT INTO public.action VALUES (2687, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d8568ef2cb388ffa029778d557c778ce2efa3353...5b398e4f4feead79e0fcaa363254896d4c7749c3","Len":2}', 1704937772); INSERT INTO public.action VALUES (2854, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"}],"HeadCommit":{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"},"CompareURL":"khieu-nai/backend/compare/c58b8c98ab8d407529a026238fe1273b7234d1e2...2ecfca76cd985441844a6db900b6dc707f74b60a","Len":1}', 1704966394); INSERT INTO public.action VALUES (2688, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d8568ef2cb388ffa029778d557c778ce2efa3353...5b398e4f4feead79e0fcaa363254896d4c7749c3","Len":2}', 1704937772); INSERT INTO public.action VALUES (2689, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},{"Sha1":"b864b6c508a7e992ec724257ba8068066dea62c2","Message":"change api kq tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T08:45:36+07:00"}],"HeadCommit":{"Sha1":"5b398e4f4feead79e0fcaa363254896d4c7749c3","Message":"Merge pull request ''change api kq tuyen sinh'' (#77) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/77\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T08:49:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d8568ef2cb388ffa029778d557c778ce2efa3353...5b398e4f4feead79e0fcaa363254896d4c7749c3","Len":2}', 1704937772); INSERT INTO public.action VALUES (2690, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"}],"HeadCommit":{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"},"CompareURL":"khieu-nai/backend/compare/e28da4e943c7dcb8c90c13eed30ec05e405f6e3c...aebae52bf63dd829d4e46f007fb901420f9e70b5","Len":1}', 1704939224); INSERT INTO public.action VALUES (2691, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"}],"HeadCommit":{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"},"CompareURL":"khieu-nai/backend/compare/e28da4e943c7dcb8c90c13eed30ec05e405f6e3c...aebae52bf63dd829d4e46f007fb901420f9e70b5","Len":1}', 1704939224); INSERT INTO public.action VALUES (2692, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"}],"HeadCommit":{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"},"CompareURL":"khieu-nai/backend/compare/e28da4e943c7dcb8c90c13eed30ec05e405f6e3c...aebae52bf63dd829d4e46f007fb901420f9e70b5","Len":1}', 1704939224); INSERT INTO public.action VALUES (2693, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"}],"HeadCommit":{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"},"CompareURL":"khieu-nai/backend/compare/e28da4e943c7dcb8c90c13eed30ec05e405f6e3c...aebae52bf63dd829d4e46f007fb901420f9e70b5","Len":1}', 1704939224); INSERT INTO public.action VALUES (2694, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"}],"HeadCommit":{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"},"CompareURL":"khieu-nai/backend/compare/e28da4e943c7dcb8c90c13eed30ec05e405f6e3c...aebae52bf63dd829d4e46f007fb901420f9e70b5","Len":1}', 1704939224); INSERT INTO public.action VALUES (2695, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"}],"HeadCommit":{"Sha1":"aebae52bf63dd829d4e46f007fb901420f9e70b5","Message":"add delete\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T09:12:38+07:00"},"CompareURL":"khieu-nai/backend/compare/e28da4e943c7dcb8c90c13eed30ec05e405f6e3c...aebae52bf63dd829d4e46f007fb901420f9e70b5","Len":1}', 1704939224); INSERT INTO public.action VALUES (3170, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/112/head', false, '', 1705164371); INSERT INTO public.action VALUES (3171, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/112/head', false, '', 1705164371); INSERT INTO public.action VALUES (3172, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/112/head', false, '', 1705164371); INSERT INTO public.action VALUES (2696, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b864b6c508a7e992ec724257ba8068066dea62c2...d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Len":1}', 1704944048); INSERT INTO public.action VALUES (2697, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b864b6c508a7e992ec724257ba8068066dea62c2...d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Len":1}', 1704944048); INSERT INTO public.action VALUES (2698, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b864b6c508a7e992ec724257ba8068066dea62c2...d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Len":1}', 1704944048); INSERT INTO public.action VALUES (2699, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b864b6c508a7e992ec724257ba8068066dea62c2...d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Len":1}', 1704944048); INSERT INTO public.action VALUES (2700, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b864b6c508a7e992ec724257ba8068066dea62c2...d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Len":1}', 1704944048); INSERT INTO public.action VALUES (2701, 11, 7, 11, 21, 0, false, '', false, '78|style header', 1704944129); INSERT INTO public.action VALUES (2702, 14, 7, 11, 21, 0, false, '', false, '78|style header', 1704944129); INSERT INTO public.action VALUES (2703, 16, 7, 11, 21, 0, false, '', false, '78|style header', 1704944129); INSERT INTO public.action VALUES (2704, 5, 7, 11, 21, 0, false, '', false, '78|style header', 1704944129); INSERT INTO public.action VALUES (2705, 1, 7, 11, 21, 0, false, '', false, '78|style header', 1704944129); INSERT INTO public.action VALUES (2706, 11, 11, 11, 21, 0, false, '', false, '78|style header', 1704944215); INSERT INTO public.action VALUES (2707, 14, 11, 11, 21, 0, false, '', false, '78|style header', 1704944215); INSERT INTO public.action VALUES (2708, 16, 11, 11, 21, 0, false, '', false, '78|style header', 1704944215); INSERT INTO public.action VALUES (2709, 5, 11, 11, 21, 0, false, '', false, '78|style header', 1704944215); INSERT INTO public.action VALUES (2710, 1, 11, 11, 21, 0, false, '', false, '78|style header', 1704944215); INSERT INTO public.action VALUES (2711, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b398e4f4feead79e0fcaa363254896d4c7749c3...b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Len":2}', 1704944217); INSERT INTO public.action VALUES (2716, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d182a2a0bf08c8ccaca3d9a68a87540beb06e085...d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Len":1}', 1704945451); INSERT INTO public.action VALUES (3173, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/112/merge', false, '', 1705164371); INSERT INTO public.action VALUES (2712, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b398e4f4feead79e0fcaa363254896d4c7749c3...b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Len":2}', 1704944217); INSERT INTO public.action VALUES (2713, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b398e4f4feead79e0fcaa363254896d4c7749c3...b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Len":2}', 1704944217); INSERT INTO public.action VALUES (2714, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b398e4f4feead79e0fcaa363254896d4c7749c3...b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Len":2}', 1704944217); INSERT INTO public.action VALUES (2715, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},{"Sha1":"d182a2a0bf08c8ccaca3d9a68a87540beb06e085","Message":"style header\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:33:55+07:00"}],"HeadCommit":{"Sha1":"b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Message":"Merge pull request ''style header'' (#78) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/78\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:36:50+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b398e4f4feead79e0fcaa363254896d4c7749c3...b39634acf119d7a5698c952dfd10dc0e1ee5bb3d","Len":2}', 1704944217); INSERT INTO public.action VALUES (2989, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bf230208b1efd148c1dec00f3c4eb158311100bd...8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Len":1}', 1705045372); INSERT INTO public.action VALUES (2990, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bf230208b1efd148c1dec00f3c4eb158311100bd...8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Len":1}', 1705045372); INSERT INTO public.action VALUES (3174, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/112/merge', false, '', 1705164371); INSERT INTO public.action VALUES (3175, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/112/merge', false, '', 1705164371); INSERT INTO public.action VALUES (3176, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/113/head', false, '', 1705164371); INSERT INTO public.action VALUES (3177, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/113/head', false, '', 1705164371); INSERT INTO public.action VALUES (3178, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/113/head', false, '', 1705164371); INSERT INTO public.action VALUES (2717, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d182a2a0bf08c8ccaca3d9a68a87540beb06e085...d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Len":1}', 1704945451); INSERT INTO public.action VALUES (2718, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d182a2a0bf08c8ccaca3d9a68a87540beb06e085...d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Len":1}', 1704945451); INSERT INTO public.action VALUES (2719, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d182a2a0bf08c8ccaca3d9a68a87540beb06e085...d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Len":1}', 1704945451); INSERT INTO public.action VALUES (2720, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d182a2a0bf08c8ccaca3d9a68a87540beb06e085...d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Len":1}', 1704945451); INSERT INTO public.action VALUES (2721, 11, 7, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945580); INSERT INTO public.action VALUES (2722, 14, 7, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945580); INSERT INTO public.action VALUES (2723, 16, 7, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945580); INSERT INTO public.action VALUES (2724, 5, 7, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945580); INSERT INTO public.action VALUES (2725, 1, 7, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945580); INSERT INTO public.action VALUES (2726, 11, 11, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945595); INSERT INTO public.action VALUES (2727, 14, 11, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945595); INSERT INTO public.action VALUES (2728, 16, 11, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945595); INSERT INTO public.action VALUES (2729, 5, 11, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945595); INSERT INTO public.action VALUES (2730, 1, 11, 11, 21, 0, false, '', false, '79|add ty le tuyen sinh tot nghiep', 1704945595); INSERT INTO public.action VALUES (2731, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b39634acf119d7a5698c952dfd10dc0e1ee5bb3d...414c6952e2434c3fc7f37c73c1309937925396c6","Len":2}', 1704945596); INSERT INTO public.action VALUES (2732, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b39634acf119d7a5698c952dfd10dc0e1ee5bb3d...414c6952e2434c3fc7f37c73c1309937925396c6","Len":2}', 1704945596); INSERT INTO public.action VALUES (3179, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/113/merge', false, '', 1705164371); INSERT INTO public.action VALUES (2733, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b39634acf119d7a5698c952dfd10dc0e1ee5bb3d...414c6952e2434c3fc7f37c73c1309937925396c6","Len":2}', 1704945596); INSERT INTO public.action VALUES (2734, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b39634acf119d7a5698c952dfd10dc0e1ee5bb3d...414c6952e2434c3fc7f37c73c1309937925396c6","Len":2}', 1704945596); INSERT INTO public.action VALUES (2735, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},{"Sha1":"d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d","Message":"add ty le tuyen sinh tot nghiep\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T10:57:22+07:00"}],"HeadCommit":{"Sha1":"414c6952e2434c3fc7f37c73c1309937925396c6","Message":"Merge pull request ''add ty le tuyen sinh tot nghiep'' (#79) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/79\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T10:59:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b39634acf119d7a5698c952dfd10dc0e1ee5bb3d...414c6952e2434c3fc7f37c73c1309937925396c6","Len":2}', 1704945596); INSERT INTO public.action VALUES (2736, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d...39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Len":1}', 1704947450); INSERT INTO public.action VALUES (2737, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d...39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Len":1}', 1704947450); INSERT INTO public.action VALUES (2738, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d...39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Len":1}', 1704947450); INSERT INTO public.action VALUES (2739, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d...39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Len":1}', 1704947450); INSERT INTO public.action VALUES (3180, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/113/merge', false, '', 1705164371); INSERT INTO public.action VALUES (2740, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d...39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Len":1}', 1704947450); INSERT INTO public.action VALUES (2741, 11, 7, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947471); INSERT INTO public.action VALUES (2742, 14, 7, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947471); INSERT INTO public.action VALUES (2743, 16, 7, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947471); INSERT INTO public.action VALUES (2744, 5, 7, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947471); INSERT INTO public.action VALUES (2745, 1, 7, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947471); INSERT INTO public.action VALUES (2746, 11, 11, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947505); INSERT INTO public.action VALUES (2747, 14, 11, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947505); INSERT INTO public.action VALUES (2748, 16, 11, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947505); INSERT INTO public.action VALUES (2749, 5, 11, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947505); INSERT INTO public.action VALUES (2750, 1, 11, 11, 21, 0, false, '', false, '80|fix bao cao', 1704947505); INSERT INTO public.action VALUES (2751, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/414c6952e2434c3fc7f37c73c1309937925396c6...29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Len":2}', 1704947505); INSERT INTO public.action VALUES (2752, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/414c6952e2434c3fc7f37c73c1309937925396c6...29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Len":2}', 1704947505); INSERT INTO public.action VALUES (2753, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/414c6952e2434c3fc7f37c73c1309937925396c6...29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Len":2}', 1704947505); INSERT INTO public.action VALUES (2754, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/414c6952e2434c3fc7f37c73c1309937925396c6...29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Len":2}', 1704947505); INSERT INTO public.action VALUES (3181, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/113/merge', false, '', 1705164371); INSERT INTO public.action VALUES (3182, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/114/head', false, '', 1705164371); INSERT INTO public.action VALUES (3183, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/114/head', false, '', 1705164371); INSERT INTO public.action VALUES (3184, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/114/head', false, '', 1705164371); INSERT INTO public.action VALUES (2755, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},{"Sha1":"39cb06392b78a4b3529ef0a69ecdc485adfd1a06","Message":"fix bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T11:30:40+07:00"}],"HeadCommit":{"Sha1":"29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Message":"Merge pull request ''fix bao cao'' (#80) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/80\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T11:31:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/414c6952e2434c3fc7f37c73c1309937925396c6...29e0c4ea27c7052d9017a2b0896367a0bab5d9db","Len":2}', 1704947505); INSERT INTO public.action VALUES (2756, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},{"Sha1":"c17f80c4ce844c2529e92417536f88e4497a2c2b","Message":"SendEmailAttachment\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:52:48+07:00"},{"Sha1":"8b236a248a5656622cc6bf07d70cce150c8e79cb","Message":"báo cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T09:24:42+07:00"}],"HeadCommit":{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b...e41c5e20826526291d2510b99b0d4fa8bae55484","Len":3}', 1704949257); INSERT INTO public.action VALUES (2757, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},{"Sha1":"c17f80c4ce844c2529e92417536f88e4497a2c2b","Message":"SendEmailAttachment\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:52:48+07:00"},{"Sha1":"8b236a248a5656622cc6bf07d70cce150c8e79cb","Message":"báo cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T09:24:42+07:00"}],"HeadCommit":{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b...e41c5e20826526291d2510b99b0d4fa8bae55484","Len":3}', 1704949257); INSERT INTO public.action VALUES (2758, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},{"Sha1":"c17f80c4ce844c2529e92417536f88e4497a2c2b","Message":"SendEmailAttachment\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:52:48+07:00"},{"Sha1":"8b236a248a5656622cc6bf07d70cce150c8e79cb","Message":"báo cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T09:24:42+07:00"}],"HeadCommit":{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b...e41c5e20826526291d2510b99b0d4fa8bae55484","Len":3}', 1704949257); INSERT INTO public.action VALUES (2759, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},{"Sha1":"c17f80c4ce844c2529e92417536f88e4497a2c2b","Message":"SendEmailAttachment\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:52:48+07:00"},{"Sha1":"8b236a248a5656622cc6bf07d70cce150c8e79cb","Message":"báo cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T09:24:42+07:00"}],"HeadCommit":{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b...e41c5e20826526291d2510b99b0d4fa8bae55484","Len":3}', 1704949257); INSERT INTO public.action VALUES (2855, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"}],"HeadCommit":{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"},"CompareURL":"khieu-nai/backend/compare/c58b8c98ab8d407529a026238fe1273b7234d1e2...2ecfca76cd985441844a6db900b6dc707f74b60a","Len":1}', 1704966394); INSERT INTO public.action VALUES (2760, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},{"Sha1":"c17f80c4ce844c2529e92417536f88e4497a2c2b","Message":"SendEmailAttachment\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:52:48+07:00"},{"Sha1":"8b236a248a5656622cc6bf07d70cce150c8e79cb","Message":"báo cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T09:24:42+07:00"}],"HeadCommit":{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b...e41c5e20826526291d2510b99b0d4fa8bae55484","Len":3}', 1704949257); INSERT INTO public.action VALUES (2761, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},{"Sha1":"c17f80c4ce844c2529e92417536f88e4497a2c2b","Message":"SendEmailAttachment\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:52:48+07:00"},{"Sha1":"8b236a248a5656622cc6bf07d70cce150c8e79cb","Message":"báo cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T09:24:42+07:00"}],"HeadCommit":{"Sha1":"e41c5e20826526291d2510b99b0d4fa8bae55484","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-11T11:56:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/f3ab2a5afc46e191dd30f6fed2f7280a32f5e03b...e41c5e20826526291d2510b99b0d4fa8bae55484","Len":3}', 1704949257); INSERT INTO public.action VALUES (2762, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"}],"HeadCommit":{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"},"CompareURL":"khieu-nai/backend/compare/aebae52bf63dd829d4e46f007fb901420f9e70b5...c58b8c98ab8d407529a026238fe1273b7234d1e2","Len":1}', 1704953167); INSERT INTO public.action VALUES (2763, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"}],"HeadCommit":{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"},"CompareURL":"khieu-nai/backend/compare/aebae52bf63dd829d4e46f007fb901420f9e70b5...c58b8c98ab8d407529a026238fe1273b7234d1e2","Len":1}', 1704953167); INSERT INTO public.action VALUES (2764, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"}],"HeadCommit":{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"},"CompareURL":"khieu-nai/backend/compare/aebae52bf63dd829d4e46f007fb901420f9e70b5...c58b8c98ab8d407529a026238fe1273b7234d1e2","Len":1}', 1704953167); INSERT INTO public.action VALUES (2765, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"}],"HeadCommit":{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"},"CompareURL":"khieu-nai/backend/compare/aebae52bf63dd829d4e46f007fb901420f9e70b5...c58b8c98ab8d407529a026238fe1273b7234d1e2","Len":1}', 1704953167); INSERT INTO public.action VALUES (2766, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"}],"HeadCommit":{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"},"CompareURL":"khieu-nai/backend/compare/aebae52bf63dd829d4e46f007fb901420f9e70b5...c58b8c98ab8d407529a026238fe1273b7234d1e2","Len":1}', 1704953167); INSERT INTO public.action VALUES (2767, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"}],"HeadCommit":{"Sha1":"c58b8c98ab8d407529a026238fe1273b7234d1e2","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T13:05:57+07:00"},"CompareURL":"khieu-nai/backend/compare/aebae52bf63dd829d4e46f007fb901420f9e70b5...c58b8c98ab8d407529a026238fe1273b7234d1e2","Len":1}', 1704953167); INSERT INTO public.action VALUES (2877, 1, 7, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990705); INSERT INTO public.action VALUES (2878, 11, 11, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990831); INSERT INTO public.action VALUES (2879, 14, 11, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990831); INSERT INTO public.action VALUES (2768, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/39cb06392b78a4b3529ef0a69ecdc485adfd1a06...f67d1811ee946b4368988f806d6c91b5161f2aca","Len":1}', 1704956438); INSERT INTO public.action VALUES (2769, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/39cb06392b78a4b3529ef0a69ecdc485adfd1a06...f67d1811ee946b4368988f806d6c91b5161f2aca","Len":1}', 1704956438); INSERT INTO public.action VALUES (2770, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/39cb06392b78a4b3529ef0a69ecdc485adfd1a06...f67d1811ee946b4368988f806d6c91b5161f2aca","Len":1}', 1704956438); INSERT INTO public.action VALUES (2771, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/39cb06392b78a4b3529ef0a69ecdc485adfd1a06...f67d1811ee946b4368988f806d6c91b5161f2aca","Len":1}', 1704956438); INSERT INTO public.action VALUES (2772, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/39cb06392b78a4b3529ef0a69ecdc485adfd1a06...f67d1811ee946b4368988f806d6c91b5161f2aca","Len":1}', 1704956438); INSERT INTO public.action VALUES (2773, 11, 7, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956678); INSERT INTO public.action VALUES (2774, 14, 7, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956678); INSERT INTO public.action VALUES (2775, 16, 7, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956678); INSERT INTO public.action VALUES (2776, 5, 7, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956678); INSERT INTO public.action VALUES (2777, 1, 7, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956678); INSERT INTO public.action VALUES (2778, 11, 11, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956851); INSERT INTO public.action VALUES (2779, 14, 11, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956851); INSERT INTO public.action VALUES (2780, 16, 11, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956851); INSERT INTO public.action VALUES (2781, 5, 11, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956851); INSERT INTO public.action VALUES (2782, 1, 11, 11, 21, 0, false, '', false, '81|fix loi bao cao', 1704956851); INSERT INTO public.action VALUES (2783, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/29e0c4ea27c7052d9017a2b0896367a0bab5d9db...e8b876ae81f072d85a259f7fe20b4629f98da421","Len":2}', 1704956851); INSERT INTO public.action VALUES (2790, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f67d1811ee946b4368988f806d6c91b5161f2aca...6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Len":1}', 1704957853); INSERT INTO public.action VALUES (2880, 16, 11, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990831); INSERT INTO public.action VALUES (2784, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/29e0c4ea27c7052d9017a2b0896367a0bab5d9db...e8b876ae81f072d85a259f7fe20b4629f98da421","Len":2}', 1704956851); INSERT INTO public.action VALUES (2785, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/29e0c4ea27c7052d9017a2b0896367a0bab5d9db...e8b876ae81f072d85a259f7fe20b4629f98da421","Len":2}', 1704956851); INSERT INTO public.action VALUES (2786, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/29e0c4ea27c7052d9017a2b0896367a0bab5d9db...e8b876ae81f072d85a259f7fe20b4629f98da421","Len":2}', 1704956851); INSERT INTO public.action VALUES (2787, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},{"Sha1":"f67d1811ee946b4368988f806d6c91b5161f2aca","Message":"fix loi bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:00:29+07:00"}],"HeadCommit":{"Sha1":"e8b876ae81f072d85a259f7fe20b4629f98da421","Message":"Merge pull request ''fix loi bao cao'' (#81) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/81\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:07:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/29e0c4ea27c7052d9017a2b0896367a0bab5d9db...e8b876ae81f072d85a259f7fe20b4629f98da421","Len":2}', 1704956851); INSERT INTO public.action VALUES (2788, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f67d1811ee946b4368988f806d6c91b5161f2aca...6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Len":1}', 1704957853); INSERT INTO public.action VALUES (2789, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f67d1811ee946b4368988f806d6c91b5161f2aca...6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Len":1}', 1704957853); INSERT INTO public.action VALUES (2881, 5, 11, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990831); INSERT INTO public.action VALUES (2882, 1, 11, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990831); INSERT INTO public.action VALUES (3185, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/115/head', false, '', 1705164371); INSERT INTO public.action VALUES (3186, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/115/head', false, '', 1705164371); INSERT INTO public.action VALUES (3187, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/115/head', false, '', 1705164371); INSERT INTO public.action VALUES (2791, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f67d1811ee946b4368988f806d6c91b5161f2aca...6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Len":1}', 1704957853); INSERT INTO public.action VALUES (2792, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f67d1811ee946b4368988f806d6c91b5161f2aca...6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Len":1}', 1704957853); INSERT INTO public.action VALUES (2793, 11, 7, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958013); INSERT INTO public.action VALUES (2794, 14, 7, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958013); INSERT INTO public.action VALUES (2795, 16, 7, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958013); INSERT INTO public.action VALUES (2796, 5, 7, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958013); INSERT INTO public.action VALUES (2797, 1, 7, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958013); INSERT INTO public.action VALUES (2798, 11, 11, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958041); INSERT INTO public.action VALUES (2799, 14, 11, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958041); INSERT INTO public.action VALUES (2800, 16, 11, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958042); INSERT INTO public.action VALUES (2801, 5, 11, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958042); INSERT INTO public.action VALUES (2802, 1, 11, 11, 21, 0, false, '', false, '82|fix hidden err bao cao', 1704958042); INSERT INTO public.action VALUES (2803, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8b876ae81f072d85a259f7fe20b4629f98da421...891890aa28aae52d5c4d12f2b351251d3b1be143","Len":2}', 1704958042); INSERT INTO public.action VALUES (2804, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8b876ae81f072d85a259f7fe20b4629f98da421...891890aa28aae52d5c4d12f2b351251d3b1be143","Len":2}', 1704958042); INSERT INTO public.action VALUES (2805, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8b876ae81f072d85a259f7fe20b4629f98da421...891890aa28aae52d5c4d12f2b351251d3b1be143","Len":2}', 1704958042); INSERT INTO public.action VALUES (2844, 15, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"}],"HeadCommit":{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Len":1}', 1704964458); INSERT INTO public.action VALUES (2806, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8b876ae81f072d85a259f7fe20b4629f98da421...891890aa28aae52d5c4d12f2b351251d3b1be143","Len":2}', 1704958042); INSERT INTO public.action VALUES (2807, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},{"Sha1":"6fe0578df227fb4bd84cba9bc4376c0048ba5af3","Message":"fix hidden err bao cao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T14:23:59+07:00"}],"HeadCommit":{"Sha1":"891890aa28aae52d5c4d12f2b351251d3b1be143","Message":"Merge pull request ''fix hidden err bao cao'' (#82) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/82\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T14:27:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e8b876ae81f072d85a259f7fe20b4629f98da421...891890aa28aae52d5c4d12f2b351251d3b1be143","Len":2}', 1704958042); INSERT INTO public.action VALUES (2808, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/138/head', false, '', 1704958855); INSERT INTO public.action VALUES (2809, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/138/head', false, '', 1704958855); INSERT INTO public.action VALUES (2810, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/138/head', false, '', 1704958855); INSERT INTO public.action VALUES (2811, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/138/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2812, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/138/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2813, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/138/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2814, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/139/head', false, '', 1704958855); INSERT INTO public.action VALUES (2815, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/139/head', false, '', 1704958855); INSERT INTO public.action VALUES (2816, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/139/head', false, '', 1704958855); INSERT INTO public.action VALUES (2817, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/139/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2818, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/139/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2819, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/139/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2820, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/140/head', false, '', 1704958855); INSERT INTO public.action VALUES (2821, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/140/head', false, '', 1704958855); INSERT INTO public.action VALUES (2822, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/140/head', false, '', 1704958855); INSERT INTO public.action VALUES (2823, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/140/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2824, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/140/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2825, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/140/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2826, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/141/head', false, '', 1704958855); INSERT INTO public.action VALUES (2827, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/141/head', false, '', 1704958855); INSERT INTO public.action VALUES (2828, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/141/head', false, '', 1704958855); INSERT INTO public.action VALUES (2829, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/141/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2830, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/141/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2831, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/141/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2832, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/142/head', false, '', 1704958855); INSERT INTO public.action VALUES (2833, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/142/head', false, '', 1704958855); INSERT INTO public.action VALUES (2834, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/142/head', false, '', 1704958855); INSERT INTO public.action VALUES (2835, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/142/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2836, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/142/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2837, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/142/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2838, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/143/head', false, '', 1704958855); INSERT INTO public.action VALUES (2839, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/143/head', false, '', 1704958855); INSERT INTO public.action VALUES (2840, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/143/head', false, '', 1704958855); INSERT INTO public.action VALUES (2841, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/143/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2842, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/143/merge', false, '', 1704958855); INSERT INTO public.action VALUES (2843, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/143/merge', false, '', 1704958855); INSERT INTO public.action VALUES (3188, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/115/merge', false, '', 1705164371); INSERT INTO public.action VALUES (3189, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/115/merge', false, '', 1705164371); INSERT INTO public.action VALUES (3190, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/115/merge', false, '', 1705164371); INSERT INTO public.action VALUES (3191, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/116/head', false, '', 1705164371); INSERT INTO public.action VALUES (2845, 12, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"}],"HeadCommit":{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Len":1}', 1704964458); INSERT INTO public.action VALUES (2846, 2, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"}],"HeadCommit":{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Len":1}', 1704964458); INSERT INTO public.action VALUES (2847, 5, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"}],"HeadCommit":{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Len":1}', 1704964458); INSERT INTO public.action VALUES (2848, 1, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"}],"HeadCommit":{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Len":1}', 1704964458); INSERT INTO public.action VALUES (2849, 9, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"}],"HeadCommit":{"Sha1":"ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Message":"edit donthu\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-11T16:13:50+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...ec74b0ab70e1e48ddd32ec953e0086264cc0de94","Len":1}', 1704964458); INSERT INTO public.action VALUES (2850, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"}],"HeadCommit":{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"},"CompareURL":"khieu-nai/backend/compare/c58b8c98ab8d407529a026238fe1273b7234d1e2...2ecfca76cd985441844a6db900b6dc707f74b60a","Len":1}', 1704966394); INSERT INTO public.action VALUES (2851, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"}],"HeadCommit":{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"},"CompareURL":"khieu-nai/backend/compare/c58b8c98ab8d407529a026238fe1273b7234d1e2...2ecfca76cd985441844a6db900b6dc707f74b60a","Len":1}', 1704966394); INSERT INTO public.action VALUES (2852, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"}],"HeadCommit":{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"},"CompareURL":"khieu-nai/backend/compare/c58b8c98ab8d407529a026238fe1273b7234d1e2...2ecfca76cd985441844a6db900b6dc707f74b60a","Len":1}', 1704966394); INSERT INTO public.action VALUES (2853, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"}],"HeadCommit":{"Sha1":"2ecfca76cd985441844a6db900b6dc707f74b60a","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:46:23+07:00"},"CompareURL":"khieu-nai/backend/compare/c58b8c98ab8d407529a026238fe1273b7234d1e2...2ecfca76cd985441844a6db900b6dc707f74b60a","Len":1}', 1704966394); INSERT INTO public.action VALUES (3192, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/116/head', false, '', 1705164371); INSERT INTO public.action VALUES (3193, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/116/head', false, '', 1705164371); INSERT INTO public.action VALUES (3194, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/116/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3195, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/116/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3196, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/116/merge', false, '', 1705164372); INSERT INTO public.action VALUES (2856, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"}],"HeadCommit":{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"},"CompareURL":"khieu-nai/backend/compare/2ecfca76cd985441844a6db900b6dc707f74b60a...f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Len":1}', 1704966934); INSERT INTO public.action VALUES (2857, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"}],"HeadCommit":{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"},"CompareURL":"khieu-nai/backend/compare/2ecfca76cd985441844a6db900b6dc707f74b60a...f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Len":1}', 1704966934); INSERT INTO public.action VALUES (2858, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"}],"HeadCommit":{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"},"CompareURL":"khieu-nai/backend/compare/2ecfca76cd985441844a6db900b6dc707f74b60a...f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Len":1}', 1704966934); INSERT INTO public.action VALUES (2859, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"}],"HeadCommit":{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"},"CompareURL":"khieu-nai/backend/compare/2ecfca76cd985441844a6db900b6dc707f74b60a...f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Len":1}', 1704966934); INSERT INTO public.action VALUES (2860, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"}],"HeadCommit":{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"},"CompareURL":"khieu-nai/backend/compare/2ecfca76cd985441844a6db900b6dc707f74b60a...f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Len":1}', 1704966934); INSERT INTO public.action VALUES (2861, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"}],"HeadCommit":{"Sha1":"f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Message":"update json organization\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-11T16:55:24+07:00"},"CompareURL":"khieu-nai/backend/compare/2ecfca76cd985441844a6db900b6dc707f74b60a...f6cf877bbfc129833517eb37d42f3a51e3aa40c7","Len":1}', 1704966934); INSERT INTO public.action VALUES (2862, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},{"Sha1":"08ab43a3504694d98b6fe2925e795dbb951b25fa","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T13:52:03+07:00"}],"HeadCommit":{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e41c5e20826526291d2510b99b0d4fa8bae55484...2b39a2404c8800424e13d56f5702c07c9261c67b","Len":2}', 1704978657); INSERT INTO public.action VALUES (2863, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},{"Sha1":"08ab43a3504694d98b6fe2925e795dbb951b25fa","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T13:52:03+07:00"}],"HeadCommit":{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e41c5e20826526291d2510b99b0d4fa8bae55484...2b39a2404c8800424e13d56f5702c07c9261c67b","Len":2}', 1704978657); INSERT INTO public.action VALUES (2864, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},{"Sha1":"08ab43a3504694d98b6fe2925e795dbb951b25fa","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T13:52:03+07:00"}],"HeadCommit":{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e41c5e20826526291d2510b99b0d4fa8bae55484...2b39a2404c8800424e13d56f5702c07c9261c67b","Len":2}', 1704978657); INSERT INTO public.action VALUES (3197, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/117/head', false, '', 1705164372); INSERT INTO public.action VALUES (2865, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},{"Sha1":"08ab43a3504694d98b6fe2925e795dbb951b25fa","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T13:52:03+07:00"}],"HeadCommit":{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e41c5e20826526291d2510b99b0d4fa8bae55484...2b39a2404c8800424e13d56f5702c07c9261c67b","Len":2}', 1704978657); INSERT INTO public.action VALUES (2866, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},{"Sha1":"08ab43a3504694d98b6fe2925e795dbb951b25fa","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T13:52:03+07:00"}],"HeadCommit":{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e41c5e20826526291d2510b99b0d4fa8bae55484...2b39a2404c8800424e13d56f5702c07c9261c67b","Len":2}', 1704978657); INSERT INTO public.action VALUES (2867, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},{"Sha1":"08ab43a3504694d98b6fe2925e795dbb951b25fa","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T13:52:03+07:00"}],"HeadCommit":{"Sha1":"2b39a2404c8800424e13d56f5702c07c9261c67b","Message":"update bao cáo\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-11T14:12:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e41c5e20826526291d2510b99b0d4fa8bae55484...2b39a2404c8800424e13d56f5702c07c9261c67b","Len":2}', 1704978657); INSERT INTO public.action VALUES (2868, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6fe0578df227fb4bd84cba9bc4376c0048ba5af3...2ea9bc82fbf36de091bb11804d7a7ffae089c611","Len":1}', 1704990050); INSERT INTO public.action VALUES (2869, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6fe0578df227fb4bd84cba9bc4376c0048ba5af3...2ea9bc82fbf36de091bb11804d7a7ffae089c611","Len":1}', 1704990050); INSERT INTO public.action VALUES (2870, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6fe0578df227fb4bd84cba9bc4376c0048ba5af3...2ea9bc82fbf36de091bb11804d7a7ffae089c611","Len":1}', 1704990050); INSERT INTO public.action VALUES (2871, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6fe0578df227fb4bd84cba9bc4376c0048ba5af3...2ea9bc82fbf36de091bb11804d7a7ffae089c611","Len":1}', 1704990050); INSERT INTO public.action VALUES (2872, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6fe0578df227fb4bd84cba9bc4376c0048ba5af3...2ea9bc82fbf36de091bb11804d7a7ffae089c611","Len":1}', 1704990050); INSERT INTO public.action VALUES (2873, 11, 7, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990705); INSERT INTO public.action VALUES (2874, 14, 7, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990705); INSERT INTO public.action VALUES (2875, 16, 7, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990705); INSERT INTO public.action VALUES (2876, 5, 7, 11, 21, 0, false, '', false, '83|add btn gui mail', 1704990705); INSERT INTO public.action VALUES (2883, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/891890aa28aae52d5c4d12f2b351251d3b1be143...50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Len":2}', 1704990832); INSERT INTO public.action VALUES (2884, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/891890aa28aae52d5c4d12f2b351251d3b1be143...50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Len":2}', 1704990832); INSERT INTO public.action VALUES (2991, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bf230208b1efd148c1dec00f3c4eb158311100bd...8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Len":1}', 1705045372); INSERT INTO public.action VALUES (2992, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bf230208b1efd148c1dec00f3c4eb158311100bd...8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Len":1}', 1705045372); INSERT INTO public.action VALUES (2993, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/bf230208b1efd148c1dec00f3c4eb158311100bd...8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Len":1}', 1705045372); INSERT INTO public.action VALUES (2994, 11, 7, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045392); INSERT INTO public.action VALUES (2995, 14, 7, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045392); INSERT INTO public.action VALUES (2996, 16, 7, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045392); INSERT INTO public.action VALUES (2997, 5, 7, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045392); INSERT INTO public.action VALUES (2998, 1, 7, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045392); INSERT INTO public.action VALUES (3027, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6...8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Len":1}', 1705047285); INSERT INTO public.action VALUES (3075, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"}],"HeadCommit":{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"},"CompareURL":"khieu-nai/backend/compare/d2affd50bad1017bfbc9d6940c7b79c6b93e7380...b91fcae669214f6410e0844cb50560d8313ec508","Len":1}', 1705050154); INSERT INTO public.action VALUES (2885, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/891890aa28aae52d5c4d12f2b351251d3b1be143...50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Len":2}', 1704990832); INSERT INTO public.action VALUES (2886, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/891890aa28aae52d5c4d12f2b351251d3b1be143...50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Len":2}', 1704990832); INSERT INTO public.action VALUES (2887, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},{"Sha1":"2ea9bc82fbf36de091bb11804d7a7ffae089c611","Message":"add btn gui mail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-11T23:20:39+07:00"}],"HeadCommit":{"Sha1":"50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Message":"Merge pull request ''add btn gui mail'' (#83) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/83\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-11T23:33:45+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/891890aa28aae52d5c4d12f2b351251d3b1be143...50815ab17a48609b68bcfab8f7f40e59e7dcb4f3","Len":2}', 1704990832); INSERT INTO public.action VALUES (2888, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/136/head', false, '', 1705017370); INSERT INTO public.action VALUES (2889, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/136/head', false, '', 1705017370); INSERT INTO public.action VALUES (2890, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/136/head', false, '', 1705017370); INSERT INTO public.action VALUES (2891, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/136/merge', false, '', 1705017370); INSERT INTO public.action VALUES (2892, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/136/merge', false, '', 1705017370); INSERT INTO public.action VALUES (2893, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/136/merge', false, '', 1705017370); INSERT INTO public.action VALUES (2894, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/137/head', false, '', 1705017370); INSERT INTO public.action VALUES (2895, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/137/head', false, '', 1705017370); INSERT INTO public.action VALUES (2896, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/137/head', false, '', 1705017370); INSERT INTO public.action VALUES (2897, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/137/merge', false, '', 1705017370); INSERT INTO public.action VALUES (2898, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/137/merge', false, '', 1705017370); INSERT INTO public.action VALUES (2899, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/137/merge', false, '', 1705017370); INSERT INTO public.action VALUES (2900, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2ea9bc82fbf36de091bb11804d7a7ffae089c611...7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Len":1}', 1705024773); INSERT INTO public.action VALUES (2901, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2ea9bc82fbf36de091bb11804d7a7ffae089c611...7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Len":1}', 1705024773); INSERT INTO public.action VALUES (2999, 11, 11, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045581); INSERT INTO public.action VALUES (3000, 14, 11, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045581); INSERT INTO public.action VALUES (3001, 16, 11, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045581); INSERT INTO public.action VALUES (2902, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2ea9bc82fbf36de091bb11804d7a7ffae089c611...7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Len":1}', 1705024773); INSERT INTO public.action VALUES (2903, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2ea9bc82fbf36de091bb11804d7a7ffae089c611...7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Len":1}', 1705024773); INSERT INTO public.action VALUES (2904, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2ea9bc82fbf36de091bb11804d7a7ffae089c611...7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Len":1}', 1705024773); INSERT INTO public.action VALUES (2905, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},{"Sha1":"6ddc3308160e6450d6b7a16081e12973629317a6","Message":"fix: component address + oganization\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:02:39+07:00"}],"HeadCommit":{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},"CompareURL":"khieu-nai/admin/compare/ec74b0ab70e1e48ddd32ec953e0086264cc0de94...94ffd4fad7e84bcd1525ff0775450354d753d78a","Len":2}', 1705025088); INSERT INTO public.action VALUES (2906, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},{"Sha1":"6ddc3308160e6450d6b7a16081e12973629317a6","Message":"fix: component address + oganization\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:02:39+07:00"}],"HeadCommit":{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},"CompareURL":"khieu-nai/admin/compare/ec74b0ab70e1e48ddd32ec953e0086264cc0de94...94ffd4fad7e84bcd1525ff0775450354d753d78a","Len":2}', 1705025088); INSERT INTO public.action VALUES (2907, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},{"Sha1":"6ddc3308160e6450d6b7a16081e12973629317a6","Message":"fix: component address + oganization\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:02:39+07:00"}],"HeadCommit":{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},"CompareURL":"khieu-nai/admin/compare/ec74b0ab70e1e48ddd32ec953e0086264cc0de94...94ffd4fad7e84bcd1525ff0775450354d753d78a","Len":2}', 1705025088); INSERT INTO public.action VALUES (2908, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},{"Sha1":"6ddc3308160e6450d6b7a16081e12973629317a6","Message":"fix: component address + oganization\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:02:39+07:00"}],"HeadCommit":{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},"CompareURL":"khieu-nai/admin/compare/ec74b0ab70e1e48ddd32ec953e0086264cc0de94...94ffd4fad7e84bcd1525ff0775450354d753d78a","Len":2}', 1705025088); INSERT INTO public.action VALUES (3002, 5, 11, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045581); INSERT INTO public.action VALUES (3003, 1, 11, 11, 21, 0, false, '', false, '87|fix api tong hop so lieu tuyen sinh', 1705045581); INSERT INTO public.action VALUES (3198, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/117/head', false, '', 1705164372); INSERT INTO public.action VALUES (3199, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/117/head', false, '', 1705164372); INSERT INTO public.action VALUES (3200, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/117/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3201, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/117/merge', false, '', 1705164372); INSERT INTO public.action VALUES (2909, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},{"Sha1":"6ddc3308160e6450d6b7a16081e12973629317a6","Message":"fix: component address + oganization\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:02:39+07:00"}],"HeadCommit":{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},"CompareURL":"khieu-nai/admin/compare/ec74b0ab70e1e48ddd32ec953e0086264cc0de94...94ffd4fad7e84bcd1525ff0775450354d753d78a","Len":2}', 1705025088); INSERT INTO public.action VALUES (2910, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},{"Sha1":"6ddc3308160e6450d6b7a16081e12973629317a6","Message":"fix: component address + oganization\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:02:39+07:00"}],"HeadCommit":{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"},"CompareURL":"khieu-nai/admin/compare/ec74b0ab70e1e48ddd32ec953e0086264cc0de94...94ffd4fad7e84bcd1525ff0775450354d753d78a","Len":2}', 1705025088); INSERT INTO public.action VALUES (2911, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"}],"HeadCommit":{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f5f8927493694fa7b669e9f03f9b7cb95fda38b...d727cc3cd0303928173eddab019be9d9615d69da","Len":1}', 1705025943); INSERT INTO public.action VALUES (2912, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"}],"HeadCommit":{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f5f8927493694fa7b669e9f03f9b7cb95fda38b...d727cc3cd0303928173eddab019be9d9615d69da","Len":1}', 1705025943); INSERT INTO public.action VALUES (2913, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"}],"HeadCommit":{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f5f8927493694fa7b669e9f03f9b7cb95fda38b...d727cc3cd0303928173eddab019be9d9615d69da","Len":1}', 1705025943); INSERT INTO public.action VALUES (2914, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"}],"HeadCommit":{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f5f8927493694fa7b669e9f03f9b7cb95fda38b...d727cc3cd0303928173eddab019be9d9615d69da","Len":1}', 1705025943); INSERT INTO public.action VALUES (2915, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"}],"HeadCommit":{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7f5f8927493694fa7b669e9f03f9b7cb95fda38b...d727cc3cd0303928173eddab019be9d9615d69da","Len":1}', 1705025943); INSERT INTO public.action VALUES (2916, 11, 7, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025961); INSERT INTO public.action VALUES (2917, 14, 7, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025961); INSERT INTO public.action VALUES (2918, 16, 7, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025961); INSERT INTO public.action VALUES (2919, 5, 7, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025961); INSERT INTO public.action VALUES (2920, 1, 7, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025961); INSERT INTO public.action VALUES (2921, 11, 11, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025976); INSERT INTO public.action VALUES (2922, 14, 11, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025976); INSERT INTO public.action VALUES (2923, 16, 11, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025976); INSERT INTO public.action VALUES (2924, 5, 11, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025976); INSERT INTO public.action VALUES (2925, 1, 11, 11, 21, 0, false, '', false, '84|fix change so nam', 1705025976); INSERT INTO public.action VALUES (3202, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/117/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3203, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/118/head', false, '', 1705164372); INSERT INTO public.action VALUES (2926, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/50815ab17a48609b68bcfab8f7f40e59e7dcb4f3...d48e38d9a17ce739803e4e98d015c2fc443742ac","Len":3}', 1705025977); INSERT INTO public.action VALUES (2927, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/50815ab17a48609b68bcfab8f7f40e59e7dcb4f3...d48e38d9a17ce739803e4e98d015c2fc443742ac","Len":3}', 1705025977); INSERT INTO public.action VALUES (2928, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/50815ab17a48609b68bcfab8f7f40e59e7dcb4f3...d48e38d9a17ce739803e4e98d015c2fc443742ac","Len":3}', 1705025977); INSERT INTO public.action VALUES (2929, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/50815ab17a48609b68bcfab8f7f40e59e7dcb4f3...d48e38d9a17ce739803e4e98d015c2fc443742ac","Len":3}', 1705025977); INSERT INTO public.action VALUES (3028, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6...8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Len":1}', 1705047285); INSERT INTO public.action VALUES (3204, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/118/head', false, '', 1705164372); INSERT INTO public.action VALUES (3205, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/118/head', false, '', 1705164372); INSERT INTO public.action VALUES (2930, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},{"Sha1":"d727cc3cd0303928173eddab019be9d9615d69da","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T09:18:57+07:00"},{"Sha1":"7f5f8927493694fa7b669e9f03f9b7cb95fda38b","Message":"fix change so nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T08:57:52+07:00"}],"HeadCommit":{"Sha1":"d48e38d9a17ce739803e4e98d015c2fc443742ac","Message":"Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T09:19:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/50815ab17a48609b68bcfab8f7f40e59e7dcb4f3...d48e38d9a17ce739803e4e98d015c2fc443742ac","Len":3}', 1705025977); INSERT INTO public.action VALUES (2931, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d727cc3cd0303928173eddab019be9d9615d69da...c78cbbacb228029e2f7904edb91659aa06135be7","Len":1}', 1705030268); INSERT INTO public.action VALUES (2932, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d727cc3cd0303928173eddab019be9d9615d69da...c78cbbacb228029e2f7904edb91659aa06135be7","Len":1}', 1705030268); INSERT INTO public.action VALUES (2933, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d727cc3cd0303928173eddab019be9d9615d69da...c78cbbacb228029e2f7904edb91659aa06135be7","Len":1}', 1705030268); INSERT INTO public.action VALUES (2934, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d727cc3cd0303928173eddab019be9d9615d69da...c78cbbacb228029e2f7904edb91659aa06135be7","Len":1}', 1705030268); INSERT INTO public.action VALUES (2935, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"}],"HeadCommit":{"Sha1":"c78cbbacb228029e2f7904edb91659aa06135be7","Message":"add fuc in send gmail\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T10:30:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d727cc3cd0303928173eddab019be9d9615d69da...c78cbbacb228029e2f7904edb91659aa06135be7","Len":1}', 1705030268); INSERT INTO public.action VALUES (3006, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},{"Sha1":"8d033bdc680e69f37d6b0c7530e23ace16ad7ab6","Message":"fix api tong hop so lieu tuyen sinh\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T14:42:45+07:00"}],"HeadCommit":{"Sha1":"1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Message":"Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T14:46:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6189e5347420d4bbcee5c4f550ed3cd17a77ba41...1b5b07b0d95cd7b123fbc052e003045a1ea4530f","Len":2}', 1705045583); INSERT INTO public.action VALUES (3206, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/118/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3207, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/118/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3031, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6...8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Len":1}', 1705047285); INSERT INTO public.action VALUES (3032, 11, 7, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047314); INSERT INTO public.action VALUES (3033, 14, 7, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047314); INSERT INTO public.action VALUES (3034, 16, 7, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047314); INSERT INTO public.action VALUES (3035, 5, 7, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047314); INSERT INTO public.action VALUES (3036, 1, 7, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047314); INSERT INTO public.action VALUES (3037, 11, 11, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047329); INSERT INTO public.action VALUES (3038, 14, 11, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047329); INSERT INTO public.action VALUES (3039, 16, 11, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047329); INSERT INTO public.action VALUES (3040, 5, 11, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047329); INSERT INTO public.action VALUES (3041, 1, 11, 11, 21, 0, false, '', false, '88|fix bao cao tuyen sinh nn/nam', 1705047329); INSERT INTO public.action VALUES (3052, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"}],"HeadCommit":{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/41e50f4abb6a643eb77c56ef5d517a3b404880ea...18d5c8f72559020069d731f9b8b1e4073a955df7","Len":1}', 1705050058); INSERT INTO public.action VALUES (3053, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"}],"HeadCommit":{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/41e50f4abb6a643eb77c56ef5d517a3b404880ea...18d5c8f72559020069d731f9b8b1e4073a955df7","Len":1}', 1705050058); INSERT INTO public.action VALUES (3054, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"}],"HeadCommit":{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/41e50f4abb6a643eb77c56ef5d517a3b404880ea...18d5c8f72559020069d731f9b8b1e4073a955df7","Len":1}', 1705050058); INSERT INTO public.action VALUES (3055, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"}],"HeadCommit":{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/41e50f4abb6a643eb77c56ef5d517a3b404880ea...18d5c8f72559020069d731f9b8b1e4073a955df7","Len":1}', 1705050058); INSERT INTO public.action VALUES (3056, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"}],"HeadCommit":{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/41e50f4abb6a643eb77c56ef5d517a3b404880ea...18d5c8f72559020069d731f9b8b1e4073a955df7","Len":1}', 1705050058); INSERT INTO public.action VALUES (3057, 11, 7, 11, 21, 0, false, '', false, '89|thinh', 1705050072); INSERT INTO public.action VALUES (3058, 14, 7, 11, 21, 0, false, '', false, '89|thinh', 1705050072); INSERT INTO public.action VALUES (3059, 16, 7, 11, 21, 0, false, '', false, '89|thinh', 1705050072); INSERT INTO public.action VALUES (3060, 5, 7, 11, 21, 0, false, '', false, '89|thinh', 1705050072); INSERT INTO public.action VALUES (3061, 1, 7, 11, 21, 0, false, '', false, '89|thinh', 1705050072); INSERT INTO public.action VALUES (3062, 11, 11, 11, 21, 0, false, '', false, '89|thinh', 1705050102); INSERT INTO public.action VALUES (3063, 14, 11, 11, 21, 0, false, '', false, '89|thinh', 1705050102); INSERT INTO public.action VALUES (3064, 16, 11, 11, 21, 0, false, '', false, '89|thinh', 1705050102); INSERT INTO public.action VALUES (3065, 5, 11, 11, 21, 0, false, '', false, '89|thinh', 1705050102); INSERT INTO public.action VALUES (3066, 1, 11, 11, 21, 0, false, '', false, '89|thinh', 1705050102); INSERT INTO public.action VALUES (3042, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b5b07b0d95cd7b123fbc052e003045a1ea4530f...9dbf9d1817992c4fee7c955f584497c9faefcc50","Len":2}', 1705047330); INSERT INTO public.action VALUES (3043, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b5b07b0d95cd7b123fbc052e003045a1ea4530f...9dbf9d1817992c4fee7c955f584497c9faefcc50","Len":2}', 1705047330); INSERT INTO public.action VALUES (3044, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b5b07b0d95cd7b123fbc052e003045a1ea4530f...9dbf9d1817992c4fee7c955f584497c9faefcc50","Len":2}', 1705047330); INSERT INTO public.action VALUES (3045, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b5b07b0d95cd7b123fbc052e003045a1ea4530f...9dbf9d1817992c4fee7c955f584497c9faefcc50","Len":2}', 1705047330); INSERT INTO public.action VALUES (3046, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},{"Sha1":"8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f","Message":"fix bao cao tuyen sinh nn/nam\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:14:38+07:00"}],"HeadCommit":{"Sha1":"9dbf9d1817992c4fee7c955f584497c9faefcc50","Message":"Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T15:15:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/1b5b07b0d95cd7b123fbc052e003045a1ea4530f...9dbf9d1817992c4fee7c955f584497c9faefcc50","Len":2}', 1705047330); INSERT INTO public.action VALUES (3047, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f...41e50f4abb6a643eb77c56ef5d517a3b404880ea","Len":1}', 1705049244); INSERT INTO public.action VALUES (3048, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f...41e50f4abb6a643eb77c56ef5d517a3b404880ea","Len":1}', 1705049244); INSERT INTO public.action VALUES (3049, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f...41e50f4abb6a643eb77c56ef5d517a3b404880ea","Len":1}', 1705049244); INSERT INTO public.action VALUES (3050, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f...41e50f4abb6a643eb77c56ef5d517a3b404880ea","Len":1}', 1705049244); INSERT INTO public.action VALUES (3051, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f...41e50f4abb6a643eb77c56ef5d517a3b404880ea","Len":1}', 1705049244); INSERT INTO public.action VALUES (3067, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dbf9d1817992c4fee7c955f584497c9faefcc50...773815950340a50498ed3995ebb83bdcacecc237","Len":3}', 1705050103); INSERT INTO public.action VALUES (3068, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dbf9d1817992c4fee7c955f584497c9faefcc50...773815950340a50498ed3995ebb83bdcacecc237","Len":3}', 1705050103); INSERT INTO public.action VALUES (3076, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"}],"HeadCommit":{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"},"CompareURL":"khieu-nai/backend/compare/d2affd50bad1017bfbc9d6940c7b79c6b93e7380...b91fcae669214f6410e0844cb50560d8313ec508","Len":1}', 1705050154); INSERT INTO public.action VALUES (3208, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/118/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3069, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dbf9d1817992c4fee7c955f584497c9faefcc50...773815950340a50498ed3995ebb83bdcacecc237","Len":3}', 1705050103); INSERT INTO public.action VALUES (3070, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dbf9d1817992c4fee7c955f584497c9faefcc50...773815950340a50498ed3995ebb83bdcacecc237","Len":3}', 1705050103); INSERT INTO public.action VALUES (3071, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},{"Sha1":"18d5c8f72559020069d731f9b8b1e4073a955df7","Message":"fix ke hoach\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:00:51+07:00"},{"Sha1":"41e50f4abb6a643eb77c56ef5d517a3b404880ea","Message":"add reload infohocvien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T15:47:16+07:00"}],"HeadCommit":{"Sha1":"773815950340a50498ed3995ebb83bdcacecc237","Message":"Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:01:38+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9dbf9d1817992c4fee7c955f584497c9faefcc50...773815950340a50498ed3995ebb83bdcacecc237","Len":3}', 1705050103); INSERT INTO public.action VALUES (3072, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"}],"HeadCommit":{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"},"CompareURL":"khieu-nai/backend/compare/d2affd50bad1017bfbc9d6940c7b79c6b93e7380...b91fcae669214f6410e0844cb50560d8313ec508","Len":1}', 1705050154); INSERT INTO public.action VALUES (3073, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"}],"HeadCommit":{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"},"CompareURL":"khieu-nai/backend/compare/d2affd50bad1017bfbc9d6940c7b79c6b93e7380...b91fcae669214f6410e0844cb50560d8313ec508","Len":1}', 1705050154); INSERT INTO public.action VALUES (3074, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"}],"HeadCommit":{"Sha1":"b91fcae669214f6410e0844cb50560d8313ec508","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-12T16:02:25+07:00"},"CompareURL":"khieu-nai/backend/compare/d2affd50bad1017bfbc9d6940c7b79c6b93e7380...b91fcae669214f6410e0844cb50560d8313ec508","Len":1}', 1705050154); INSERT INTO public.action VALUES (3209, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/119/head', false, '', 1705164372); INSERT INTO public.action VALUES (3210, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/119/head', false, '', 1705164372); INSERT INTO public.action VALUES (3211, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/119/head', false, '', 1705164372); INSERT INTO public.action VALUES (3212, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/119/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3213, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/119/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3078, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d5c8f72559020069d731f9b8b1e4073a955df7...52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Len":1}', 1705052701); INSERT INTO public.action VALUES (3079, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d5c8f72559020069d731f9b8b1e4073a955df7...52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Len":1}', 1705052701); INSERT INTO public.action VALUES (3080, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d5c8f72559020069d731f9b8b1e4073a955df7...52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Len":1}', 1705052701); INSERT INTO public.action VALUES (3081, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d5c8f72559020069d731f9b8b1e4073a955df7...52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Len":1}', 1705052701); INSERT INTO public.action VALUES (3082, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/18d5c8f72559020069d731f9b8b1e4073a955df7...52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Len":1}', 1705052701); INSERT INTO public.action VALUES (3083, 11, 7, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052726); INSERT INTO public.action VALUES (3084, 14, 7, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052726); INSERT INTO public.action VALUES (3085, 16, 7, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052726); INSERT INTO public.action VALUES (3086, 5, 7, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052726); INSERT INTO public.action VALUES (3087, 1, 7, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052726); INSERT INTO public.action VALUES (3088, 11, 11, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052742); INSERT INTO public.action VALUES (3089, 14, 11, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052742); INSERT INTO public.action VALUES (3090, 16, 11, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052742); INSERT INTO public.action VALUES (3091, 5, 11, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052742); INSERT INTO public.action VALUES (3092, 1, 11, 11, 21, 0, false, '', false, '90|hidden kehoachdapheduyet', 1705052742); INSERT INTO public.action VALUES (3093, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/773815950340a50498ed3995ebb83bdcacecc237...4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Len":2}', 1705052744); INSERT INTO public.action VALUES (3094, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/773815950340a50498ed3995ebb83bdcacecc237...4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Len":2}', 1705052744); INSERT INTO public.action VALUES (3095, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/773815950340a50498ed3995ebb83bdcacecc237...4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Len":2}', 1705052744); INSERT INTO public.action VALUES (3096, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/773815950340a50498ed3995ebb83bdcacecc237...4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Len":2}', 1705052744); INSERT INTO public.action VALUES (3097, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},{"Sha1":"52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63","Message":"hidden kehoachdapheduyet\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-12T16:44:53+07:00"}],"HeadCommit":{"Sha1":"4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Message":"Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-12T16:45:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/773815950340a50498ed3995ebb83bdcacecc237...4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6","Len":2}', 1705052744); INSERT INTO public.action VALUES (3214, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/119/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3215, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/120/head', false, '', 1705164372); INSERT INTO public.action VALUES (3216, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/120/head', false, '', 1705164372); INSERT INTO public.action VALUES (3217, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/120/head', false, '', 1705164372); INSERT INTO public.action VALUES (3218, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/120/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3219, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/120/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3220, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/120/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3098, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},{"Sha1":"bf763670dbcd04cf2d62a4351e7bd827afd8c51f","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:04:50+07:00"},{"Sha1":"2c1fcefaef32b97c209b50d4e26b254dfc876ebb","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:00:21+07:00"},{"Sha1":"2c28f28773d5b3c23e888d4e0d18be1aeeeaf91c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:51+07:00"},{"Sha1":"dc7009da3e2ca79ea7f8bc87835aa020280a81fd","Message":"fix Nhập số kế hoạch không được nhỏ hơn số đã được phê duyệt\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:31+07:00"}],"HeadCommit":{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/869268d636fa17b9ae86c4f0ce751839607f6610...e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Len":6}', 1705066573); INSERT INTO public.action VALUES (3099, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},{"Sha1":"bf763670dbcd04cf2d62a4351e7bd827afd8c51f","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:04:50+07:00"},{"Sha1":"2c1fcefaef32b97c209b50d4e26b254dfc876ebb","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:00:21+07:00"},{"Sha1":"2c28f28773d5b3c23e888d4e0d18be1aeeeaf91c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:51+07:00"},{"Sha1":"dc7009da3e2ca79ea7f8bc87835aa020280a81fd","Message":"fix Nhập số kế hoạch không được nhỏ hơn số đã được phê duyệt\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:31+07:00"}],"HeadCommit":{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/869268d636fa17b9ae86c4f0ce751839607f6610...e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Len":6}', 1705066573); INSERT INTO public.action VALUES (3100, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},{"Sha1":"bf763670dbcd04cf2d62a4351e7bd827afd8c51f","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:04:50+07:00"},{"Sha1":"2c1fcefaef32b97c209b50d4e26b254dfc876ebb","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:00:21+07:00"},{"Sha1":"2c28f28773d5b3c23e888d4e0d18be1aeeeaf91c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:51+07:00"},{"Sha1":"dc7009da3e2ca79ea7f8bc87835aa020280a81fd","Message":"fix Nhập số kế hoạch không được nhỏ hơn số đã được phê duyệt\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:31+07:00"}],"HeadCommit":{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/869268d636fa17b9ae86c4f0ce751839607f6610...e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Len":6}', 1705066573); INSERT INTO public.action VALUES (3101, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},{"Sha1":"bf763670dbcd04cf2d62a4351e7bd827afd8c51f","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:04:50+07:00"},{"Sha1":"2c1fcefaef32b97c209b50d4e26b254dfc876ebb","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:00:21+07:00"},{"Sha1":"2c28f28773d5b3c23e888d4e0d18be1aeeeaf91c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:51+07:00"},{"Sha1":"dc7009da3e2ca79ea7f8bc87835aa020280a81fd","Message":"fix Nhập số kế hoạch không được nhỏ hơn số đã được phê duyệt\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:31+07:00"}],"HeadCommit":{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/869268d636fa17b9ae86c4f0ce751839607f6610...e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Len":6}', 1705066573); INSERT INTO public.action VALUES (3221, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/121/head', false, '', 1705164372); INSERT INTO public.action VALUES (3102, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},{"Sha1":"bf763670dbcd04cf2d62a4351e7bd827afd8c51f","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:04:50+07:00"},{"Sha1":"2c1fcefaef32b97c209b50d4e26b254dfc876ebb","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:00:21+07:00"},{"Sha1":"2c28f28773d5b3c23e888d4e0d18be1aeeeaf91c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:51+07:00"},{"Sha1":"dc7009da3e2ca79ea7f8bc87835aa020280a81fd","Message":"fix Nhập số kế hoạch không được nhỏ hơn số đã được phê duyệt\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:31+07:00"}],"HeadCommit":{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/869268d636fa17b9ae86c4f0ce751839607f6610...e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Len":6}', 1705066573); INSERT INTO public.action VALUES (3103, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},{"Sha1":"bf763670dbcd04cf2d62a4351e7bd827afd8c51f","Message":"update bao cao\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:04:50+07:00"},{"Sha1":"2c1fcefaef32b97c209b50d4e26b254dfc876ebb","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:00:21+07:00"},{"Sha1":"2c28f28773d5b3c23e888d4e0d18be1aeeeaf91c","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:51+07:00"},{"Sha1":"dc7009da3e2ca79ea7f8bc87835aa020280a81fd","Message":"fix Nhập số kế hoạch không được nhỏ hơn số đã được phê duyệt\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-12T15:23:31+07:00"}],"HeadCommit":{"Sha1":"e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-12T16:47:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/869268d636fa17b9ae86c4f0ce751839607f6610...e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85","Len":6}', 1705066573); INSERT INTO public.action VALUES (3224, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/121/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3225, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/121/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3226, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/121/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3227, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/122/head', false, '', 1705164372); INSERT INTO public.action VALUES (3228, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/122/head', false, '', 1705164372); INSERT INTO public.action VALUES (3229, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/122/head', false, '', 1705164372); INSERT INTO public.action VALUES (3230, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/122/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3231, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/122/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3232, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/122/merge', false, '', 1705164372); INSERT INTO public.action VALUES (3233, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/108/head', false, '', 1705193770); INSERT INTO public.action VALUES (3234, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/108/head', false, '', 1705193770); INSERT INTO public.action VALUES (3235, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/108/head', false, '', 1705193770); INSERT INTO public.action VALUES (3236, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/108/merge', false, '', 1705193770); INSERT INTO public.action VALUES (3237, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/108/merge', false, '', 1705193770); INSERT INTO public.action VALUES (3238, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/108/merge', false, '', 1705193770); INSERT INTO public.action VALUES (3239, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/109/head', false, '', 1705193770); INSERT INTO public.action VALUES (3240, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/109/head', false, '', 1705193770); INSERT INTO public.action VALUES (3241, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/109/head', false, '', 1705193770); INSERT INTO public.action VALUES (3242, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/109/merge', false, '', 1705193770); INSERT INTO public.action VALUES (3243, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/109/merge', false, '', 1705193770); INSERT INTO public.action VALUES (3244, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/109/merge', false, '', 1705193770); INSERT INTO public.action VALUES (3245, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/110/head', false, '', 1705193770); INSERT INTO public.action VALUES (3246, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/110/head', false, '', 1705193770); INSERT INTO public.action VALUES (3247, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/110/head', false, '', 1705193770); INSERT INTO public.action VALUES (3248, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/111/head', false, '', 1705193770); INSERT INTO public.action VALUES (3249, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/111/head', false, '', 1705193770); INSERT INTO public.action VALUES (3250, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/111/head', false, '', 1705193770); INSERT INTO public.action VALUES (3251, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/111/merge', false, '', 1705193770); INSERT INTO public.action VALUES (3252, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/111/merge', false, '', 1705193770); INSERT INTO public.action VALUES (3253, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/111/merge', false, '', 1705193770); INSERT INTO public.action VALUES (3254, 13, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/2/head', false, '', 1705193774); INSERT INTO public.action VALUES (3255, 1, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/2/head', false, '', 1705193774); INSERT INTO public.action VALUES (3256, 4, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/2/head', false, '', 1705193774); INSERT INTO public.action VALUES (3257, 13, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/2/merge', false, '', 1705193774); INSERT INTO public.action VALUES (3258, 1, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/2/merge', false, '', 1705193774); INSERT INTO public.action VALUES (3259, 4, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/2/merge', false, '', 1705193774); INSERT INTO public.action VALUES (3260, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63...11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Len":1}', 1705207776); INSERT INTO public.action VALUES (3261, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63...11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Len":1}', 1705207776); INSERT INTO public.action VALUES (3262, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63...11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Len":1}', 1705207776); INSERT INTO public.action VALUES (3504, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/212/merge', false, '', 1705340770); INSERT INTO public.action VALUES (3505, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/212/merge', false, '', 1705340770); INSERT INTO public.action VALUES (3534, 1, 11, 11, 21, 0, false, '', false, '99|change login', 1705369982); INSERT INTO public.action VALUES (3535, 5, 11, 11, 21, 0, false, '', false, '99|change login', 1705369982); INSERT INTO public.action VALUES (3536, 16, 11, 11, 21, 0, false, '', false, '99|change login', 1705369982); INSERT INTO public.action VALUES (3263, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63...11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Len":1}', 1705207776); INSERT INTO public.action VALUES (3264, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63...11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Len":1}', 1705207776); INSERT INTO public.action VALUES (3265, 11, 7, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705207983); INSERT INTO public.action VALUES (3266, 14, 7, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705207983); INSERT INTO public.action VALUES (3267, 16, 7, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705207983); INSERT INTO public.action VALUES (3268, 5, 7, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705207983); INSERT INTO public.action VALUES (3269, 1, 7, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705207983); INSERT INTO public.action VALUES (3270, 11, 11, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705208014); INSERT INTO public.action VALUES (3271, 14, 11, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705208014); INSERT INTO public.action VALUES (3272, 16, 11, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705208014); INSERT INTO public.action VALUES (3273, 5, 11, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705208014); INSERT INTO public.action VALUES (3274, 1, 11, 11, 21, 0, false, '', false, '91|add menu thong bao', 1705208014); INSERT INTO public.action VALUES (3275, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6...7b0e4a3aa34a91347178a93361fc9e193abd595d","Len":2}', 1705208015); INSERT INTO public.action VALUES (3276, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6...7b0e4a3aa34a91347178a93361fc9e193abd595d","Len":2}', 1705208015); INSERT INTO public.action VALUES (3277, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6...7b0e4a3aa34a91347178a93361fc9e193abd595d","Len":2}', 1705208015); INSERT INTO public.action VALUES (3291, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/15e39944f15f208be7ba038d75a2f68911f1d21e...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":1}', 1705285619); INSERT INTO public.action VALUES (3278, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6...7b0e4a3aa34a91347178a93361fc9e193abd595d","Len":2}', 1705208015); INSERT INTO public.action VALUES (3279, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},{"Sha1":"11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1","Message":"add menu thong bao\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-14T11:49:23+07:00"}],"HeadCommit":{"Sha1":"7b0e4a3aa34a91347178a93361fc9e193abd595d","Message":"Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-14T11:53:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6...7b0e4a3aa34a91347178a93361fc9e193abd595d","Len":2}', 1705208015); INSERT INTO public.action VALUES (3280, 13, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/1/head', false, '', 1705223174); INSERT INTO public.action VALUES (3281, 1, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/1/head', false, '', 1705223174); INSERT INTO public.action VALUES (3282, 4, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/1/head', false, '', 1705223174); INSERT INTO public.action VALUES (3283, 13, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/1/merge', false, '', 1705223174); INSERT INTO public.action VALUES (3284, 1, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/1/merge', false, '', 1705223174); INSERT INTO public.action VALUES (3285, 4, 20, 13, 18, 0, false, 'refs/tags/refs/merge-requests/1/merge', false, '', 1705223174); INSERT INTO public.action VALUES (3286, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/15e39944f15f208be7ba038d75a2f68911f1d21e...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":1}', 1705285619); INSERT INTO public.action VALUES (3287, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/15e39944f15f208be7ba038d75a2f68911f1d21e...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":1}', 1705285619); INSERT INTO public.action VALUES (3288, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/15e39944f15f208be7ba038d75a2f68911f1d21e...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":1}', 1705285619); INSERT INTO public.action VALUES (3289, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/15e39944f15f208be7ba038d75a2f68911f1d21e...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":1}', 1705285619); INSERT INTO public.action VALUES (3290, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/15e39944f15f208be7ba038d75a2f68911f1d21e...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":1}', 1705285619); INSERT INTO public.action VALUES (3343, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/106/merge', false, '', 1705311370); INSERT INTO public.action VALUES (3344, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/107/head', false, '', 1705311370); INSERT INTO public.action VALUES (3345, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/107/head', false, '', 1705311370); INSERT INTO public.action VALUES (3346, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/107/head', false, '', 1705311370); INSERT INTO public.action VALUES (3292, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491); INSERT INTO public.action VALUES (3293, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491); INSERT INTO public.action VALUES (3294, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491); INSERT INTO public.action VALUES (3295, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491); INSERT INTO public.action VALUES (3296, 11, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491); INSERT INTO public.action VALUES (3297, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491); INSERT INTO public.action VALUES (3298, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491); INSERT INTO public.action VALUES (3299, 16, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"15e39944f15f208be7ba038d75a2f68911f1d21e","Message":"feat: organization 100%\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T13:57:32+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"},{"Sha1":"94ffd4fad7e84bcd1525ff0775450354d753d78a","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-12T09:04:39+07:00"}],"HeadCommit":{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},"CompareURL":"khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f","Len":7}', 1705291491); INSERT INTO public.action VALUES (3300, 15, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588); INSERT INTO public.action VALUES (3301, 12, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588); INSERT INTO public.action VALUES (3302, 2, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588); INSERT INTO public.action VALUES (3303, 1, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588); INSERT INTO public.action VALUES (3304, 11, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588); INSERT INTO public.action VALUES (3305, 5, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588); INSERT INTO public.action VALUES (3306, 9, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588); INSERT INTO public.action VALUES (3347, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/107/merge', false, '', 1705311370); INSERT INTO public.action VALUES (3348, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/107/merge', false, '', 1705311370); INSERT INTO public.action VALUES (3307, 16, 5, 15, 26, 0, false, 'refs/heads/dev-hoa', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":2}', 1705291588); INSERT INTO public.action VALUES (3308, 15, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291619); INSERT INTO public.action VALUES (3309, 12, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291619); INSERT INTO public.action VALUES (3310, 2, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291620); INSERT INTO public.action VALUES (3311, 1, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291620); INSERT INTO public.action VALUES (3349, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/107/merge', false, '', 1705311370); INSERT INTO public.action VALUES (3312, 11, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291620); INSERT INTO public.action VALUES (3313, 5, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291620); INSERT INTO public.action VALUES (3314, 9, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291620); INSERT INTO public.action VALUES (3315, 16, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},{"Sha1":"4686dd6b75c63490b6661f85c0b1c947240ec20f","Message":"update userDungDonuserDungDon\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:04:28+07:00"},{"Sha1":"6b8740b31e995f14081083ba03bd0f1f4c40e3e3","Message":"adress\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T13:57:59+07:00"},{"Sha1":"266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9","Message":"list\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-12T09:05:14+07:00"}],"HeadCommit":{"Sha1":"b8d0d925b42d717dd3206442113f99e827a2ff0f","Message":"merge\n","AuthorEmail":"hoatrongkylovestory1999@gmail.com","AuthorName":"Nguyễn Chí Hoà","CommitterEmail":"hoatrongkylovestory1999@gmail.com","CommitterName":"Nguyễn Chí Hoà","Timestamp":"2024-01-15T11:06:01+07:00"},"CompareURL":"khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f","Len":4}', 1705291620); INSERT INTO public.action VALUES (3350, 11, 11, 11, 21, 0, false, '', false, '92|add full action', 1705311410); INSERT INTO public.action VALUES (3351, 14, 11, 11, 21, 0, false, '', false, '92|add full action', 1705311410); INSERT INTO public.action VALUES (3352, 1, 11, 11, 21, 0, false, '', false, '92|add full action', 1705311411); INSERT INTO public.action VALUES (3353, 5, 11, 11, 21, 0, false, '', false, '92|add full action', 1705311411); INSERT INTO public.action VALUES (3354, 16, 11, 11, 21, 0, false, '', false, '92|add full action', 1705311411); INSERT INTO public.action VALUES (3506, 11, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636); INSERT INTO public.action VALUES (3507, 12, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636); INSERT INTO public.action VALUES (3508, 2, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636); INSERT INTO public.action VALUES (3509, 1, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636); INSERT INTO public.action VALUES (3510, 15, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636); INSERT INTO public.action VALUES (3511, 5, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636); INSERT INTO public.action VALUES (3316, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},{"Sha1":"6935781437259ef8b4fbc67a932ddf11dafb1899","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:55+07:00"},{"Sha1":"69a1a8ca8f1772e4b925d1acb1f217a85d542292","Message":"gửi thông báo khi thao tác với kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:15+07:00"}],"HeadCommit":{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85...25171a94c626223b0e72c8a83ce97b2af8680282","Len":3}', 1705301771); INSERT INTO public.action VALUES (3317, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},{"Sha1":"6935781437259ef8b4fbc67a932ddf11dafb1899","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:55+07:00"},{"Sha1":"69a1a8ca8f1772e4b925d1acb1f217a85d542292","Message":"gửi thông báo khi thao tác với kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:15+07:00"}],"HeadCommit":{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85...25171a94c626223b0e72c8a83ce97b2af8680282","Len":3}', 1705301771); INSERT INTO public.action VALUES (3318, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},{"Sha1":"6935781437259ef8b4fbc67a932ddf11dafb1899","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:55+07:00"},{"Sha1":"69a1a8ca8f1772e4b925d1acb1f217a85d542292","Message":"gửi thông báo khi thao tác với kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:15+07:00"}],"HeadCommit":{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85...25171a94c626223b0e72c8a83ce97b2af8680282","Len":3}', 1705301771); INSERT INTO public.action VALUES (3319, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},{"Sha1":"6935781437259ef8b4fbc67a932ddf11dafb1899","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:55+07:00"},{"Sha1":"69a1a8ca8f1772e4b925d1acb1f217a85d542292","Message":"gửi thông báo khi thao tác với kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:15+07:00"}],"HeadCommit":{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85...25171a94c626223b0e72c8a83ce97b2af8680282","Len":3}', 1705301771); INSERT INTO public.action VALUES (3320, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},{"Sha1":"6935781437259ef8b4fbc67a932ddf11dafb1899","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:55+07:00"},{"Sha1":"69a1a8ca8f1772e4b925d1acb1f217a85d542292","Message":"gửi thông báo khi thao tác với kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:15+07:00"}],"HeadCommit":{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85...25171a94c626223b0e72c8a83ce97b2af8680282","Len":3}', 1705301771); INSERT INTO public.action VALUES (3370, 11, 11, 11, 21, 0, false, '', false, '93|fix bug', 1705312012); INSERT INTO public.action VALUES (3371, 14, 11, 11, 21, 0, false, '', false, '93|fix bug', 1705312012); INSERT INTO public.action VALUES (3372, 1, 11, 11, 21, 0, false, '', false, '93|fix bug', 1705312012); INSERT INTO public.action VALUES (3373, 5, 11, 11, 21, 0, false, '', false, '93|fix bug', 1705312012); INSERT INTO public.action VALUES (3374, 16, 11, 11, 21, 0, false, '', false, '93|fix bug', 1705312012); INSERT INTO public.action VALUES (3512, 9, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636); INSERT INTO public.action VALUES (3513, 16, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '', 1705368636); INSERT INTO public.action VALUES (3321, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},{"Sha1":"6935781437259ef8b4fbc67a932ddf11dafb1899","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:55+07:00"},{"Sha1":"69a1a8ca8f1772e4b925d1acb1f217a85d542292","Message":"gửi thông báo khi thao tác với kế hoạch tuyển sinh\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:14:15+07:00"}],"HeadCommit":{"Sha1":"25171a94c626223b0e72c8a83ce97b2af8680282","Message":"f\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-15T11:23:08+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85...25171a94c626223b0e72c8a83ce97b2af8680282","Len":3}', 1705301771); INSERT INTO public.action VALUES (3322, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1...5562d2823f0ace47c1fca2f8fe994e65241e8bea","Len":1}', 1705311229); INSERT INTO public.action VALUES (3323, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1...5562d2823f0ace47c1fca2f8fe994e65241e8bea","Len":1}', 1705311229); INSERT INTO public.action VALUES (3324, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1...5562d2823f0ace47c1fca2f8fe994e65241e8bea","Len":1}', 1705311229); INSERT INTO public.action VALUES (3325, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1...5562d2823f0ace47c1fca2f8fe994e65241e8bea","Len":1}', 1705311229); INSERT INTO public.action VALUES (3326, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1...5562d2823f0ace47c1fca2f8fe994e65241e8bea","Len":1}', 1705311229); INSERT INTO public.action VALUES (3327, 11, 7, 11, 21, 0, false, '', false, '92|add full action', 1705311361); INSERT INTO public.action VALUES (3328, 14, 7, 11, 21, 0, false, '', false, '92|add full action', 1705311361); INSERT INTO public.action VALUES (3329, 1, 7, 11, 21, 0, false, '', false, '92|add full action', 1705311361); INSERT INTO public.action VALUES (3330, 5, 7, 11, 21, 0, false, '', false, '92|add full action', 1705311361); INSERT INTO public.action VALUES (3331, 16, 7, 11, 21, 0, false, '', false, '92|add full action', 1705311361); INSERT INTO public.action VALUES (3332, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/105/head', false, '', 1705311370); INSERT INTO public.action VALUES (3333, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/105/head', false, '', 1705311370); INSERT INTO public.action VALUES (3334, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/105/head', false, '', 1705311370); INSERT INTO public.action VALUES (3335, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/105/merge', false, '', 1705311370); INSERT INTO public.action VALUES (3336, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/105/merge', false, '', 1705311370); INSERT INTO public.action VALUES (3337, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/105/merge', false, '', 1705311370); INSERT INTO public.action VALUES (3338, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/106/head', false, '', 1705311370); INSERT INTO public.action VALUES (3339, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/106/head', false, '', 1705311370); INSERT INTO public.action VALUES (3340, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/106/head', false, '', 1705311370); INSERT INTO public.action VALUES (3341, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/106/merge', false, '', 1705311370); INSERT INTO public.action VALUES (3342, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/106/merge', false, '', 1705311370); INSERT INTO public.action VALUES (3397, 16, 7, 11, 21, 0, false, '', false, '94|fix bug', 1705312953); INSERT INTO public.action VALUES (3355, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b0e4a3aa34a91347178a93361fc9e193abd595d...9b29db610b20afcdaeec0f83db697b5c93ff5abf","Len":2}', 1705311411); INSERT INTO public.action VALUES (3356, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b0e4a3aa34a91347178a93361fc9e193abd595d...9b29db610b20afcdaeec0f83db697b5c93ff5abf","Len":2}', 1705311411); INSERT INTO public.action VALUES (3357, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b0e4a3aa34a91347178a93361fc9e193abd595d...9b29db610b20afcdaeec0f83db697b5c93ff5abf","Len":2}', 1705311411); INSERT INTO public.action VALUES (3358, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b0e4a3aa34a91347178a93361fc9e193abd595d...9b29db610b20afcdaeec0f83db697b5c93ff5abf","Len":2}', 1705311411); INSERT INTO public.action VALUES (3359, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},{"Sha1":"5562d2823f0ace47c1fca2f8fe994e65241e8bea","Message":"add full action\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:33:30+07:00"}],"HeadCommit":{"Sha1":"9b29db610b20afcdaeec0f83db697b5c93ff5abf","Message":"Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:36:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b0e4a3aa34a91347178a93361fc9e193abd595d...9b29db610b20afcdaeec0f83db697b5c93ff5abf","Len":2}', 1705311411); INSERT INTO public.action VALUES (3360, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5562d2823f0ace47c1fca2f8fe994e65241e8bea...489a7a7fdc58d8144acd13c4cd58f66912cb341c","Len":1}', 1705311888); INSERT INTO public.action VALUES (3361, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5562d2823f0ace47c1fca2f8fe994e65241e8bea...489a7a7fdc58d8144acd13c4cd58f66912cb341c","Len":1}', 1705311888); INSERT INTO public.action VALUES (3362, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5562d2823f0ace47c1fca2f8fe994e65241e8bea...489a7a7fdc58d8144acd13c4cd58f66912cb341c","Len":1}', 1705311888); INSERT INTO public.action VALUES (3363, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5562d2823f0ace47c1fca2f8fe994e65241e8bea...489a7a7fdc58d8144acd13c4cd58f66912cb341c","Len":1}', 1705311888); INSERT INTO public.action VALUES (3364, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5562d2823f0ace47c1fca2f8fe994e65241e8bea...489a7a7fdc58d8144acd13c4cd58f66912cb341c","Len":1}', 1705311888); INSERT INTO public.action VALUES (3365, 11, 7, 11, 21, 0, false, '', false, '93|fix bug', 1705311944); INSERT INTO public.action VALUES (3366, 14, 7, 11, 21, 0, false, '', false, '93|fix bug', 1705311944); INSERT INTO public.action VALUES (3367, 1, 7, 11, 21, 0, false, '', false, '93|fix bug', 1705311944); INSERT INTO public.action VALUES (3368, 5, 7, 11, 21, 0, false, '', false, '93|fix bug', 1705311944); INSERT INTO public.action VALUES (3369, 16, 7, 11, 21, 0, false, '', false, '93|fix bug', 1705311944); INSERT INTO public.action VALUES (3375, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9b29db610b20afcdaeec0f83db697b5c93ff5abf...5b4556aaf08d874c598d4e9213153ede266d695d","Len":2}', 1705312013); INSERT INTO public.action VALUES (3376, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9b29db610b20afcdaeec0f83db697b5c93ff5abf...5b4556aaf08d874c598d4e9213153ede266d695d","Len":2}', 1705312013); INSERT INTO public.action VALUES (3398, 11, 11, 11, 21, 0, false, '', false, '94|fix bug', 1705312968); INSERT INTO public.action VALUES (3399, 14, 11, 11, 21, 0, false, '', false, '94|fix bug', 1705312968); INSERT INTO public.action VALUES (3400, 1, 11, 11, 21, 0, false, '', false, '94|fix bug', 1705312968); INSERT INTO public.action VALUES (3401, 5, 11, 11, 21, 0, false, '', false, '94|fix bug', 1705312968); INSERT INTO public.action VALUES (3377, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9b29db610b20afcdaeec0f83db697b5c93ff5abf...5b4556aaf08d874c598d4e9213153ede266d695d","Len":2}', 1705312013); INSERT INTO public.action VALUES (3378, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9b29db610b20afcdaeec0f83db697b5c93ff5abf...5b4556aaf08d874c598d4e9213153ede266d695d","Len":2}', 1705312013); INSERT INTO public.action VALUES (3379, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},{"Sha1":"489a7a7fdc58d8144acd13c4cd58f66912cb341c","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T16:44:37+07:00"}],"HeadCommit":{"Sha1":"5b4556aaf08d874c598d4e9213153ede266d695d","Message":"Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T16:46:46+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/9b29db610b20afcdaeec0f83db697b5c93ff5abf...5b4556aaf08d874c598d4e9213153ede266d695d","Len":2}', 1705312013); INSERT INTO public.action VALUES (3380, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435); INSERT INTO public.action VALUES (3381, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435); INSERT INTO public.action VALUES (3382, 11, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435); INSERT INTO public.action VALUES (3383, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435); INSERT INTO public.action VALUES (3402, 16, 11, 11, 21, 0, false, '', false, '94|fix bug', 1705312968); INSERT INTO public.action VALUES (3514, 11, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636); INSERT INTO public.action VALUES (3527, 11, 7, 11, 21, 0, false, '', false, '99|change login', 1705369967); INSERT INTO public.action VALUES (3384, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435); INSERT INTO public.action VALUES (3385, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435); INSERT INTO public.action VALUES (3386, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435); INSERT INTO public.action VALUES (3387, 16, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"}],"HeadCommit":{"Sha1":"95bd4b83164ae2833c3b2f81776fbcd20b064e24","Message":"update storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-15T16:53:42+07:00"},"CompareURL":"khieu-nai/backend/compare/b91fcae669214f6410e0844cb50560d8313ec508...95bd4b83164ae2833c3b2f81776fbcd20b064e24","Len":1}', 1705312435); INSERT INTO public.action VALUES (3388, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/489a7a7fdc58d8144acd13c4cd58f66912cb341c...7b2383b817c645ebfa98deeb3863743633d3deae","Len":1}', 1705312886); INSERT INTO public.action VALUES (3389, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/489a7a7fdc58d8144acd13c4cd58f66912cb341c...7b2383b817c645ebfa98deeb3863743633d3deae","Len":1}', 1705312886); INSERT INTO public.action VALUES (3390, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/489a7a7fdc58d8144acd13c4cd58f66912cb341c...7b2383b817c645ebfa98deeb3863743633d3deae","Len":1}', 1705312886); INSERT INTO public.action VALUES (3391, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/489a7a7fdc58d8144acd13c4cd58f66912cb341c...7b2383b817c645ebfa98deeb3863743633d3deae","Len":1}', 1705312886); INSERT INTO public.action VALUES (3392, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/489a7a7fdc58d8144acd13c4cd58f66912cb341c...7b2383b817c645ebfa98deeb3863743633d3deae","Len":1}', 1705312886); INSERT INTO public.action VALUES (3393, 11, 7, 11, 21, 0, false, '', false, '94|fix bug', 1705312952); INSERT INTO public.action VALUES (3394, 14, 7, 11, 21, 0, false, '', false, '94|fix bug', 1705312953); INSERT INTO public.action VALUES (3395, 1, 7, 11, 21, 0, false, '', false, '94|fix bug', 1705312953); INSERT INTO public.action VALUES (3396, 5, 7, 11, 21, 0, false, '', false, '94|fix bug', 1705312953); INSERT INTO public.action VALUES (3403, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b4556aaf08d874c598d4e9213153ede266d695d...c1781de2627ad32061687b7324e88a13d1040bb1","Len":2}', 1705312969); INSERT INTO public.action VALUES (3404, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b4556aaf08d874c598d4e9213153ede266d695d...c1781de2627ad32061687b7324e88a13d1040bb1","Len":2}', 1705312969); INSERT INTO public.action VALUES (3405, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b4556aaf08d874c598d4e9213153ede266d695d...c1781de2627ad32061687b7324e88a13d1040bb1","Len":2}', 1705312969); INSERT INTO public.action VALUES (3406, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b4556aaf08d874c598d4e9213153ede266d695d...c1781de2627ad32061687b7324e88a13d1040bb1","Len":2}', 1705312969); INSERT INTO public.action VALUES (3407, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},{"Sha1":"7b2383b817c645ebfa98deeb3863743633d3deae","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T17:01:15+07:00"}],"HeadCommit":{"Sha1":"c1781de2627ad32061687b7324e88a13d1040bb1","Message":"Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T17:02:42+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5b4556aaf08d874c598d4e9213153ede266d695d...c1781de2627ad32061687b7324e88a13d1040bb1","Len":2}', 1705312969); INSERT INTO public.action VALUES (3408, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b2383b817c645ebfa98deeb3863743633d3deae...8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Len":1}', 1705320552); INSERT INTO public.action VALUES (3409, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b2383b817c645ebfa98deeb3863743633d3deae...8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Len":1}', 1705320552); INSERT INTO public.action VALUES (3410, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b2383b817c645ebfa98deeb3863743633d3deae...8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Len":1}', 1705320552); INSERT INTO public.action VALUES (3411, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b2383b817c645ebfa98deeb3863743633d3deae...8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Len":1}', 1705320552); INSERT INTO public.action VALUES (3412, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7b2383b817c645ebfa98deeb3863743633d3deae...8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Len":1}', 1705320552); INSERT INTO public.action VALUES (3413, 11, 7, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320582); INSERT INTO public.action VALUES (3414, 14, 7, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320582); INSERT INTO public.action VALUES (3415, 1, 7, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320582); INSERT INTO public.action VALUES (3416, 5, 7, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320582); INSERT INTO public.action VALUES (3417, 16, 7, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320582); INSERT INTO public.action VALUES (3418, 11, 11, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320611); INSERT INTO public.action VALUES (3419, 14, 11, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320611); INSERT INTO public.action VALUES (3420, 1, 11, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320611); INSERT INTO public.action VALUES (3421, 5, 11, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320611); INSERT INTO public.action VALUES (3422, 16, 11, 11, 21, 0, false, '', false, '95|fix giao dien', 1705320611); INSERT INTO public.action VALUES (3423, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c1781de2627ad32061687b7324e88a13d1040bb1...cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Len":2}', 1705320611); INSERT INTO public.action VALUES (3428, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9...da91d00953fc86aef94866d081a1d25a46b94d02","Len":1}', 1705321086); INSERT INTO public.action VALUES (3528, 14, 7, 11, 21, 0, false, '', false, '99|change login', 1705369967); INSERT INTO public.action VALUES (3424, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c1781de2627ad32061687b7324e88a13d1040bb1...cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Len":2}', 1705320611); INSERT INTO public.action VALUES (3425, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c1781de2627ad32061687b7324e88a13d1040bb1...cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Len":2}', 1705320611); INSERT INTO public.action VALUES (3426, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c1781de2627ad32061687b7324e88a13d1040bb1...cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Len":2}', 1705320611); INSERT INTO public.action VALUES (3427, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},{"Sha1":"8f60ed32b2d8d1c029f54144b9426d2b865b6bd9","Message":"fix giao dien\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:08:23+07:00"}],"HeadCommit":{"Sha1":"cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Message":"Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:10:05+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c1781de2627ad32061687b7324e88a13d1040bb1...cebbfb98f2b56f439f19e5720eb0f1bab9f3b518","Len":2}', 1705320611); INSERT INTO public.action VALUES (3443, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518...81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Len":2}', 1705321150); INSERT INTO public.action VALUES (3450, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/da91d00953fc86aef94866d081a1d25a46b94d02...a328fa9eb323e241b28e295cac0680456d0a1338","Len":1}', 1705321775); INSERT INTO public.action VALUES (3529, 1, 7, 11, 21, 0, false, '', false, '99|change login', 1705369967); INSERT INTO public.action VALUES (3530, 5, 7, 11, 21, 0, false, '', false, '99|change login', 1705369967); INSERT INTO public.action VALUES (3429, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9...da91d00953fc86aef94866d081a1d25a46b94d02","Len":1}', 1705321087); INSERT INTO public.action VALUES (3430, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9...da91d00953fc86aef94866d081a1d25a46b94d02","Len":1}', 1705321087); INSERT INTO public.action VALUES (3431, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9...da91d00953fc86aef94866d081a1d25a46b94d02","Len":1}', 1705321087); INSERT INTO public.action VALUES (3432, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9...da91d00953fc86aef94866d081a1d25a46b94d02","Len":1}', 1705321087); INSERT INTO public.action VALUES (3433, 11, 7, 11, 21, 0, false, '', false, '96|fix loi', 1705321133); INSERT INTO public.action VALUES (3434, 14, 7, 11, 21, 0, false, '', false, '96|fix loi', 1705321133); INSERT INTO public.action VALUES (3435, 1, 7, 11, 21, 0, false, '', false, '96|fix loi', 1705321133); INSERT INTO public.action VALUES (3436, 5, 7, 11, 21, 0, false, '', false, '96|fix loi', 1705321133); INSERT INTO public.action VALUES (3437, 16, 7, 11, 21, 0, false, '', false, '96|fix loi', 1705321133); INSERT INTO public.action VALUES (3438, 11, 11, 11, 21, 0, false, '', false, '96|fix loi', 1705321149); INSERT INTO public.action VALUES (3439, 14, 11, 11, 21, 0, false, '', false, '96|fix loi', 1705321149); INSERT INTO public.action VALUES (3440, 1, 11, 11, 21, 0, false, '', false, '96|fix loi', 1705321149); INSERT INTO public.action VALUES (3441, 5, 11, 11, 21, 0, false, '', false, '96|fix loi', 1705321149); INSERT INTO public.action VALUES (3442, 16, 11, 11, 21, 0, false, '', false, '96|fix loi', 1705321149); INSERT INTO public.action VALUES (3444, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518...81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Len":2}', 1705321150); INSERT INTO public.action VALUES (3445, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518...81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Len":2}', 1705321150); INSERT INTO public.action VALUES (3446, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518...81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Len":2}', 1705321150); INSERT INTO public.action VALUES (3447, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},{"Sha1":"da91d00953fc86aef94866d081a1d25a46b94d02","Message":"fix loi\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:17:59+07:00"}],"HeadCommit":{"Sha1":"81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Message":"Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:19:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518...81ebe9e1ea91c561cfd2d8b2778830a808e2104e","Len":2}', 1705321150); INSERT INTO public.action VALUES (3448, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/da91d00953fc86aef94866d081a1d25a46b94d02...a328fa9eb323e241b28e295cac0680456d0a1338","Len":1}', 1705321775); INSERT INTO public.action VALUES (3449, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/da91d00953fc86aef94866d081a1d25a46b94d02...a328fa9eb323e241b28e295cac0680456d0a1338","Len":1}', 1705321775); INSERT INTO public.action VALUES (3479, 14, 11, 11, 21, 0, false, '', false, '98|fix search all page', 1705329330); INSERT INTO public.action VALUES (3480, 1, 11, 11, 21, 0, false, '', false, '98|fix search all page', 1705329330); INSERT INTO public.action VALUES (3481, 5, 11, 11, 21, 0, false, '', false, '98|fix search all page', 1705329330); INSERT INTO public.action VALUES (3482, 16, 11, 11, 21, 0, false, '', false, '98|fix search all page', 1705329330); INSERT INTO public.action VALUES (3531, 16, 7, 11, 21, 0, false, '', false, '99|change login', 1705369967); INSERT INTO public.action VALUES (3532, 11, 11, 11, 21, 0, false, '', false, '99|change login', 1705369982); INSERT INTO public.action VALUES (3533, 14, 11, 11, 21, 0, false, '', false, '99|change login', 1705369982); INSERT INTO public.action VALUES (3451, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/da91d00953fc86aef94866d081a1d25a46b94d02...a328fa9eb323e241b28e295cac0680456d0a1338","Len":1}', 1705321775); INSERT INTO public.action VALUES (3452, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/da91d00953fc86aef94866d081a1d25a46b94d02...a328fa9eb323e241b28e295cac0680456d0a1338","Len":1}', 1705321775); INSERT INTO public.action VALUES (3453, 11, 7, 11, 21, 0, false, '', false, '97|add screen', 1705321822); INSERT INTO public.action VALUES (3454, 14, 7, 11, 21, 0, false, '', false, '97|add screen', 1705321822); INSERT INTO public.action VALUES (3455, 1, 7, 11, 21, 0, false, '', false, '97|add screen', 1705321822); INSERT INTO public.action VALUES (3456, 5, 7, 11, 21, 0, false, '', false, '97|add screen', 1705321822); INSERT INTO public.action VALUES (3457, 16, 7, 11, 21, 0, false, '', false, '97|add screen', 1705321822); INSERT INTO public.action VALUES (3458, 11, 11, 11, 21, 0, false, '', false, '97|add screen', 1705321840); INSERT INTO public.action VALUES (3459, 14, 11, 11, 21, 0, false, '', false, '97|add screen', 1705321840); INSERT INTO public.action VALUES (3460, 1, 11, 11, 21, 0, false, '', false, '97|add screen', 1705321840); INSERT INTO public.action VALUES (3461, 5, 11, 11, 21, 0, false, '', false, '97|add screen', 1705321840); INSERT INTO public.action VALUES (3462, 16, 11, 11, 21, 0, false, '', false, '97|add screen', 1705321840); INSERT INTO public.action VALUES (3463, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/81ebe9e1ea91c561cfd2d8b2778830a808e2104e...99df42f181517ecde830cfba0d18f5bb48283de8","Len":2}', 1705321842); INSERT INTO public.action VALUES (3464, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/81ebe9e1ea91c561cfd2d8b2778830a808e2104e...99df42f181517ecde830cfba0d18f5bb48283de8","Len":2}', 1705321842); INSERT INTO public.action VALUES (3465, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/81ebe9e1ea91c561cfd2d8b2778830a808e2104e...99df42f181517ecde830cfba0d18f5bb48283de8","Len":2}', 1705321842); INSERT INTO public.action VALUES (3496, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/211/head', false, '', 1705340770); INSERT INTO public.action VALUES (3497, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/211/merge', false, '', 1705340770); INSERT INTO public.action VALUES (3498, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/211/merge', false, '', 1705340770); INSERT INTO public.action VALUES (3499, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/211/merge', false, '', 1705340770); INSERT INTO public.action VALUES (3500, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/212/head', false, '', 1705340770); INSERT INTO public.action VALUES (3501, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/212/head', false, '', 1705340770); INSERT INTO public.action VALUES (3502, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/212/head', false, '', 1705340770); INSERT INTO public.action VALUES (3503, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/212/merge', false, '', 1705340770); INSERT INTO public.action VALUES (3466, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/81ebe9e1ea91c561cfd2d8b2778830a808e2104e...99df42f181517ecde830cfba0d18f5bb48283de8","Len":2}', 1705321842); INSERT INTO public.action VALUES (3467, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},{"Sha1":"a328fa9eb323e241b28e295cac0680456d0a1338","Message":"add screen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T19:29:27+07:00"}],"HeadCommit":{"Sha1":"99df42f181517ecde830cfba0d18f5bb48283de8","Message":"Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T19:30:34+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/81ebe9e1ea91c561cfd2d8b2778830a808e2104e...99df42f181517ecde830cfba0d18f5bb48283de8","Len":2}', 1705321842); INSERT INTO public.action VALUES (3468, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a328fa9eb323e241b28e295cac0680456d0a1338...67a5311e4cf2834ef7fc0b767015be48d669696d","Len":1}', 1705328901); INSERT INTO public.action VALUES (3469, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a328fa9eb323e241b28e295cac0680456d0a1338...67a5311e4cf2834ef7fc0b767015be48d669696d","Len":1}', 1705328901); INSERT INTO public.action VALUES (3470, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a328fa9eb323e241b28e295cac0680456d0a1338...67a5311e4cf2834ef7fc0b767015be48d669696d","Len":1}', 1705328901); INSERT INTO public.action VALUES (3471, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a328fa9eb323e241b28e295cac0680456d0a1338...67a5311e4cf2834ef7fc0b767015be48d669696d","Len":1}', 1705328901); INSERT INTO public.action VALUES (3472, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a328fa9eb323e241b28e295cac0680456d0a1338...67a5311e4cf2834ef7fc0b767015be48d669696d","Len":1}', 1705328901); INSERT INTO public.action VALUES (3473, 11, 7, 11, 21, 0, false, '', false, '98|fix search all page', 1705329304); INSERT INTO public.action VALUES (3474, 14, 7, 11, 21, 0, false, '', false, '98|fix search all page', 1705329304); INSERT INTO public.action VALUES (3475, 1, 7, 11, 21, 0, false, '', false, '98|fix search all page', 1705329305); INSERT INTO public.action VALUES (3476, 5, 7, 11, 21, 0, false, '', false, '98|fix search all page', 1705329305); INSERT INTO public.action VALUES (3477, 16, 7, 11, 21, 0, false, '', false, '98|fix search all page', 1705329305); INSERT INTO public.action VALUES (3478, 11, 11, 11, 21, 0, false, '', false, '98|fix search all page', 1705329330); INSERT INTO public.action VALUES (3483, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99df42f181517ecde830cfba0d18f5bb48283de8...ddb1e1f9c86e1477341fd41cae9b0350d5807140","Len":2}', 1705329330); INSERT INTO public.action VALUES (3484, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99df42f181517ecde830cfba0d18f5bb48283de8...ddb1e1f9c86e1477341fd41cae9b0350d5807140","Len":2}', 1705329330); INSERT INTO public.action VALUES (3485, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99df42f181517ecde830cfba0d18f5bb48283de8...ddb1e1f9c86e1477341fd41cae9b0350d5807140","Len":2}', 1705329330); INSERT INTO public.action VALUES (3486, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99df42f181517ecde830cfba0d18f5bb48283de8...ddb1e1f9c86e1477341fd41cae9b0350d5807140","Len":2}', 1705329330); INSERT INTO public.action VALUES (3487, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},{"Sha1":"67a5311e4cf2834ef7fc0b767015be48d669696d","Message":"fix search all page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-15T21:28:10+07:00"}],"HeadCommit":{"Sha1":"ddb1e1f9c86e1477341fd41cae9b0350d5807140","Message":"Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-15T21:35:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99df42f181517ecde830cfba0d18f5bb48283de8...ddb1e1f9c86e1477341fd41cae9b0350d5807140","Len":2}', 1705329330); INSERT INTO public.action VALUES (3488, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/104/head', false, '', 1705340770); INSERT INTO public.action VALUES (3489, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/104/head', false, '', 1705340770); INSERT INTO public.action VALUES (3490, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/104/head', false, '', 1705340770); INSERT INTO public.action VALUES (3491, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/104/merge', false, '', 1705340770); INSERT INTO public.action VALUES (3492, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/104/merge', false, '', 1705340770); INSERT INTO public.action VALUES (3493, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/104/merge', false, '', 1705340770); INSERT INTO public.action VALUES (3494, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/211/head', false, '', 1705340770); INSERT INTO public.action VALUES (3495, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/211/head', false, '', 1705340770); INSERT INTO public.action VALUES (3515, 12, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636); INSERT INTO public.action VALUES (3516, 2, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636); INSERT INTO public.action VALUES (3517, 1, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636); INSERT INTO public.action VALUES (3518, 15, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636); INSERT INTO public.action VALUES (3519, 5, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636); INSERT INTO public.action VALUES (3520, 9, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636); INSERT INTO public.action VALUES (3521, 16, 5, 11, 26, 0, false, 'refs/heads/dev-thinh', false, '{"Commits":[],"HeadCommit":{"Sha1":"6eeb3167459d18da3f7e5738d37354a500b8c3f6","Message":"feat: room - organization - jobtitle\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-15T09:22:38+07:00"},"CompareURL":"khieu-nai/admin/compare/main...6eeb3167459d18da3f7e5738d37354a500b8c3f6","Len":0}', 1705368636); INSERT INTO public.action VALUES (3522, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/67a5311e4cf2834ef7fc0b767015be48d669696d...122c6ba57907664a26aac6393e0880e02d8d2610","Len":1}', 1705369942); INSERT INTO public.action VALUES (3523, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/67a5311e4cf2834ef7fc0b767015be48d669696d...122c6ba57907664a26aac6393e0880e02d8d2610","Len":1}', 1705369942); INSERT INTO public.action VALUES (3524, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/67a5311e4cf2834ef7fc0b767015be48d669696d...122c6ba57907664a26aac6393e0880e02d8d2610","Len":1}', 1705369942); INSERT INTO public.action VALUES (3525, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/67a5311e4cf2834ef7fc0b767015be48d669696d...122c6ba57907664a26aac6393e0880e02d8d2610","Len":1}', 1705369942); INSERT INTO public.action VALUES (3526, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/67a5311e4cf2834ef7fc0b767015be48d669696d...122c6ba57907664a26aac6393e0880e02d8d2610","Len":1}', 1705369942); INSERT INTO public.action VALUES (3537, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ddb1e1f9c86e1477341fd41cae9b0350d5807140...c94f86451988d6cf98b90a9f0e74a88515b66f9a","Len":2}', 1705369983); INSERT INTO public.action VALUES (3538, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ddb1e1f9c86e1477341fd41cae9b0350d5807140...c94f86451988d6cf98b90a9f0e74a88515b66f9a","Len":2}', 1705369983); INSERT INTO public.action VALUES (3539, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ddb1e1f9c86e1477341fd41cae9b0350d5807140...c94f86451988d6cf98b90a9f0e74a88515b66f9a","Len":2}', 1705369983); INSERT INTO public.action VALUES (3540, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ddb1e1f9c86e1477341fd41cae9b0350d5807140...c94f86451988d6cf98b90a9f0e74a88515b66f9a","Len":2}', 1705369983); INSERT INTO public.action VALUES (3541, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},{"Sha1":"122c6ba57907664a26aac6393e0880e02d8d2610","Message":"change login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T08:52:14+07:00"}],"HeadCommit":{"Sha1":"c94f86451988d6cf98b90a9f0e74a88515b66f9a","Message":"Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T08:52:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ddb1e1f9c86e1477341fd41cae9b0350d5807140...c94f86451988d6cf98b90a9f0e74a88515b66f9a","Len":2}', 1705369983); INSERT INTO public.action VALUES (3542, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/100/head', false, '', 1705370170); INSERT INTO public.action VALUES (3543, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/100/head', false, '', 1705370170); INSERT INTO public.action VALUES (3544, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/100/head', false, '', 1705370170); INSERT INTO public.action VALUES (3545, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/100/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3546, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/100/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3547, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/100/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3548, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/101/head', false, '', 1705370170); INSERT INTO public.action VALUES (3549, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/101/head', false, '', 1705370170); INSERT INTO public.action VALUES (3550, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/101/head', false, '', 1705370170); INSERT INTO public.action VALUES (3551, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/101/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3552, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/101/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3553, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/101/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3554, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/102/head', false, '', 1705370170); INSERT INTO public.action VALUES (3555, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/102/head', false, '', 1705370170); INSERT INTO public.action VALUES (3556, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/102/head', false, '', 1705370170); INSERT INTO public.action VALUES (3557, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/102/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3558, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/102/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3559, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/102/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3560, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/103/head', false, '', 1705370170); INSERT INTO public.action VALUES (3561, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/103/head', false, '', 1705370170); INSERT INTO public.action VALUES (3562, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/103/head', false, '', 1705370170); INSERT INTO public.action VALUES (3563, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/103/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3564, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/103/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3565, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/103/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3566, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/96/head', false, '', 1705370170); INSERT INTO public.action VALUES (3567, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/96/head', false, '', 1705370170); INSERT INTO public.action VALUES (3568, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/96/head', false, '', 1705370170); INSERT INTO public.action VALUES (3569, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/96/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3570, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/96/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3571, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/96/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3572, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/97/head', false, '', 1705370170); INSERT INTO public.action VALUES (3573, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/97/head', false, '', 1705370170); INSERT INTO public.action VALUES (3574, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/97/head', false, '', 1705370170); INSERT INTO public.action VALUES (3575, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/97/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3576, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/97/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3577, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/97/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3578, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/98/head', false, '', 1705370170); INSERT INTO public.action VALUES (3579, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/98/head', false, '', 1705370170); INSERT INTO public.action VALUES (3580, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/98/head', false, '', 1705370170); INSERT INTO public.action VALUES (3581, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/98/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3582, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/98/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3583, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/98/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3584, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/99/head', false, '', 1705370170); INSERT INTO public.action VALUES (3585, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/99/head', false, '', 1705370170); INSERT INTO public.action VALUES (3586, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/99/head', false, '', 1705370170); INSERT INTO public.action VALUES (3587, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/99/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3588, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/99/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3589, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/99/merge', false, '', 1705370170); INSERT INTO public.action VALUES (3590, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966); INSERT INTO public.action VALUES (3591, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966); INSERT INTO public.action VALUES (3592, 11, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966); INSERT INTO public.action VALUES (3624, 11, 11, 11, 21, 0, false, '', false, '100|fix datatable', 1705389625); INSERT INTO public.action VALUES (3625, 14, 11, 11, 21, 0, false, '', false, '100|fix datatable', 1705389625); INSERT INTO public.action VALUES (3626, 1, 11, 11, 21, 0, false, '', false, '100|fix datatable', 1705389625); INSERT INTO public.action VALUES (3627, 5, 11, 11, 21, 0, false, '', false, '100|fix datatable', 1705389625); INSERT INTO public.action VALUES (3593, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966); INSERT INTO public.action VALUES (3594, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966); INSERT INTO public.action VALUES (3595, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966); INSERT INTO public.action VALUES (3596, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966); INSERT INTO public.action VALUES (3597, 16, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"}],"HeadCommit":{"Sha1":"15c3872b78aea42ba7c35fade600ccae5b5b9806","Message":"update dm loai van ban\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T09:59:13+07:00"},"CompareURL":"khieu-nai/backend/compare/95bd4b83164ae2833c3b2f81776fbcd20b064e24...15c3872b78aea42ba7c35fade600ccae5b5b9806","Len":1}', 1705373966); INSERT INTO public.action VALUES (3598, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207); INSERT INTO public.action VALUES (3599, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207); INSERT INTO public.action VALUES (3600, 11, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207); INSERT INTO public.action VALUES (3601, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207); INSERT INTO public.action VALUES (3628, 16, 11, 11, 21, 0, false, '', false, '100|fix datatable', 1705389625); INSERT INTO public.action VALUES (3849, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/77/head', false, '', 1705458370); INSERT INTO public.action VALUES (3850, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/77/head', false, '', 1705458370); INSERT INTO public.action VALUES (3851, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/77/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3852, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/77/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3853, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/77/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3602, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207); INSERT INTO public.action VALUES (3603, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207); INSERT INTO public.action VALUES (3604, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207); INSERT INTO public.action VALUES (3605, 16, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"}],"HeadCommit":{"Sha1":"f94cc2c946b186f5829331077bc44f1b62c9901f","Message":"update s3 storage\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-16T11:26:34+07:00"},"CompareURL":"khieu-nai/backend/compare/15c3872b78aea42ba7c35fade600ccae5b5b9806...f94cc2c946b186f5829331077bc44f1b62c9901f","Len":1}', 1705379207); INSERT INTO public.action VALUES (3606, 16, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191); INSERT INTO public.action VALUES (3607, 12, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191); INSERT INTO public.action VALUES (3608, 11, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191); INSERT INTO public.action VALUES (3609, 2, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191); INSERT INTO public.action VALUES (3854, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/78/head', false, '', 1705458370); INSERT INTO public.action VALUES (3855, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/78/head', false, '', 1705458370); INSERT INTO public.action VALUES (3856, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/78/head', false, '', 1705458370); INSERT INTO public.action VALUES (3610, 1, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191); INSERT INTO public.action VALUES (3611, 15, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191); INSERT INTO public.action VALUES (3612, 5, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191); INSERT INTO public.action VALUES (3613, 9, 5, 16, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},{"Sha1":"43d70a01865c5a858fa2f42d805564efa8be978d","Message":"them template\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:28:13+07:00"}],"HeadCommit":{"Sha1":"374020590f53026b266de0bc639429e3a2498848","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T13:56:03+07:00"},"CompareURL":"khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848","Len":2}', 1705388191); INSERT INTO public.action VALUES (3614, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/122c6ba57907664a26aac6393e0880e02d8d2610...b4fa71025f54e4fa94ba095169119fa40b06d27c","Len":1}', 1705389268); INSERT INTO public.action VALUES (3615, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/122c6ba57907664a26aac6393e0880e02d8d2610...b4fa71025f54e4fa94ba095169119fa40b06d27c","Len":1}', 1705389268); INSERT INTO public.action VALUES (3616, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/122c6ba57907664a26aac6393e0880e02d8d2610...b4fa71025f54e4fa94ba095169119fa40b06d27c","Len":1}', 1705389268); INSERT INTO public.action VALUES (3617, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/122c6ba57907664a26aac6393e0880e02d8d2610...b4fa71025f54e4fa94ba095169119fa40b06d27c","Len":1}', 1705389268); INSERT INTO public.action VALUES (3618, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/122c6ba57907664a26aac6393e0880e02d8d2610...b4fa71025f54e4fa94ba095169119fa40b06d27c","Len":1}', 1705389268); INSERT INTO public.action VALUES (3619, 11, 7, 11, 21, 0, false, '', false, '100|fix datatable', 1705389572); INSERT INTO public.action VALUES (3620, 14, 7, 11, 21, 0, false, '', false, '100|fix datatable', 1705389572); INSERT INTO public.action VALUES (3621, 1, 7, 11, 21, 0, false, '', false, '100|fix datatable', 1705389572); INSERT INTO public.action VALUES (3622, 5, 7, 11, 21, 0, false, '', false, '100|fix datatable', 1705389572); INSERT INTO public.action VALUES (3623, 16, 7, 11, 21, 0, false, '', false, '100|fix datatable', 1705389572); INSERT INTO public.action VALUES (3629, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c94f86451988d6cf98b90a9f0e74a88515b66f9a...2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Len":2}', 1705389626); INSERT INTO public.action VALUES (3630, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c94f86451988d6cf98b90a9f0e74a88515b66f9a...2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Len":2}', 1705389626); INSERT INTO public.action VALUES (3631, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c94f86451988d6cf98b90a9f0e74a88515b66f9a...2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Len":2}', 1705389626); INSERT INTO public.action VALUES (3632, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c94f86451988d6cf98b90a9f0e74a88515b66f9a...2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Len":2}', 1705389626); INSERT INTO public.action VALUES (3655, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6...a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Len":1}', 1705394251); INSERT INTO public.action VALUES (3857, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/78/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3633, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},{"Sha1":"b4fa71025f54e4fa94ba095169119fa40b06d27c","Message":"fix datatable\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T14:14:19+07:00"}],"HeadCommit":{"Sha1":"2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Message":"Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T14:20:20+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/c94f86451988d6cf98b90a9f0e74a88515b66f9a...2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2","Len":2}', 1705389626); INSERT INTO public.action VALUES (3634, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4fa71025f54e4fa94ba095169119fa40b06d27c...ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Len":1}', 1705393286); INSERT INTO public.action VALUES (3635, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4fa71025f54e4fa94ba095169119fa40b06d27c...ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Len":1}', 1705393286); INSERT INTO public.action VALUES (3636, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4fa71025f54e4fa94ba095169119fa40b06d27c...ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Len":1}', 1705393286); INSERT INTO public.action VALUES (3637, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4fa71025f54e4fa94ba095169119fa40b06d27c...ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Len":1}', 1705393286); INSERT INTO public.action VALUES (3638, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b4fa71025f54e4fa94ba095169119fa40b06d27c...ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Len":1}', 1705393286); INSERT INTO public.action VALUES (3639, 11, 7, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393322); INSERT INTO public.action VALUES (3640, 14, 7, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393322); INSERT INTO public.action VALUES (3641, 1, 7, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393322); INSERT INTO public.action VALUES (3642, 5, 7, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393322); INSERT INTO public.action VALUES (3643, 16, 7, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393322); INSERT INTO public.action VALUES (3644, 11, 11, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393335); INSERT INTO public.action VALUES (3645, 14, 11, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393335); INSERT INTO public.action VALUES (3646, 1, 11, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393335); INSERT INTO public.action VALUES (3647, 5, 11, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393335); INSERT INTO public.action VALUES (3648, 16, 11, 11, 21, 0, false, '', false, '101|fix odata QLLD_HoSo', 1705393335); INSERT INTO public.action VALUES (3664, 11, 11, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394331); INSERT INTO public.action VALUES (3665, 14, 11, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394331); INSERT INTO public.action VALUES (3666, 1, 11, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394331); INSERT INTO public.action VALUES (3667, 5, 11, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394331); INSERT INTO public.action VALUES (3668, 16, 11, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394331); INSERT INTO public.action VALUES (3913, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/87/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3914, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/88/head', false, '', 1705458371); INSERT INTO public.action VALUES (3649, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2...53d1f72211fde4e1c022b04df50724ed8080ad37","Len":2}', 1705393335); INSERT INTO public.action VALUES (3650, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2...53d1f72211fde4e1c022b04df50724ed8080ad37","Len":2}', 1705393335); INSERT INTO public.action VALUES (3651, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2...53d1f72211fde4e1c022b04df50724ed8080ad37","Len":2}', 1705393336); INSERT INTO public.action VALUES (3652, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2...53d1f72211fde4e1c022b04df50724ed8080ad37","Len":2}', 1705393336); INSERT INTO public.action VALUES (3653, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},{"Sha1":"ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6","Message":"fix odata QLLD_HoSo\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:20:25+07:00"}],"HeadCommit":{"Sha1":"53d1f72211fde4e1c022b04df50724ed8080ad37","Message":"Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:22:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2...53d1f72211fde4e1c022b04df50724ed8080ad37","Len":2}', 1705393336); INSERT INTO public.action VALUES (3654, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6...a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Len":1}', 1705394251); INSERT INTO public.action VALUES (3656, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6...a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Len":1}', 1705394251); INSERT INTO public.action VALUES (3657, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6...a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Len":1}', 1705394251); INSERT INTO public.action VALUES (3658, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6...a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Len":1}', 1705394251); INSERT INTO public.action VALUES (3659, 11, 7, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394272); INSERT INTO public.action VALUES (3660, 14, 7, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394272); INSERT INTO public.action VALUES (3661, 1, 7, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394272); INSERT INTO public.action VALUES (3662, 5, 7, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394272); INSERT INTO public.action VALUES (3663, 16, 7, 11, 21, 0, false, '', false, '102|fix hidden change year hoso', 1705394272); INSERT INTO public.action VALUES (3669, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/53d1f72211fde4e1c022b04df50724ed8080ad37...8eece73dc814f23997466b778c570a25145163df","Len":2}', 1705394332); INSERT INTO public.action VALUES (3670, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/53d1f72211fde4e1c022b04df50724ed8080ad37...8eece73dc814f23997466b778c570a25145163df","Len":2}', 1705394332); INSERT INTO public.action VALUES (3671, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/53d1f72211fde4e1c022b04df50724ed8080ad37...8eece73dc814f23997466b778c570a25145163df","Len":2}', 1705394332); INSERT INTO public.action VALUES (3915, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/88/head', false, '', 1705458371); INSERT INTO public.action VALUES (3916, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/88/head', false, '', 1705458371); INSERT INTO public.action VALUES (3917, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/88/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3672, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/53d1f72211fde4e1c022b04df50724ed8080ad37...8eece73dc814f23997466b778c570a25145163df","Len":2}', 1705394332); INSERT INTO public.action VALUES (3673, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},{"Sha1":"a2d31a4f4ea5f3e8278eb7a3f446302831381ddb","Message":"fix hidden change year hoso\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T15:37:24+07:00"}],"HeadCommit":{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/53d1f72211fde4e1c022b04df50724ed8080ad37...8eece73dc814f23997466b778c570a25145163df","Len":2}', 1705394332); INSERT INTO public.action VALUES (3679, 11, 7, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395693); INSERT INTO public.action VALUES (3680, 14, 7, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395693); INSERT INTO public.action VALUES (3681, 1, 7, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395693); INSERT INTO public.action VALUES (3682, 5, 7, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395693); INSERT INTO public.action VALUES (3683, 16, 7, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395693); INSERT INTO public.action VALUES (3689, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8eece73dc814f23997466b778c570a25145163df...cf4715110a114ad27e4779af22c58cfb819d78c9","Len":2}', 1705395802); INSERT INTO public.action VALUES (3690, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8eece73dc814f23997466b778c570a25145163df...cf4715110a114ad27e4779af22c58cfb819d78c9","Len":2}', 1705395802); INSERT INTO public.action VALUES (3691, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8eece73dc814f23997466b778c570a25145163df...cf4715110a114ad27e4779af22c58cfb819d78c9","Len":2}', 1705395802); INSERT INTO public.action VALUES (3918, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/88/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3919, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/88/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3926, 11, 7, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458410); INSERT INTO public.action VALUES (3927, 14, 7, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458410); INSERT INTO public.action VALUES (3674, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb...65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Len":1}', 1705395658); INSERT INTO public.action VALUES (3675, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb...65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Len":1}', 1705395658); INSERT INTO public.action VALUES (3676, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb...65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Len":1}', 1705395658); INSERT INTO public.action VALUES (3677, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb...65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Len":1}', 1705395658); INSERT INTO public.action VALUES (3678, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb...65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Len":1}', 1705395658); INSERT INTO public.action VALUES (3684, 11, 11, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395800); INSERT INTO public.action VALUES (3685, 14, 11, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395800); INSERT INTO public.action VALUES (3686, 1, 11, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395800); INSERT INTO public.action VALUES (3687, 5, 11, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395800); INSERT INTO public.action VALUES (3688, 16, 11, 11, 21, 0, false, '', false, '103|fix phan quyen', 1705395800); INSERT INTO public.action VALUES (3694, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/65e6485ae4926938a51adf2f31db4aeb6d7e7e41...6b059fd277af151a3e10327be3a8be3e4ba084a2","Len":1}', 1705396545); INSERT INTO public.action VALUES (3695, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/65e6485ae4926938a51adf2f31db4aeb6d7e7e41...6b059fd277af151a3e10327be3a8be3e4ba084a2","Len":1}', 1705396545); INSERT INTO public.action VALUES (3696, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/65e6485ae4926938a51adf2f31db4aeb6d7e7e41...6b059fd277af151a3e10327be3a8be3e4ba084a2","Len":1}', 1705396545); INSERT INTO public.action VALUES (3920, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/89/head', false, '', 1705458371); INSERT INTO public.action VALUES (3921, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/89/head', false, '', 1705458371); INSERT INTO public.action VALUES (3692, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8eece73dc814f23997466b778c570a25145163df...cf4715110a114ad27e4779af22c58cfb819d78c9","Len":2}', 1705395802); INSERT INTO public.action VALUES (3693, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"65e6485ae4926938a51adf2f31db4aeb6d7e7e41","Message":"fix phan quyen\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:00:51+07:00"}],"HeadCommit":{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8eece73dc814f23997466b778c570a25145163df...cf4715110a114ad27e4779af22c58cfb819d78c9","Len":2}', 1705395802); INSERT INTO public.action VALUES (3697, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/65e6485ae4926938a51adf2f31db4aeb6d7e7e41...6b059fd277af151a3e10327be3a8be3e4ba084a2","Len":1}', 1705396545); INSERT INTO public.action VALUES (3698, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/65e6485ae4926938a51adf2f31db4aeb6d7e7e41...6b059fd277af151a3e10327be3a8be3e4ba084a2","Len":1}', 1705396545); INSERT INTO public.action VALUES (3699, 11, 7, 11, 21, 0, false, '', false, '104|fix change page', 1705396611); INSERT INTO public.action VALUES (3700, 14, 7, 11, 21, 0, false, '', false, '104|fix change page', 1705396611); INSERT INTO public.action VALUES (3701, 1, 7, 11, 21, 0, false, '', false, '104|fix change page', 1705396611); INSERT INTO public.action VALUES (3702, 5, 7, 11, 21, 0, false, '', false, '104|fix change page', 1705396611); INSERT INTO public.action VALUES (3703, 16, 7, 11, 21, 0, false, '', false, '104|fix change page', 1705396611); INSERT INTO public.action VALUES (3704, 11, 11, 11, 21, 0, false, '', false, '104|fix change page', 1705396641); INSERT INTO public.action VALUES (3705, 14, 11, 11, 21, 0, false, '', false, '104|fix change page', 1705396641); INSERT INTO public.action VALUES (3706, 1, 11, 11, 21, 0, false, '', false, '104|fix change page', 1705396641); INSERT INTO public.action VALUES (3707, 5, 11, 11, 21, 0, false, '', false, '104|fix change page', 1705396641); INSERT INTO public.action VALUES (3708, 16, 11, 11, 21, 0, false, '', false, '104|fix change page', 1705396641); INSERT INTO public.action VALUES (3709, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cf4715110a114ad27e4779af22c58cfb819d78c9...645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Len":2}', 1705396642); INSERT INTO public.action VALUES (3710, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cf4715110a114ad27e4779af22c58cfb819d78c9...645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Len":2}', 1705396642); INSERT INTO public.action VALUES (3711, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cf4715110a114ad27e4779af22c58cfb819d78c9...645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Len":2}', 1705396642); INSERT INTO public.action VALUES (3719, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"}],"HeadCommit":{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3b268198277e3decd8a39c797a71e1379fc01f38...340a9c47ca2f986c9fc50a1471a84a66c36eec01","Len":1}', 1705396712); INSERT INTO public.action VALUES (3712, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cf4715110a114ad27e4779af22c58cfb819d78c9...645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Len":2}', 1705396642); INSERT INTO public.action VALUES (3713, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"6b059fd277af151a3e10327be3a8be3e4ba084a2","Message":"fix change page\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:15:37+07:00"}],"HeadCommit":{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/cf4715110a114ad27e4779af22c58cfb819d78c9...645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Len":2}', 1705396642); INSERT INTO public.action VALUES (3714, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6b059fd277af151a3e10327be3a8be3e4ba084a2...3b268198277e3decd8a39c797a71e1379fc01f38","Len":1}', 1705396657); INSERT INTO public.action VALUES (3715, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6b059fd277af151a3e10327be3a8be3e4ba084a2...3b268198277e3decd8a39c797a71e1379fc01f38","Len":1}', 1705396657); INSERT INTO public.action VALUES (3716, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6b059fd277af151a3e10327be3a8be3e4ba084a2...3b268198277e3decd8a39c797a71e1379fc01f38","Len":1}', 1705396657); INSERT INTO public.action VALUES (3717, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6b059fd277af151a3e10327be3a8be3e4ba084a2...3b268198277e3decd8a39c797a71e1379fc01f38","Len":1}', 1705396657); INSERT INTO public.action VALUES (3718, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6b059fd277af151a3e10327be3a8be3e4ba084a2...3b268198277e3decd8a39c797a71e1379fc01f38","Len":1}', 1705396657); INSERT INTO public.action VALUES (3842, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/76/head', false, '', 1705458370); INSERT INTO public.action VALUES (3845, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/76/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3846, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/76/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3847, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/76/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3848, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/77/head', false, '', 1705458370); INSERT INTO public.action VALUES (3720, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"}],"HeadCommit":{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3b268198277e3decd8a39c797a71e1379fc01f38...340a9c47ca2f986c9fc50a1471a84a66c36eec01","Len":1}', 1705396712); INSERT INTO public.action VALUES (3721, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"}],"HeadCommit":{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3b268198277e3decd8a39c797a71e1379fc01f38...340a9c47ca2f986c9fc50a1471a84a66c36eec01","Len":1}', 1705396712); INSERT INTO public.action VALUES (3722, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"}],"HeadCommit":{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3b268198277e3decd8a39c797a71e1379fc01f38...340a9c47ca2f986c9fc50a1471a84a66c36eec01","Len":1}', 1705396712); INSERT INTO public.action VALUES (3723, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"}],"HeadCommit":{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/3b268198277e3decd8a39c797a71e1379fc01f38...340a9c47ca2f986c9fc50a1471a84a66c36eec01","Len":1}', 1705396712); INSERT INTO public.action VALUES (3724, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"}],"HeadCommit":{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/340a9c47ca2f986c9fc50a1471a84a66c36eec01...5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Len":1}', 1705396820); INSERT INTO public.action VALUES (3725, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"}],"HeadCommit":{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/340a9c47ca2f986c9fc50a1471a84a66c36eec01...5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Len":1}', 1705396820); INSERT INTO public.action VALUES (3726, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"}],"HeadCommit":{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/340a9c47ca2f986c9fc50a1471a84a66c36eec01...5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Len":1}', 1705396820); INSERT INTO public.action VALUES (3727, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"}],"HeadCommit":{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/340a9c47ca2f986c9fc50a1471a84a66c36eec01...5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Len":1}', 1705396820); INSERT INTO public.action VALUES (3922, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/89/head', false, '', 1705458371); INSERT INTO public.action VALUES (3923, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/89/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3924, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/89/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3925, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/89/merge', false, '', 1705458371); INSERT INTO public.action VALUES (4001, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/70/head', false, '', 1705487770); INSERT INTO public.action VALUES (4002, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/70/head', false, '', 1705487770); INSERT INTO public.action VALUES (3728, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"}],"HeadCommit":{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/340a9c47ca2f986c9fc50a1471a84a66c36eec01...5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Len":1}', 1705396820); INSERT INTO public.action VALUES (3729, 11, 7, 11, 21, 0, false, '', false, '105|thinh', 1705396846); INSERT INTO public.action VALUES (3730, 14, 7, 11, 21, 0, false, '', false, '105|thinh', 1705396846); INSERT INTO public.action VALUES (3731, 1, 7, 11, 21, 0, false, '', false, '105|thinh', 1705396846); INSERT INTO public.action VALUES (3732, 5, 7, 11, 21, 0, false, '', false, '105|thinh', 1705396846); INSERT INTO public.action VALUES (3733, 16, 7, 11, 21, 0, false, '', false, '105|thinh', 1705396846); INSERT INTO public.action VALUES (3734, 11, 11, 11, 21, 0, false, '', false, '105|thinh', 1705396863); INSERT INTO public.action VALUES (3735, 14, 11, 11, 21, 0, false, '', false, '105|thinh', 1705396863); INSERT INTO public.action VALUES (3736, 1, 11, 11, 21, 0, false, '', false, '105|thinh', 1705396863); INSERT INTO public.action VALUES (3737, 5, 11, 11, 21, 0, false, '', false, '105|thinh', 1705396863); INSERT INTO public.action VALUES (3738, 16, 11, 11, 21, 0, false, '', false, '105|thinh', 1705396863); INSERT INTO public.action VALUES (3739, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2...d268ef005af0e0adcc49b9b4100f0479116d31d4","Len":4}', 1705396865); INSERT INTO public.action VALUES (3740, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2...d268ef005af0e0adcc49b9b4100f0479116d31d4","Len":4}', 1705396865); INSERT INTO public.action VALUES (3741, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2...d268ef005af0e0adcc49b9b4100f0479116d31d4","Len":4}', 1705396865); INSERT INTO public.action VALUES (3928, 1, 7, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458410); INSERT INTO public.action VALUES (3929, 5, 7, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458410); INSERT INTO public.action VALUES (3742, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2...d268ef005af0e0adcc49b9b4100f0479116d31d4","Len":4}', 1705396865); INSERT INTO public.action VALUES (3743, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f","Message":"hiddenLogin\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:20:14+07:00"},{"Sha1":"340a9c47ca2f986c9fc50a1471a84a66c36eec01","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:18:27+07:00"},{"Sha1":"3b268198277e3decd8a39c797a71e1379fc01f38","Message":"hidden file login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:17:31+07:00"}],"HeadCommit":{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2...d268ef005af0e0adcc49b9b4100f0479116d31d4","Len":4}', 1705396865); INSERT INTO public.action VALUES (3744, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"}],"HeadCommit":{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f...8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Len":106}', 1705397196); INSERT INTO public.action VALUES (3745, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"}],"HeadCommit":{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f...8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Len":106}', 1705397196); INSERT INTO public.action VALUES (3746, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"}],"HeadCommit":{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f...8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Len":106}', 1705397196); INSERT INTO public.action VALUES (3747, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"}],"HeadCommit":{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f...8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Len":106}', 1705397196); INSERT INTO public.action VALUES (3930, 16, 7, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458410); INSERT INTO public.action VALUES (4003, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/70/merge', false, '', 1705487770); INSERT INTO public.action VALUES (3748, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},{"Sha1":"d268ef005af0e0adcc49b9b4100f0479116d31d4","Message":"Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:20:58+07:00"},{"Sha1":"645b7c2b051a49e16e1ba1d5dd9af1918230b2c2","Message":"Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:17:15+07:00"},{"Sha1":"cf4715110a114ad27e4779af22c58cfb819d78c9","Message":"Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:03:13+07:00"},{"Sha1":"8eece73dc814f23997466b778c570a25145163df","Message":"Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T15:38:47+07:00"}],"HeadCommit":{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f...8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Len":106}', 1705397196); INSERT INTO public.action VALUES (3749, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"}],"HeadCommit":{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7...7650c10f1a92cffc96d99f4f9923dc49763c69c7","Len":1}', 1705397229); INSERT INTO public.action VALUES (3750, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"}],"HeadCommit":{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7...7650c10f1a92cffc96d99f4f9923dc49763c69c7","Len":1}', 1705397229); INSERT INTO public.action VALUES (3751, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"}],"HeadCommit":{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7...7650c10f1a92cffc96d99f4f9923dc49763c69c7","Len":1}', 1705397229); INSERT INTO public.action VALUES (3752, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"}],"HeadCommit":{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7...7650c10f1a92cffc96d99f4f9923dc49763c69c7","Len":1}', 1705397229); INSERT INTO public.action VALUES (3753, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"}],"HeadCommit":{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7...7650c10f1a92cffc96d99f4f9923dc49763c69c7","Len":1}', 1705397229); INSERT INTO public.action VALUES (3754, 11, 7, 11, 21, 0, false, '', false, '106|thinh', 1705397254); INSERT INTO public.action VALUES (3755, 14, 7, 11, 21, 0, false, '', false, '106|thinh', 1705397254); INSERT INTO public.action VALUES (3756, 1, 7, 11, 21, 0, false, '', false, '106|thinh', 1705397254); INSERT INTO public.action VALUES (3757, 5, 7, 11, 21, 0, false, '', false, '106|thinh', 1705397254); INSERT INTO public.action VALUES (3758, 16, 7, 11, 21, 0, false, '', false, '106|thinh', 1705397254); INSERT INTO public.action VALUES (3759, 11, 11, 11, 21, 0, false, '', false, '106|thinh', 1705397269); INSERT INTO public.action VALUES (3760, 14, 11, 11, 21, 0, false, '', false, '106|thinh', 1705397269); INSERT INTO public.action VALUES (3761, 1, 11, 11, 21, 0, false, '', false, '106|thinh', 1705397269); INSERT INTO public.action VALUES (3762, 5, 11, 11, 21, 0, false, '', false, '106|thinh', 1705397269); INSERT INTO public.action VALUES (3763, 16, 11, 11, 21, 0, false, '', false, '106|thinh', 1705397269); INSERT INTO public.action VALUES (3766, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"}],"HeadCommit":{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d268ef005af0e0adcc49b9b4100f0479116d31d4...f0f201ffadd72a9c710659316fad0c14ed6d69c1","Len":3}', 1705397271); INSERT INTO public.action VALUES (3764, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"}],"HeadCommit":{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d268ef005af0e0adcc49b9b4100f0479116d31d4...f0f201ffadd72a9c710659316fad0c14ed6d69c1","Len":3}', 1705397271); INSERT INTO public.action VALUES (3765, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"}],"HeadCommit":{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d268ef005af0e0adcc49b9b4100f0479116d31d4...f0f201ffadd72a9c710659316fad0c14ed6d69c1","Len":3}', 1705397271); INSERT INTO public.action VALUES (3769, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/92/head', false, '', 1705399569); INSERT INTO public.action VALUES (3770, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/92/head', false, '', 1705399569); INSERT INTO public.action VALUES (3771, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/92/head', false, '', 1705399570); INSERT INTO public.action VALUES (3772, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/92/merge', false, '', 1705399570); INSERT INTO public.action VALUES (3773, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/92/merge', false, '', 1705399570); INSERT INTO public.action VALUES (3774, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/92/merge', false, '', 1705399570); INSERT INTO public.action VALUES (3775, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/93/head', false, '', 1705399570); INSERT INTO public.action VALUES (3776, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/93/head', false, '', 1705399570); INSERT INTO public.action VALUES (3777, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/93/head', false, '', 1705399570); INSERT INTO public.action VALUES (3778, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/93/merge', false, '', 1705399570); INSERT INTO public.action VALUES (3779, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/93/merge', false, '', 1705399570); INSERT INTO public.action VALUES (3780, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/93/merge', false, '', 1705399570); INSERT INTO public.action VALUES (3781, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/94/head', false, '', 1705399570); INSERT INTO public.action VALUES (3782, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/94/head', false, '', 1705399570); INSERT INTO public.action VALUES (3783, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/94/head', false, '', 1705399570); INSERT INTO public.action VALUES (3784, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/94/merge', false, '', 1705399570); INSERT INTO public.action VALUES (3785, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/94/merge', false, '', 1705399570); INSERT INTO public.action VALUES (3786, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/94/merge', false, '', 1705399570); INSERT INTO public.action VALUES (3787, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/95/head', false, '', 1705399570); INSERT INTO public.action VALUES (3788, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/95/head', false, '', 1705399570); INSERT INTO public.action VALUES (3789, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/95/head', false, '', 1705399570); INSERT INTO public.action VALUES (3790, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/95/merge', false, '', 1705399570); INSERT INTO public.action VALUES (3791, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/95/merge', false, '', 1705399570); INSERT INTO public.action VALUES (3792, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/95/merge', false, '', 1705399570); INSERT INTO public.action VALUES (3767, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"}],"HeadCommit":{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d268ef005af0e0adcc49b9b4100f0479116d31d4...f0f201ffadd72a9c710659316fad0c14ed6d69c1","Len":3}', 1705397271); INSERT INTO public.action VALUES (3768, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},{"Sha1":"7650c10f1a92cffc96d99f4f9923dc49763c69c7","Message":"hidenn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:27:04+07:00"},{"Sha1":"8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","Message":"hidden login\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-16T16:26:26+07:00"}],"HeadCommit":{"Sha1":"f0f201ffadd72a9c710659316fad0c14ed6d69c1","Message":"Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-16T16:27:43+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d268ef005af0e0adcc49b9b4100f0479116d31d4...f0f201ffadd72a9c710659316fad0c14ed6d69c1","Len":3}', 1705397271); INSERT INTO public.action VALUES (3793, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},{"Sha1":"9251c7d4c42a1d4339704decd8b079937f34cfb7","Message":"DanhSachTrungCMND filter SoCCCD\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:23+07:00"},{"Sha1":"a7374329a01b74fd020df75c0afc197fbdebd58f","Message":"updaate\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T15:35:17+07:00"}],"HeadCommit":{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/25171a94c626223b0e72c8a83ce97b2af8680282...7c37978908457eed35a776de122d752d008605f5","Len":3}', 1705419371); INSERT INTO public.action VALUES (3794, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},{"Sha1":"9251c7d4c42a1d4339704decd8b079937f34cfb7","Message":"DanhSachTrungCMND filter SoCCCD\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:23+07:00"},{"Sha1":"a7374329a01b74fd020df75c0afc197fbdebd58f","Message":"updaate\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T15:35:17+07:00"}],"HeadCommit":{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/25171a94c626223b0e72c8a83ce97b2af8680282...7c37978908457eed35a776de122d752d008605f5","Len":3}', 1705419371); INSERT INTO public.action VALUES (3795, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},{"Sha1":"9251c7d4c42a1d4339704decd8b079937f34cfb7","Message":"DanhSachTrungCMND filter SoCCCD\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:23+07:00"},{"Sha1":"a7374329a01b74fd020df75c0afc197fbdebd58f","Message":"updaate\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T15:35:17+07:00"}],"HeadCommit":{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/25171a94c626223b0e72c8a83ce97b2af8680282...7c37978908457eed35a776de122d752d008605f5","Len":3}', 1705419371); INSERT INTO public.action VALUES (3931, 11, 11, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458437); INSERT INTO public.action VALUES (3932, 14, 11, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458437); INSERT INTO public.action VALUES (3933, 1, 11, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458437); INSERT INTO public.action VALUES (3796, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},{"Sha1":"9251c7d4c42a1d4339704decd8b079937f34cfb7","Message":"DanhSachTrungCMND filter SoCCCD\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:23+07:00"},{"Sha1":"a7374329a01b74fd020df75c0afc197fbdebd58f","Message":"updaate\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T15:35:17+07:00"}],"HeadCommit":{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/25171a94c626223b0e72c8a83ce97b2af8680282...7c37978908457eed35a776de122d752d008605f5","Len":3}', 1705419371); INSERT INTO public.action VALUES (3797, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},{"Sha1":"9251c7d4c42a1d4339704decd8b079937f34cfb7","Message":"DanhSachTrungCMND filter SoCCCD\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:23+07:00"},{"Sha1":"a7374329a01b74fd020df75c0afc197fbdebd58f","Message":"updaate\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T15:35:17+07:00"}],"HeadCommit":{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/25171a94c626223b0e72c8a83ce97b2af8680282...7c37978908457eed35a776de122d752d008605f5","Len":3}', 1705419371); INSERT INTO public.action VALUES (3798, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},{"Sha1":"9251c7d4c42a1d4339704decd8b079937f34cfb7","Message":"DanhSachTrungCMND filter SoCCCD\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:23+07:00"},{"Sha1":"a7374329a01b74fd020df75c0afc197fbdebd58f","Message":"updaate\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-16T15:35:17+07:00"}],"HeadCommit":{"Sha1":"7c37978908457eed35a776de122d752d008605f5","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"nghiakhanh@gmail.com","AuthorName":"Nguyễn Khánh Nghĩa","CommitterEmail":"nghiakhanh@gmail.com","CommitterName":"Nguyễn Khánh Nghĩa","Timestamp":"2024-01-16T15:45:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/25171a94c626223b0e72c8a83ce97b2af8680282...7c37978908457eed35a776de122d752d008605f5","Len":3}', 1705419371); INSERT INTO public.action VALUES (3799, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/90/head', false, '', 1705428971); INSERT INTO public.action VALUES (3800, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/90/head', false, '', 1705428971); INSERT INTO public.action VALUES (3801, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/90/head', false, '', 1705428971); INSERT INTO public.action VALUES (3802, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/90/merge', false, '', 1705428971); INSERT INTO public.action VALUES (3803, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/90/merge', false, '', 1705428971); INSERT INTO public.action VALUES (3804, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/90/merge', false, '', 1705428971); INSERT INTO public.action VALUES (3805, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/91/head', false, '', 1705428971); INSERT INTO public.action VALUES (3806, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/91/head', false, '', 1705428971); INSERT INTO public.action VALUES (3807, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/91/head', false, '', 1705428971); INSERT INTO public.action VALUES (3808, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/91/merge', false, '', 1705428971); INSERT INTO public.action VALUES (3809, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/91/merge', false, '', 1705428971); INSERT INTO public.action VALUES (3810, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/91/merge', false, '', 1705428971); INSERT INTO public.action VALUES (3811, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7650c10f1a92cffc96d99f4f9923dc49763c69c7...b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Len":1}', 1705457039); INSERT INTO public.action VALUES (3812, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7650c10f1a92cffc96d99f4f9923dc49763c69c7...b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Len":1}', 1705457039); INSERT INTO public.action VALUES (3934, 5, 11, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458437); INSERT INTO public.action VALUES (3935, 16, 11, 11, 21, 0, false, '', false, '108|fix gdnn', 1705458437); INSERT INTO public.action VALUES (3813, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7650c10f1a92cffc96d99f4f9923dc49763c69c7...b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Len":1}', 1705457039); INSERT INTO public.action VALUES (3814, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7650c10f1a92cffc96d99f4f9923dc49763c69c7...b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Len":1}', 1705457039); INSERT INTO public.action VALUES (3815, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/7650c10f1a92cffc96d99f4f9923dc49763c69c7...b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Len":1}', 1705457039); INSERT INTO public.action VALUES (3816, 11, 7, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457140); INSERT INTO public.action VALUES (3817, 14, 7, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457140); INSERT INTO public.action VALUES (3818, 1, 7, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457140); INSERT INTO public.action VALUES (3819, 5, 7, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457140); INSERT INTO public.action VALUES (3820, 16, 7, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457140); INSERT INTO public.action VALUES (3821, 11, 11, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457157); INSERT INTO public.action VALUES (3822, 14, 11, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457157); INSERT INTO public.action VALUES (3823, 1, 11, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457157); INSERT INTO public.action VALUES (3824, 5, 11, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457157); INSERT INTO public.action VALUES (3825, 16, 11, 11, 21, 0, false, '', false, '107|fix trang thai ho so', 1705457157); INSERT INTO public.action VALUES (3826, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f0f201ffadd72a9c710659316fad0c14ed6d69c1...8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Len":2}', 1705457159); INSERT INTO public.action VALUES (3827, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f0f201ffadd72a9c710659316fad0c14ed6d69c1...8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Len":2}', 1705457159); INSERT INTO public.action VALUES (3843, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872...8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Len":1}', 1705458370); INSERT INTO public.action VALUES (3956, 11, 11, 11, 21, 0, false, '', false, '109|thinh', 1705463232); INSERT INTO public.action VALUES (3957, 14, 11, 11, 21, 0, false, '', false, '109|thinh', 1705463232); INSERT INTO public.action VALUES (3958, 1, 11, 11, 21, 0, false, '', false, '109|thinh', 1705463232); INSERT INTO public.action VALUES (3959, 5, 11, 11, 21, 0, false, '', false, '109|thinh', 1705463232); INSERT INTO public.action VALUES (3828, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f0f201ffadd72a9c710659316fad0c14ed6d69c1...8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Len":2}', 1705457159); INSERT INTO public.action VALUES (3829, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f0f201ffadd72a9c710659316fad0c14ed6d69c1...8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Len":2}', 1705457159); INSERT INTO public.action VALUES (3830, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},{"Sha1":"b51a2a2db8b6c480c487c33ce3cad9f3e94bb872","Message":"fix trang thai ho so\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:03:49+07:00"}],"HeadCommit":{"Sha1":"8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Message":"Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:05:51+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/f0f201ffadd72a9c710659316fad0c14ed6d69c1...8151ab7ce5fcfdf01ceb05db6de7cea9190aff45","Len":2}', 1705457159); INSERT INTO public.action VALUES (3831, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/75/head', false, '', 1705458370); INSERT INTO public.action VALUES (3832, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/75/head', false, '', 1705458370); INSERT INTO public.action VALUES (3833, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/75/head', false, '', 1705458370); INSERT INTO public.action VALUES (3834, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/75/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3835, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/75/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3836, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/75/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3837, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872...8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Len":1}', 1705458370); INSERT INTO public.action VALUES (3838, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872...8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Len":1}', 1705458370); INSERT INTO public.action VALUES (3839, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/76/head', false, '', 1705458370); INSERT INTO public.action VALUES (3840, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/76/head', false, '', 1705458370); INSERT INTO public.action VALUES (3841, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872...8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Len":1}', 1705458370); INSERT INTO public.action VALUES (3960, 16, 11, 11, 21, 0, false, '', false, '109|thinh', 1705463232); INSERT INTO public.action VALUES (3844, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872...8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Len":1}', 1705458370); INSERT INTO public.action VALUES (3858, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/78/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3859, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/78/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3860, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/79/head', false, '', 1705458370); INSERT INTO public.action VALUES (3861, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/79/head', false, '', 1705458370); INSERT INTO public.action VALUES (3862, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/79/head', false, '', 1705458370); INSERT INTO public.action VALUES (3863, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/79/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3864, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/79/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3865, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/79/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3866, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/80/head', false, '', 1705458370); INSERT INTO public.action VALUES (3867, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/80/head', false, '', 1705458370); INSERT INTO public.action VALUES (3868, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/80/head', false, '', 1705458370); INSERT INTO public.action VALUES (3869, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/80/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3870, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/80/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3871, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/80/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3872, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/81/head', false, '', 1705458370); INSERT INTO public.action VALUES (3873, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/81/head', false, '', 1705458370); INSERT INTO public.action VALUES (3874, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/81/head', false, '', 1705458370); INSERT INTO public.action VALUES (3875, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/81/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3876, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/81/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3877, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/81/merge', false, '', 1705458370); INSERT INTO public.action VALUES (3878, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/82/head', false, '', 1705458370); INSERT INTO public.action VALUES (3879, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/82/head', false, '', 1705458370); INSERT INTO public.action VALUES (3880, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/82/head', false, '', 1705458371); INSERT INTO public.action VALUES (3881, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/82/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3882, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/82/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3883, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/82/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3884, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/83/head', false, '', 1705458371); INSERT INTO public.action VALUES (3885, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/83/head', false, '', 1705458371); INSERT INTO public.action VALUES (3886, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/83/head', false, '', 1705458371); INSERT INTO public.action VALUES (3887, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/83/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3888, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/83/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3889, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/83/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3890, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/84/head', false, '', 1705458371); INSERT INTO public.action VALUES (3891, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/84/head', false, '', 1705458371); INSERT INTO public.action VALUES (3892, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/84/head', false, '', 1705458371); INSERT INTO public.action VALUES (3893, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/84/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3894, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/84/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3895, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/84/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3896, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/85/head', false, '', 1705458371); INSERT INTO public.action VALUES (3897, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/85/head', false, '', 1705458371); INSERT INTO public.action VALUES (3898, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/85/head', false, '', 1705458371); INSERT INTO public.action VALUES (3899, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/85/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3900, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/85/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3901, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/85/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3902, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/86/head', false, '', 1705458371); INSERT INTO public.action VALUES (3903, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/86/head', false, '', 1705458371); INSERT INTO public.action VALUES (3904, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/86/head', false, '', 1705458371); INSERT INTO public.action VALUES (3905, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/86/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3906, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/86/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3907, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/86/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3908, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/87/head', false, '', 1705458371); INSERT INTO public.action VALUES (3909, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/87/head', false, '', 1705458371); INSERT INTO public.action VALUES (3910, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/87/head', false, '', 1705458371); INSERT INTO public.action VALUES (3911, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/87/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3912, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/87/merge', false, '', 1705458371); INSERT INTO public.action VALUES (3936, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45...99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Len":2}', 1705458437); INSERT INTO public.action VALUES (3937, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45...99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Len":2}', 1705458437); INSERT INTO public.action VALUES (3938, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45...99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Len":2}', 1705458437); INSERT INTO public.action VALUES (3939, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45...99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Len":2}', 1705458438); INSERT INTO public.action VALUES (3940, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},{"Sha1":"8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8","Message":"fix gdnn\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T09:26:01+07:00"}],"HeadCommit":{"Sha1":"99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Message":"Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T09:27:11+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45...99934589e07a2e5021fb88d8e95cd0701a3c3d8f","Len":2}', 1705458438); INSERT INTO public.action VALUES (3941, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8...07dd78834b58c799d0db70d99f863dda643572aa","Len":1}', 1705463095); INSERT INTO public.action VALUES (4004, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/70/merge', false, '', 1705487770); INSERT INTO public.action VALUES (4005, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/70/merge', false, '', 1705487770); INSERT INTO public.action VALUES (3942, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8...07dd78834b58c799d0db70d99f863dda643572aa","Len":1}', 1705463095); INSERT INTO public.action VALUES (3943, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8...07dd78834b58c799d0db70d99f863dda643572aa","Len":1}', 1705463095); INSERT INTO public.action VALUES (3944, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8...07dd78834b58c799d0db70d99f863dda643572aa","Len":1}', 1705463095); INSERT INTO public.action VALUES (3945, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8...07dd78834b58c799d0db70d99f863dda643572aa","Len":1}', 1705463095); INSERT INTO public.action VALUES (3946, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"}],"HeadCommit":{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07dd78834b58c799d0db70d99f863dda643572aa...e3fb0e313b51381d7d07b910bfed3963036f3119","Len":1}', 1705463112); INSERT INTO public.action VALUES (3947, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"}],"HeadCommit":{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07dd78834b58c799d0db70d99f863dda643572aa...e3fb0e313b51381d7d07b910bfed3963036f3119","Len":1}', 1705463112); INSERT INTO public.action VALUES (3948, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"}],"HeadCommit":{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07dd78834b58c799d0db70d99f863dda643572aa...e3fb0e313b51381d7d07b910bfed3963036f3119","Len":1}', 1705463112); INSERT INTO public.action VALUES (3949, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"}],"HeadCommit":{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07dd78834b58c799d0db70d99f863dda643572aa...e3fb0e313b51381d7d07b910bfed3963036f3119","Len":1}', 1705463112); INSERT INTO public.action VALUES (4006, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/71/head', false, '', 1705487770); INSERT INTO public.action VALUES (4007, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/71/head', false, '', 1705487770); INSERT INTO public.action VALUES (4008, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/71/head', false, '', 1705487770); INSERT INTO public.action VALUES (4009, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/71/merge', false, '', 1705487770); INSERT INTO public.action VALUES (4010, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/71/merge', false, '', 1705487770); INSERT INTO public.action VALUES (4011, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/71/merge', false, '', 1705487770); INSERT INTO public.action VALUES (3950, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"}],"HeadCommit":{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/07dd78834b58c799d0db70d99f863dda643572aa...e3fb0e313b51381d7d07b910bfed3963036f3119","Len":1}', 1705463112); INSERT INTO public.action VALUES (3951, 11, 7, 11, 21, 0, false, '', false, '109|thinh', 1705463150); INSERT INTO public.action VALUES (3952, 14, 7, 11, 21, 0, false, '', false, '109|thinh', 1705463150); INSERT INTO public.action VALUES (3953, 1, 7, 11, 21, 0, false, '', false, '109|thinh', 1705463150); INSERT INTO public.action VALUES (3954, 5, 7, 11, 21, 0, false, '', false, '109|thinh', 1705463150); INSERT INTO public.action VALUES (3955, 16, 7, 11, 21, 0, false, '', false, '109|thinh', 1705463150); INSERT INTO public.action VALUES (3961, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99934589e07a2e5021fb88d8e95cd0701a3c3d8f...d27bbd1a398cd332a453a4301f2539d4741f4829","Len":3}', 1705463233); INSERT INTO public.action VALUES (3962, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99934589e07a2e5021fb88d8e95cd0701a3c3d8f...d27bbd1a398cd332a453a4301f2539d4741f4829","Len":3}', 1705463233); INSERT INTO public.action VALUES (3963, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99934589e07a2e5021fb88d8e95cd0701a3c3d8f...d27bbd1a398cd332a453a4301f2539d4741f4829","Len":3}', 1705463233); INSERT INTO public.action VALUES (3964, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99934589e07a2e5021fb88d8e95cd0701a3c3d8f...d27bbd1a398cd332a453a4301f2539d4741f4829","Len":3}', 1705463233); INSERT INTO public.action VALUES (3974, 14, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},{"Sha1":"032f5653d1f00c12ee7afa5e20bfed87acf17720","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:29+07:00"}],"HeadCommit":{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7c37978908457eed35a776de122d752d008605f5...fdee172356b6f9f25ce145921047bafcb1d2e5ca","Len":2}', 1705478171); INSERT INTO public.action VALUES (4012, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/72/head', false, '', 1705487770); INSERT INTO public.action VALUES (3965, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},{"Sha1":"e3fb0e313b51381d7d07b910bfed3963036f3119","Message":"fix info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:45:03+07:00"},{"Sha1":"07dd78834b58c799d0db70d99f863dda643572aa","Message":"fĩ loi info nld\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-17T10:44:44+07:00"}],"HeadCommit":{"Sha1":"d27bbd1a398cd332a453a4301f2539d4741f4829","Message":"Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-17T10:47:06+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/99934589e07a2e5021fb88d8e95cd0701a3c3d8f...d27bbd1a398cd332a453a4301f2539d4741f4829","Len":3}', 1705463233); INSERT INTO public.action VALUES (3966, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286); INSERT INTO public.action VALUES (3967, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286); INSERT INTO public.action VALUES (3968, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286); INSERT INTO public.action VALUES (3969, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286); INSERT INTO public.action VALUES (3970, 11, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286); INSERT INTO public.action VALUES (3971, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286); INSERT INTO public.action VALUES (3972, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286); INSERT INTO public.action VALUES (3973, 16, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"}],"HeadCommit":{"Sha1":"33d9644ce9d08b8550b3ee8335c8a3024b60b342","Message":"update model\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-17T11:37:54+07:00"},"CompareURL":"khieu-nai/backend/compare/374020590f53026b266de0bc639429e3a2498848...33d9644ce9d08b8550b3ee8335c8a3024b60b342","Len":1}', 1705466286); INSERT INTO public.action VALUES (3975, 2, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},{"Sha1":"032f5653d1f00c12ee7afa5e20bfed87acf17720","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:29+07:00"}],"HeadCommit":{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7c37978908457eed35a776de122d752d008605f5...fdee172356b6f9f25ce145921047bafcb1d2e5ca","Len":2}', 1705478171); INSERT INTO public.action VALUES (3976, 1, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},{"Sha1":"032f5653d1f00c12ee7afa5e20bfed87acf17720","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:29+07:00"}],"HeadCommit":{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7c37978908457eed35a776de122d752d008605f5...fdee172356b6f9f25ce145921047bafcb1d2e5ca","Len":2}', 1705478171); INSERT INTO public.action VALUES (3977, 11, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},{"Sha1":"032f5653d1f00c12ee7afa5e20bfed87acf17720","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:29+07:00"}],"HeadCommit":{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7c37978908457eed35a776de122d752d008605f5...fdee172356b6f9f25ce145921047bafcb1d2e5ca","Len":2}', 1705478171); INSERT INTO public.action VALUES (3978, 5, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},{"Sha1":"032f5653d1f00c12ee7afa5e20bfed87acf17720","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:29+07:00"}],"HeadCommit":{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7c37978908457eed35a776de122d752d008605f5...fdee172356b6f9f25ce145921047bafcb1d2e5ca","Len":2}', 1705478171); INSERT INTO public.action VALUES (3979, 16, 18, 14, 22, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},{"Sha1":"032f5653d1f00c12ee7afa5e20bfed87acf17720","Message":"update\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:29+07:00"}],"HeadCommit":{"Sha1":"fdee172356b6f9f25ce145921047bafcb1d2e5ca","Message":"Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend\n","AuthorEmail":"datqn1234@gmail.com","AuthorName":"lqdat","CommitterEmail":"datqn1234@gmail.com","CommitterName":"lqdat","Timestamp":"2024-01-17T08:57:33+07:00"},"CompareURL":"giao-duc-nghe-nghiep/backend/compare/7c37978908457eed35a776de122d752d008605f5...fdee172356b6f9f25ce145921047bafcb1d2e5ca","Len":2}', 1705478171); INSERT INTO public.action VALUES (3980, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458); INSERT INTO public.action VALUES (3981, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458); INSERT INTO public.action VALUES (3999, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/69/merge', false, '', 1705487770); INSERT INTO public.action VALUES (4000, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/70/head', false, '', 1705487770); INSERT INTO public.action VALUES (3982, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458); INSERT INTO public.action VALUES (3983, 11, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458); INSERT INTO public.action VALUES (3984, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458); INSERT INTO public.action VALUES (3985, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458); INSERT INTO public.action VALUES (3986, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458); INSERT INTO public.action VALUES (3987, 16, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},{"Sha1":"8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b","Message":"fix: custom size\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:21+07:00"}],"HeadCommit":{"Sha1":"b318e95abca38bb86e087afc220a10355787887d","Message":"Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-17T16:57:29+07:00"},"CompareURL":"khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d","Len":2}', 1705485458); INSERT INTO public.action VALUES (3988, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/68/head', false, '', 1705487770); INSERT INTO public.action VALUES (3989, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/68/head', false, '', 1705487770); INSERT INTO public.action VALUES (3990, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/68/head', false, '', 1705487770); INSERT INTO public.action VALUES (3991, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/68/merge', false, '', 1705487770); INSERT INTO public.action VALUES (3992, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/68/merge', false, '', 1705487770); INSERT INTO public.action VALUES (3993, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/68/merge', false, '', 1705487770); INSERT INTO public.action VALUES (3994, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/69/head', false, '', 1705487770); INSERT INTO public.action VALUES (3995, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/69/head', false, '', 1705487770); INSERT INTO public.action VALUES (3996, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/69/head', false, '', 1705487770); INSERT INTO public.action VALUES (3997, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/69/merge', false, '', 1705487770); INSERT INTO public.action VALUES (3998, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/69/merge', false, '', 1705487770); INSERT INTO public.action VALUES (4013, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/72/head', false, '', 1705487770); INSERT INTO public.action VALUES (4014, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/72/head', false, '', 1705487770); INSERT INTO public.action VALUES (4015, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/72/merge', false, '', 1705487770); INSERT INTO public.action VALUES (4016, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/72/merge', false, '', 1705487770); INSERT INTO public.action VALUES (4017, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/72/merge', false, '', 1705487770); INSERT INTO public.action VALUES (4018, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/73/head', false, '', 1705487770); INSERT INTO public.action VALUES (4019, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/73/head', false, '', 1705487770); INSERT INTO public.action VALUES (4020, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/73/head', false, '', 1705487770); INSERT INTO public.action VALUES (4021, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/73/merge', false, '', 1705487770); INSERT INTO public.action VALUES (4022, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/73/merge', false, '', 1705487770); INSERT INTO public.action VALUES (4023, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/73/merge', false, '', 1705487770); INSERT INTO public.action VALUES (4024, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/74/head', false, '', 1705487770); INSERT INTO public.action VALUES (4025, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/74/head', false, '', 1705487770); INSERT INTO public.action VALUES (4026, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/74/head', false, '', 1705487770); INSERT INTO public.action VALUES (4027, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/74/merge', false, '', 1705487770); INSERT INTO public.action VALUES (4028, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/74/merge', false, '', 1705487770); INSERT INTO public.action VALUES (4029, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/74/merge', false, '', 1705487770); INSERT INTO public.action VALUES (4030, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/62/head', false, '', 1705517170); INSERT INTO public.action VALUES (4031, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/62/head', false, '', 1705517170); INSERT INTO public.action VALUES (4032, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/62/head', false, '', 1705517170); INSERT INTO public.action VALUES (4033, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/62/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4034, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/62/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4035, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/62/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4036, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/63/head', false, '', 1705517170); INSERT INTO public.action VALUES (4037, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/63/head', false, '', 1705517170); INSERT INTO public.action VALUES (4038, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/63/head', false, '', 1705517170); INSERT INTO public.action VALUES (4039, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/63/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4040, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/63/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4041, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/63/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4042, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/64/head', false, '', 1705517170); INSERT INTO public.action VALUES (4043, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/64/head', false, '', 1705517170); INSERT INTO public.action VALUES (4044, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/64/head', false, '', 1705517170); INSERT INTO public.action VALUES (4045, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/64/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4046, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/64/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4047, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/64/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4048, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/65/head', false, '', 1705517170); INSERT INTO public.action VALUES (4049, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/65/head', false, '', 1705517170); INSERT INTO public.action VALUES (4050, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/65/head', false, '', 1705517170); INSERT INTO public.action VALUES (4051, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/65/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4052, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/65/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4053, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/65/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4054, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/66/head', false, '', 1705517170); INSERT INTO public.action VALUES (4055, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/66/head', false, '', 1705517170); INSERT INTO public.action VALUES (4056, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/66/head', false, '', 1705517170); INSERT INTO public.action VALUES (4057, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/66/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4058, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/66/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4059, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/66/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4060, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/67/head', false, '', 1705517170); INSERT INTO public.action VALUES (4061, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/67/head', false, '', 1705517170); INSERT INTO public.action VALUES (4062, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/67/head', false, '', 1705517170); INSERT INTO public.action VALUES (4063, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/67/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4064, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/67/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4065, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/67/merge', false, '', 1705517170); INSERT INTO public.action VALUES (4066, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/49/head', false, '', 1705546571); INSERT INTO public.action VALUES (4067, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/49/head', false, '', 1705546571); INSERT INTO public.action VALUES (4068, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/49/head', false, '', 1705546571); INSERT INTO public.action VALUES (4069, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/49/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4070, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/49/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4071, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/49/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4072, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/50/head', false, '', 1705546571); INSERT INTO public.action VALUES (4073, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/50/head', false, '', 1705546571); INSERT INTO public.action VALUES (4074, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/50/head', false, '', 1705546571); INSERT INTO public.action VALUES (4075, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/50/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4076, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/50/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4077, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/50/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4078, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/51/head', false, '', 1705546571); INSERT INTO public.action VALUES (4079, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/51/head', false, '', 1705546571); INSERT INTO public.action VALUES (4080, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/51/head', false, '', 1705546571); INSERT INTO public.action VALUES (4081, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/51/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4082, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/51/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4083, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/51/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4084, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/52/head', false, '', 1705546571); INSERT INTO public.action VALUES (4085, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/52/head', false, '', 1705546571); INSERT INTO public.action VALUES (4086, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/52/head', false, '', 1705546571); INSERT INTO public.action VALUES (4087, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/52/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4088, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/52/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4089, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/52/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4090, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/53/head', false, '', 1705546571); INSERT INTO public.action VALUES (4091, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/53/head', false, '', 1705546571); INSERT INTO public.action VALUES (4092, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/53/head', false, '', 1705546571); INSERT INTO public.action VALUES (4093, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/53/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4094, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/53/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4095, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/53/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4096, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/54/head', false, '', 1705546571); INSERT INTO public.action VALUES (4097, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/54/head', false, '', 1705546571); INSERT INTO public.action VALUES (4098, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/54/head', false, '', 1705546571); INSERT INTO public.action VALUES (4099, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/54/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4100, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/54/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4101, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/54/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4102, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/55/head', false, '', 1705546571); INSERT INTO public.action VALUES (4103, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/55/head', false, '', 1705546571); INSERT INTO public.action VALUES (4104, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/55/head', false, '', 1705546571); INSERT INTO public.action VALUES (4105, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/55/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4106, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/55/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4107, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/55/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4108, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/56/head', false, '', 1705546571); INSERT INTO public.action VALUES (4109, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/56/head', false, '', 1705546571); INSERT INTO public.action VALUES (4110, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/56/head', false, '', 1705546571); INSERT INTO public.action VALUES (4111, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/56/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4112, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/56/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4113, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/56/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4114, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/57/head', false, '', 1705546571); INSERT INTO public.action VALUES (4115, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/57/head', false, '', 1705546571); INSERT INTO public.action VALUES (4116, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/57/head', false, '', 1705546571); INSERT INTO public.action VALUES (4117, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/57/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4118, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/57/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4119, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/57/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4120, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/58/head', false, '', 1705546571); INSERT INTO public.action VALUES (4121, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/58/head', false, '', 1705546571); INSERT INTO public.action VALUES (4122, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/58/head', false, '', 1705546571); INSERT INTO public.action VALUES (4123, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/58/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4124, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/58/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4125, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/58/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4126, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/59/head', false, '', 1705546571); INSERT INTO public.action VALUES (4127, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/59/head', false, '', 1705546571); INSERT INTO public.action VALUES (4128, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/59/head', false, '', 1705546571); INSERT INTO public.action VALUES (4129, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/59/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4130, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/59/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4131, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/59/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4132, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/60/head', false, '', 1705546571); INSERT INTO public.action VALUES (4133, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/60/head', false, '', 1705546571); INSERT INTO public.action VALUES (4134, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/60/head', false, '', 1705546571); INSERT INTO public.action VALUES (4135, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/60/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4136, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/60/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4137, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/60/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4138, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/61/head', false, '', 1705546571); INSERT INTO public.action VALUES (4139, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/61/head', false, '', 1705546571); INSERT INTO public.action VALUES (4140, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/61/head', false, '', 1705546571); INSERT INTO public.action VALUES (4141, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/61/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4142, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/61/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4143, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/61/merge', false, '', 1705546571); INSERT INTO public.action VALUES (4144, 2, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171); INSERT INTO public.action VALUES (4145, 12, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171); INSERT INTO public.action VALUES (4146, 1, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171); INSERT INTO public.action VALUES (4147, 11, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171); INSERT INTO public.action VALUES (4148, 15, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171); INSERT INTO public.action VALUES (4149, 5, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171); INSERT INTO public.action VALUES (4150, 9, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171); INSERT INTO public.action VALUES (4151, 16, 5, 2, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"}],"HeadCommit":{"Sha1":"f9614b0b54ea4166a9274f5c737dc61322fa9933","Message":"feat: update model, service for CanBo\n","AuthorEmail":"tuan1996qn@gmail.com","AuthorName":"vantuan","CommitterEmail":"tuan1996qn@gmail.com","CommitterName":"vantuan","Timestamp":"2024-01-18T10:05:58+07:00"},"CompareURL":"khieu-nai/admin/compare/b318e95abca38bb86e087afc220a10355787887d...f9614b0b54ea4166a9274f5c737dc61322fa9933","Len":1}', 1705547171); INSERT INTO public.action VALUES (4174, 16, 11, 11, 21, 0, false, '', false, '110|update bug', 1705561434); INSERT INTO public.action VALUES (4239, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/37/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4240, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/37/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4152, 15, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955); INSERT INTO public.action VALUES (4153, 12, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955); INSERT INTO public.action VALUES (4154, 2, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955); INSERT INTO public.action VALUES (4155, 1, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955); INSERT INTO public.action VALUES (4156, 11, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955); INSERT INTO public.action VALUES (4157, 5, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955); INSERT INTO public.action VALUES (4230, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/36/head', false, '', 1705575513); INSERT INTO public.action VALUES (4158, 9, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955); INSERT INTO public.action VALUES (4159, 16, 5, 15, 26, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},{"Sha1":"9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62","Message":"add pp\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:08:36+07:00"},{"Sha1":"c8b7fe342b6bec24bb2301d59eb7b5001a1343fd","Message":"add form\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-17T16:57:44+07:00"}],"HeadCommit":{"Sha1":"814c2834abecae300e8f733df62b8c2d0e7f835f","Message":"service\n","AuthorEmail":"it.nguyenchihoa@gmail.com","AuthorName":"Nguyen Chi Hoa","CommitterEmail":"it.nguyenchihoa@gmail.com","CommitterName":"Nguyen Chi Hoa","Timestamp":"2024-01-18T10:19:04+07:00"},"CompareURL":"khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f","Len":3}', 1705547955); INSERT INTO public.action VALUES (4160, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3fb0e313b51381d7d07b910bfed3963036f3119...dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Len":1}', 1705561356); INSERT INTO public.action VALUES (4161, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3fb0e313b51381d7d07b910bfed3963036f3119...dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Len":1}', 1705561356); INSERT INTO public.action VALUES (4162, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3fb0e313b51381d7d07b910bfed3963036f3119...dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Len":1}', 1705561356); INSERT INTO public.action VALUES (4163, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3fb0e313b51381d7d07b910bfed3963036f3119...dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Len":1}', 1705561356); INSERT INTO public.action VALUES (4164, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3fb0e313b51381d7d07b910bfed3963036f3119...dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Len":1}', 1705561356); INSERT INTO public.action VALUES (4165, 11, 7, 11, 21, 0, false, '', false, '110|update bug', 1705561418); INSERT INTO public.action VALUES (4166, 14, 7, 11, 21, 0, false, '', false, '110|update bug', 1705561418); INSERT INTO public.action VALUES (4167, 1, 7, 11, 21, 0, false, '', false, '110|update bug', 1705561418); INSERT INTO public.action VALUES (4168, 5, 7, 11, 21, 0, false, '', false, '110|update bug', 1705561418); INSERT INTO public.action VALUES (4169, 16, 7, 11, 21, 0, false, '', false, '110|update bug', 1705561418); INSERT INTO public.action VALUES (4170, 11, 11, 11, 21, 0, false, '', false, '110|update bug', 1705561434); INSERT INTO public.action VALUES (4171, 14, 11, 11, 21, 0, false, '', false, '110|update bug', 1705561434); INSERT INTO public.action VALUES (4172, 1, 11, 11, 21, 0, false, '', false, '110|update bug', 1705561434); INSERT INTO public.action VALUES (4173, 5, 11, 11, 21, 0, false, '', false, '110|update bug', 1705561434); INSERT INTO public.action VALUES (4175, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d27bbd1a398cd332a453a4301f2539d4741f4829...6ae7b846816d579b60abebb037d74ce8e8d332df","Len":2}', 1705561435); INSERT INTO public.action VALUES (4176, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d27bbd1a398cd332a453a4301f2539d4741f4829...6ae7b846816d579b60abebb037d74ce8e8d332df","Len":2}', 1705561435); INSERT INTO public.action VALUES (4177, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d27bbd1a398cd332a453a4301f2539d4741f4829...6ae7b846816d579b60abebb037d74ce8e8d332df","Len":2}', 1705561435); INSERT INTO public.action VALUES (4178, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d27bbd1a398cd332a453a4301f2539d4741f4829...6ae7b846816d579b60abebb037d74ce8e8d332df","Len":2}', 1705561435); INSERT INTO public.action VALUES (4179, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},{"Sha1":"dc9b1cd7ec18ad4fed9579e27f394b14858c3cde","Message":"update bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:02:26+07:00"}],"HeadCommit":{"Sha1":"6ae7b846816d579b60abebb037d74ce8e8d332df","Message":"Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:03:48+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/d27bbd1a398cd332a453a4301f2539d4741f4829...6ae7b846816d579b60abebb037d74ce8e8d332df","Len":2}', 1705561435); INSERT INTO public.action VALUES (4180, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde...0fcc16b3a944af679c58d4542042b1e00f05572d","Len":1}', 1705561817); INSERT INTO public.action VALUES (4231, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/36/head', false, '', 1705575513); INSERT INTO public.action VALUES (4232, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/36/head', false, '', 1705575513); INSERT INTO public.action VALUES (4181, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde...0fcc16b3a944af679c58d4542042b1e00f05572d","Len":1}', 1705561817); INSERT INTO public.action VALUES (4182, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde...0fcc16b3a944af679c58d4542042b1e00f05572d","Len":1}', 1705561817); INSERT INTO public.action VALUES (4183, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde...0fcc16b3a944af679c58d4542042b1e00f05572d","Len":1}', 1705561817); INSERT INTO public.action VALUES (4184, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde...0fcc16b3a944af679c58d4542042b1e00f05572d","Len":1}', 1705561817); INSERT INTO public.action VALUES (4185, 11, 7, 11, 21, 0, false, '', false, '111|fix bug', 1705561837); INSERT INTO public.action VALUES (4186, 14, 7, 11, 21, 0, false, '', false, '111|fix bug', 1705561837); INSERT INTO public.action VALUES (4187, 1, 7, 11, 21, 0, false, '', false, '111|fix bug', 1705561837); INSERT INTO public.action VALUES (4188, 5, 7, 11, 21, 0, false, '', false, '111|fix bug', 1705561837); INSERT INTO public.action VALUES (4189, 16, 7, 11, 21, 0, false, '', false, '111|fix bug', 1705561837); INSERT INTO public.action VALUES (4190, 11, 11, 11, 21, 0, false, '', false, '111|fix bug', 1705561863); INSERT INTO public.action VALUES (4191, 14, 11, 11, 21, 0, false, '', false, '111|fix bug', 1705561863); INSERT INTO public.action VALUES (4192, 1, 11, 11, 21, 0, false, '', false, '111|fix bug', 1705561863); INSERT INTO public.action VALUES (4193, 5, 11, 11, 21, 0, false, '', false, '111|fix bug', 1705561863); INSERT INTO public.action VALUES (4194, 16, 11, 11, 21, 0, false, '', false, '111|fix bug', 1705561863); INSERT INTO public.action VALUES (4195, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6ae7b846816d579b60abebb037d74ce8e8d332df...e3af78fc47531563603cb74b00a581af88476433","Len":2}', 1705561864); INSERT INTO public.action VALUES (4196, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6ae7b846816d579b60abebb037d74ce8e8d332df...e3af78fc47531563603cb74b00a581af88476433","Len":2}', 1705561864); INSERT INTO public.action VALUES (4233, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/36/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4234, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/36/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4235, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/36/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4236, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/37/head', false, '', 1705575513); INSERT INTO public.action VALUES (4237, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/37/head', false, '', 1705575513); INSERT INTO public.action VALUES (4238, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/37/head', false, '', 1705575513); INSERT INTO public.action VALUES (4197, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6ae7b846816d579b60abebb037d74ce8e8d332df...e3af78fc47531563603cb74b00a581af88476433","Len":2}', 1705561864); INSERT INTO public.action VALUES (4198, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6ae7b846816d579b60abebb037d74ce8e8d332df...e3af78fc47531563603cb74b00a581af88476433","Len":2}', 1705561864); INSERT INTO public.action VALUES (4199, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},{"Sha1":"0fcc16b3a944af679c58d4542042b1e00f05572d","Message":"fix bug\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-18T14:10:10+07:00"}],"HeadCommit":{"Sha1":"e3af78fc47531563603cb74b00a581af88476433","Message":"Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-18T14:10:57+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/6ae7b846816d579b60abebb037d74ce8e8d332df...e3af78fc47531563603cb74b00a581af88476433","Len":2}', 1705561864); INSERT INTO public.action VALUES (4200, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/31/head', false, '', 1705575512); INSERT INTO public.action VALUES (4201, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/31/head', false, '', 1705575512); INSERT INTO public.action VALUES (4202, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/31/head', false, '', 1705575512); INSERT INTO public.action VALUES (4203, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/31/merge', false, '', 1705575512); INSERT INTO public.action VALUES (4204, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/31/merge', false, '', 1705575512); INSERT INTO public.action VALUES (4205, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/31/merge', false, '', 1705575512); INSERT INTO public.action VALUES (4206, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/32/head', false, '', 1705575512); INSERT INTO public.action VALUES (4207, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/32/head', false, '', 1705575512); INSERT INTO public.action VALUES (4208, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/32/head', false, '', 1705575512); INSERT INTO public.action VALUES (4209, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/32/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4210, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/32/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4211, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/32/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4212, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/33/head', false, '', 1705575513); INSERT INTO public.action VALUES (4213, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/33/head', false, '', 1705575513); INSERT INTO public.action VALUES (4214, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/33/head', false, '', 1705575513); INSERT INTO public.action VALUES (4215, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/33/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4216, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/33/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4217, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/33/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4218, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/34/head', false, '', 1705575513); INSERT INTO public.action VALUES (4219, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/34/head', false, '', 1705575513); INSERT INTO public.action VALUES (4220, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/34/head', false, '', 1705575513); INSERT INTO public.action VALUES (4221, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/34/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4222, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/34/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4223, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/34/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4224, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/35/head', false, '', 1705575513); INSERT INTO public.action VALUES (4225, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/35/head', false, '', 1705575513); INSERT INTO public.action VALUES (4226, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/35/head', false, '', 1705575513); INSERT INTO public.action VALUES (4227, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/35/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4228, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/35/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4229, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/35/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4241, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/37/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4242, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/38/head', false, '', 1705575513); INSERT INTO public.action VALUES (4243, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/38/head', false, '', 1705575513); INSERT INTO public.action VALUES (4244, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/38/head', false, '', 1705575513); INSERT INTO public.action VALUES (4245, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/38/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4246, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/38/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4247, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/38/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4248, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/39/head', false, '', 1705575513); INSERT INTO public.action VALUES (4249, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/39/head', false, '', 1705575513); INSERT INTO public.action VALUES (4250, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/39/head', false, '', 1705575513); INSERT INTO public.action VALUES (4251, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/39/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4252, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/39/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4253, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/39/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4254, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/40/head', false, '', 1705575513); INSERT INTO public.action VALUES (4255, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/40/head', false, '', 1705575513); INSERT INTO public.action VALUES (4256, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/40/head', false, '', 1705575513); INSERT INTO public.action VALUES (4257, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/40/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4258, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/40/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4259, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/40/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4260, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/41/head', false, '', 1705575513); INSERT INTO public.action VALUES (4261, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/41/head', false, '', 1705575513); INSERT INTO public.action VALUES (4262, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/41/head', false, '', 1705575513); INSERT INTO public.action VALUES (4263, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/41/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4264, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/41/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4265, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/41/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4266, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/42/head', false, '', 1705575513); INSERT INTO public.action VALUES (4267, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/42/head', false, '', 1705575513); INSERT INTO public.action VALUES (4268, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/42/head', false, '', 1705575513); INSERT INTO public.action VALUES (4269, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/42/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4270, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/42/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4271, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/42/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4272, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/43/head', false, '', 1705575513); INSERT INTO public.action VALUES (4273, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/43/head', false, '', 1705575513); INSERT INTO public.action VALUES (4274, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/43/head', false, '', 1705575513); INSERT INTO public.action VALUES (4275, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/43/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4276, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/43/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4277, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/43/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4278, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/44/head', false, '', 1705575513); INSERT INTO public.action VALUES (4279, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/44/head', false, '', 1705575513); INSERT INTO public.action VALUES (4280, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/44/head', false, '', 1705575513); INSERT INTO public.action VALUES (4281, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/44/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4282, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/44/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4283, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/44/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4284, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/45/head', false, '', 1705575513); INSERT INTO public.action VALUES (4285, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/45/head', false, '', 1705575513); INSERT INTO public.action VALUES (4286, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/45/head', false, '', 1705575513); INSERT INTO public.action VALUES (4287, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/45/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4288, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/45/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4289, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/45/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4290, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/46/head', false, '', 1705575513); INSERT INTO public.action VALUES (4291, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/46/head', false, '', 1705575513); INSERT INTO public.action VALUES (4292, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/46/head', false, '', 1705575513); INSERT INTO public.action VALUES (4293, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/46/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4294, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/46/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4295, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/46/merge', false, '', 1705575513); INSERT INTO public.action VALUES (4296, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/47/head', false, '', 1705575513); INSERT INTO public.action VALUES (4297, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/47/head', false, '', 1705575513); INSERT INTO public.action VALUES (4298, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/47/head', false, '', 1705575513); INSERT INTO public.action VALUES (4299, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/47/merge', false, '', 1705575514); INSERT INTO public.action VALUES (4300, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/47/merge', false, '', 1705575514); INSERT INTO public.action VALUES (4301, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/47/merge', false, '', 1705575514); INSERT INTO public.action VALUES (4302, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/48/head', false, '', 1705575514); INSERT INTO public.action VALUES (4303, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/48/head', false, '', 1705575514); INSERT INTO public.action VALUES (4304, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/48/head', false, '', 1705575514); INSERT INTO public.action VALUES (4305, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/48/merge', false, '', 1705575514); INSERT INTO public.action VALUES (4306, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/48/merge', false, '', 1705575514); INSERT INTO public.action VALUES (4307, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/48/merge', false, '', 1705575514); INSERT INTO public.action VALUES (4308, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/22/head', false, '', 1705604914); INSERT INTO public.action VALUES (4309, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/22/head', false, '', 1705604914); INSERT INTO public.action VALUES (4310, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/22/head', false, '', 1705604914); INSERT INTO public.action VALUES (4311, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/22/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4312, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/22/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4313, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/22/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4314, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/23/head', false, '', 1705604914); INSERT INTO public.action VALUES (4315, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/23/head', false, '', 1705604914); INSERT INTO public.action VALUES (4316, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/23/head', false, '', 1705604914); INSERT INTO public.action VALUES (4317, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/23/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4318, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/23/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4319, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/23/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4320, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/24/head', false, '', 1705604914); INSERT INTO public.action VALUES (4321, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/24/head', false, '', 1705604914); INSERT INTO public.action VALUES (4322, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/24/head', false, '', 1705604914); INSERT INTO public.action VALUES (4323, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/24/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4324, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/24/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4325, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/24/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4326, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/25/head', false, '', 1705604914); INSERT INTO public.action VALUES (4327, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/25/head', false, '', 1705604914); INSERT INTO public.action VALUES (4328, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/25/head', false, '', 1705604914); INSERT INTO public.action VALUES (4329, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/25/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4330, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/25/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4331, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/25/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4332, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/26/head', false, '', 1705604914); INSERT INTO public.action VALUES (4333, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/26/head', false, '', 1705604914); INSERT INTO public.action VALUES (4334, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/26/head', false, '', 1705604914); INSERT INTO public.action VALUES (4335, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/26/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4336, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/26/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4337, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/26/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4338, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/27/head', false, '', 1705604914); INSERT INTO public.action VALUES (4339, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/27/head', false, '', 1705604914); INSERT INTO public.action VALUES (4340, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/27/head', false, '', 1705604914); INSERT INTO public.action VALUES (4341, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/27/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4342, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/27/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4343, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/27/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4344, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/28/head', false, '', 1705604914); INSERT INTO public.action VALUES (4345, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/28/head', false, '', 1705604914); INSERT INTO public.action VALUES (4346, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/28/head', false, '', 1705604914); INSERT INTO public.action VALUES (4347, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/28/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4348, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/28/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4349, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/28/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4350, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/29/head', false, '', 1705604914); INSERT INTO public.action VALUES (4351, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/29/head', false, '', 1705604914); INSERT INTO public.action VALUES (4352, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/29/head', false, '', 1705604914); INSERT INTO public.action VALUES (4353, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/29/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4354, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/29/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4355, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/29/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4356, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/30/head', false, '', 1705604914); INSERT INTO public.action VALUES (4357, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/30/head', false, '', 1705604914); INSERT INTO public.action VALUES (4358, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/30/head', false, '', 1705604914); INSERT INTO public.action VALUES (4359, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/30/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4360, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/30/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4361, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/30/merge', false, '', 1705604914); INSERT INTO public.action VALUES (4419, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/18/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4362, 5, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613); INSERT INTO public.action VALUES (4363, 12, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613); INSERT INTO public.action VALUES (4364, 2, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613); INSERT INTO public.action VALUES (4365, 15, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613); INSERT INTO public.action VALUES (4366, 11, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613); INSERT INTO public.action VALUES (4367, 1, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613); INSERT INTO public.action VALUES (4368, 9, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613); INSERT INTO public.action VALUES (4369, 16, 5, 5, 15, 0, false, 'refs/heads/main', false, '{"Commits":[{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"}],"HeadCommit":{"Sha1":"35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Message":"update\n","AuthorEmail":"nguyentrananhvu88@hotmail.com","AuthorName":"vu nguyen","CommitterEmail":"nguyentrananhvu88@hotmail.com","CommitterName":"vu nguyen","Timestamp":"2024-01-19T09:16:42+07:00"},"CompareURL":"khieu-nai/backend/compare/33d9644ce9d08b8550b3ee8335c8a3024b60b342...35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5","Len":1}', 1705630613); INSERT INTO public.action VALUES (4370, 11, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0fcc16b3a944af679c58d4542042b1e00f05572d...8fd1ec8092107d71cd610bc15090a66132b89ce0","Len":1}', 1705630948); INSERT INTO public.action VALUES (4420, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/19/head', false, '', 1705634312); INSERT INTO public.action VALUES (4421, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/19/head', false, '', 1705634312); INSERT INTO public.action VALUES (4422, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/19/head', false, '', 1705634312); INSERT INTO public.action VALUES (4423, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/19/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4424, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/19/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4425, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/19/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4371, 14, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0fcc16b3a944af679c58d4542042b1e00f05572d...8fd1ec8092107d71cd610bc15090a66132b89ce0","Len":1}', 1705630948); INSERT INTO public.action VALUES (4372, 1, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0fcc16b3a944af679c58d4542042b1e00f05572d...8fd1ec8092107d71cd610bc15090a66132b89ce0","Len":1}', 1705630948); INSERT INTO public.action VALUES (4373, 5, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0fcc16b3a944af679c58d4542042b1e00f05572d...8fd1ec8092107d71cd610bc15090a66132b89ce0","Len":1}', 1705630948); INSERT INTO public.action VALUES (4374, 16, 5, 11, 21, 0, false, 'refs/heads/thinh', false, '{"Commits":[{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/0fcc16b3a944af679c58d4542042b1e00f05572d...8fd1ec8092107d71cd610bc15090a66132b89ce0","Len":1}', 1705630948); INSERT INTO public.action VALUES (4375, 11, 7, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631064); INSERT INTO public.action VALUES (4376, 14, 7, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631064); INSERT INTO public.action VALUES (4377, 1, 7, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631064); INSERT INTO public.action VALUES (4378, 5, 7, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631064); INSERT INTO public.action VALUES (4379, 16, 7, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631064); INSERT INTO public.action VALUES (4380, 11, 11, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631135); INSERT INTO public.action VALUES (4381, 14, 11, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631135); INSERT INTO public.action VALUES (4382, 1, 11, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631135); INSERT INTO public.action VALUES (4383, 5, 11, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631135); INSERT INTO public.action VALUES (4384, 16, 11, 11, 21, 0, false, '', false, '112|update phan quyen + filter', 1705631135); INSERT INTO public.action VALUES (4385, 11, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3af78fc47531563603cb74b00a581af88476433...8de6e2711f638af8b35485c887f3c10229f7fca6","Len":2}', 1705631137); INSERT INTO public.action VALUES (4386, 14, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3af78fc47531563603cb74b00a581af88476433...8de6e2711f638af8b35485c887f3c10229f7fca6","Len":2}', 1705631137); INSERT INTO public.action VALUES (4426, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/20/head', false, '', 1705634312); INSERT INTO public.action VALUES (4427, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/20/head', false, '', 1705634312); INSERT INTO public.action VALUES (4387, 1, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3af78fc47531563603cb74b00a581af88476433...8de6e2711f638af8b35485c887f3c10229f7fca6","Len":2}', 1705631137); INSERT INTO public.action VALUES (4388, 5, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3af78fc47531563603cb74b00a581af88476433...8de6e2711f638af8b35485c887f3c10229f7fca6","Len":2}', 1705631137); INSERT INTO public.action VALUES (4389, 16, 5, 11, 21, 0, false, 'refs/heads/dev', false, '{"Commits":[{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},{"Sha1":"8fd1ec8092107d71cd610bc15090a66132b89ce0","Message":"update phan quyen + filter\n","AuthorEmail":"92719909+hungthinhne@users.noreply.github.com","AuthorName":"Lê Hùng Thịnh","CommitterEmail":"92719909+hungthinhne@users.noreply.github.com","CommitterName":"Lê Hùng Thịnh","Timestamp":"2024-01-19T09:22:17+07:00"}],"HeadCommit":{"Sha1":"8de6e2711f638af8b35485c887f3c10229f7fca6","Message":"Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112\n","AuthorEmail":"hungthinh11122000@gmail.com","AuthorName":"hungthinhne","CommitterEmail":"hungthinh11122000@gmail.com","CommitterName":"hungthinhne","Timestamp":"2024-01-19T09:25:29+07:00"},"CompareURL":"giao-duc-nghe-nghiep/frontend/compare/e3af78fc47531563603cb74b00a581af88476433...8de6e2711f638af8b35485c887f3c10229f7fca6","Len":2}', 1705631137); INSERT INTO public.action VALUES (4390, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/14/head', false, '', 1705634312); INSERT INTO public.action VALUES (4391, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/14/head', false, '', 1705634312); INSERT INTO public.action VALUES (4392, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/14/head', false, '', 1705634312); INSERT INTO public.action VALUES (4393, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/14/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4394, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/14/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4395, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/14/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4396, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/15/head', false, '', 1705634312); INSERT INTO public.action VALUES (4397, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/15/head', false, '', 1705634312); INSERT INTO public.action VALUES (4398, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/15/head', false, '', 1705634312); INSERT INTO public.action VALUES (4399, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/15/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4400, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/15/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4401, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/15/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4402, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/16/head', false, '', 1705634312); INSERT INTO public.action VALUES (4403, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/16/head', false, '', 1705634312); INSERT INTO public.action VALUES (4404, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/16/head', false, '', 1705634312); INSERT INTO public.action VALUES (4405, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/16/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4406, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/16/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4407, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/16/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4408, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/17/head', false, '', 1705634312); INSERT INTO public.action VALUES (4409, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/17/head', false, '', 1705634312); INSERT INTO public.action VALUES (4410, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/17/head', false, '', 1705634312); INSERT INTO public.action VALUES (4411, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/17/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4412, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/17/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4413, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/17/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4414, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/18/head', false, '', 1705634312); INSERT INTO public.action VALUES (4415, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/18/head', false, '', 1705634312); INSERT INTO public.action VALUES (4416, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/18/head', false, '', 1705634312); INSERT INTO public.action VALUES (4417, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/18/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4418, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/18/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4428, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/20/head', false, '', 1705634312); INSERT INTO public.action VALUES (4429, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/20/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4430, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/20/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4431, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/20/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4432, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/21/head', false, '', 1705634312); INSERT INTO public.action VALUES (4433, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/21/head', false, '', 1705634312); INSERT INTO public.action VALUES (4434, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/21/head', false, '', 1705634312); INSERT INTO public.action VALUES (4435, 13, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/21/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4436, 1, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/21/merge', false, '', 1705634312); INSERT INTO public.action VALUES (4437, 4, 20, 13, 17, 0, false, 'refs/tags/refs/merge-requests/21/merge', false, '', 1705634312); -- -- Data for Name: action_artifact; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: action_run; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: action_run_index; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: action_run_job; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: action_runner; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.action_runner VALUES (1, 'd141e8c9-bdea-4b83-88d4-cebea70bddf1', 'CMC Server', 0, 0, '', 0, '', 'a75769ba030433b31c054f0286a119c74eb6ac0af23487c10962d088413f1364047a6b630043a4419b3860946cffde8c4a2e', 'S6x8JWyUOZ', 1686797641, 0, '["cmc","controller","master"]', 1685064839, 1686797641, 1686797642, NULL); -- -- Data for Name: action_runner_token; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.action_runner_token VALUES (1, 'P2953gNgAMNPeD5opSf2vlBF9syjLfmmWcZSeUto', 0, 0, true, 1685008191, 1685064839, NULL); INSERT INTO public.action_runner_token VALUES (2, '7OjbMiLqZ3qXfMBbxXa6SF8qlGS1IMi5FF0J0P35', 0, 0, false, 1685064846, 1685064846, NULL); INSERT INTO public.action_runner_token VALUES (3, 'C0hapzNmOGKHOuCmW8JkTsp1ZEcITaHilsyZWQnP', 8, 0, false, 1686802984, 1704678367, NULL); INSERT INTO public.action_runner_token VALUES (4, 'rVjPJOaL8obHo36cG5TV7uXBdxQCDhqp4O6BiA8E', 8, 0, true, 1704678367, 1704678367, NULL); -- -- Data for Name: action_schedule; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: action_schedule_spec; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: action_task; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: action_task_output; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: action_task_step; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: action_tasks_version; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: action_variable; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: app_state; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.app_state VALUES ('runtime-state', 1, '{"last_app_path":"C:/opt/gitea/gitea.exe","last_custom_conf":"C:\\opt\\gitea\\custom\\conf\\app.ini"}'); -- -- Data for Name: attachment; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: badge; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: branch; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.branch VALUES (1, 11, 'dev', '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 'add Jenkinsfile', 0, false, 0, 0, 1686802445, 1700192947, 1700192947); INSERT INTO public.branch VALUES (2, 9, 'master', 'd9808de1f02ff6939def557ccc6e2bc9e56f335d', 'update dashboard', 0, false, 0, 0, 1689219553, 1700193306, 1700193306); INSERT INTO public.branch VALUES (3, 9, 'main', 'eecc690536ed3f49a97cbb6bb416175b0ff4eb06', 'fix build lỗi sau 1 thời gian dài', 0, false, 0, 0, 1685932813, 1700193306, 1700193306); INSERT INTO public.branch VALUES (4, 10, 'dev', '580251b795de3f4ab4760b74af176873ee4129d7', 'update', 0, false, 0, 0, 1685934808, 1700204051, 1700204051); INSERT INTO public.branch VALUES (42, 28, 'master', '695a361dc53c28493ae1d4dfaf97a8cc147082d2', 'quên add gRPC lib vào gateway', 17, false, 0, 0, 1620696821, 1705366325, 1705366325); INSERT INTO public.branch VALUES (43, 28, 'dev', '94169c8272994c848786971f0f5b1231c24fefd0', '.', 17, false, 0, 0, 1704205381, 1705366325, 1705366325); INSERT INTO public.branch VALUES (8, 7, 'dev', 'db631c23c653da1f63b740d7e7814fc345df17c0', 'big update', 0, false, 0, 0, 1685678646, 1700810344, 1700810344); INSERT INTO public.branch VALUES (9, 6, 'main', 'ea13e1d90318274180b5572fbf7d109463ce01b0', 'change session idleTimeout', 0, false, 0, 0, 1685353362, 1700810725, 1700810725); INSERT INTO public.branch VALUES (19, 18, 'test', '90055dfd315f979871ddb29047a9171ed9ddb4a2', 'fix: slug for event', 0, false, 0, 0, 1701155549, 1701256061, 1701256061); INSERT INTO public.branch VALUES (37, 26, 'main', '814c2834abecae300e8f733df62b8c2d0e7f835f', 'service', 15, false, 0, 0, 1705547944, 1704425275, 1705547955); INSERT INTO public.branch VALUES (30, 5, 'main', '2f139a8e94a15b037dc31fcc30e5823857257013', 'Merge branch ''hoangdong'' into ''main''', 0, false, 0, 0, 1669774897, 1703753734, 1703753734); INSERT INTO public.branch VALUES (28, 8, 'nocms', 'c76f7a74cf41fdd1c705fc9f019a697413ba8af7', 'fix arcgis service url', 0, false, 0, 0, 1686109166, 1703478100, 1703478100); INSERT INTO public.branch VALUES (29, 8, 'main', '997c70fb991ad1c41df5d8dd04873f291b57becd', 'update to angular 10', 0, false, 0, 0, 1685695594, 1703478100, 1703478100); INSERT INTO public.branch VALUES (16, 18, 'main', '15aab07c22634b263f541cf2a5740d0fbc6e18d7', 'feat: result 70%', 0, false, 0, 0, 1703466506, 1701226317, 1703489442); INSERT INTO public.branch VALUES (18, 20, 'main', '28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a', 'thanh lý', 0, false, 0, 0, 1703473351, 1701226695, 1703490037); INSERT INTO public.branch VALUES (38, 26, 'dev-hoa', 'b8d0d925b42d717dd3206442113f99e827a2ff0f', 'merge', 15, false, 0, 0, 1705291561, 1704681340, 1705291588); INSERT INTO public.branch VALUES (10, 17, 'hoang-dev', '0e8975dc866ce5aaaaa26e55709615ca6ec876ec', 'change social link', 0, false, 0, 0, 1703056251, 1701226115, 1703078110); INSERT INTO public.branch VALUES (22, 21, 'dev-tuan', '98bac7b7796147fd0301f876de79e5c28fa8b978', 'Merge branch ''dev'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/frontend into dev-tuan', 14, false, 0, 0, 1670916063, 1701832988, 1701832988); INSERT INTO public.branch VALUES (23, 21, 'main', '8bbccb90e29c9a50d5b4cd4b69ddf590a1507613', 'Initial commit', 14, false, 0, 0, 1664769415, 1701832988, 1701832988); INSERT INTO public.branch VALUES (11, 17, 'revert-c48ed620', 'd12bc61de3ac9a76347016ff4ca5b3e8576fcffd', 'Revert "Merge branch ''code-backup'' into ''main''"', 13, false, 0, 0, 1698050864, 1701226115, 1701226115); INSERT INTO public.branch VALUES (12, 17, 'code-backup', '6d36df6756b0cbe99665700bff4d8b5aa89cf0ac', 'dang bai dua thuyen buom', 13, false, 0, 0, 1697942442, 1701226115, 1701226115); INSERT INTO public.branch VALUES (17, 18, 'hoang-dev', '16eef6fffd13f1990cb565b07dd9d7cb8b4d35ad', 'update mp4', 13, false, 0, 0, 1698371112, 1701226317, 1701226317); INSERT INTO public.branch VALUES (25, 23, 'dev-android', 'cbcd28820451d16cb8811db95926ecae10e7541a', 'java 19', 14, false, 0, 0, 1680231254, 1701833952, 1701833952); INSERT INTO public.branch VALUES (26, 23, 'dev-ios', '21d3a28c152ea9b310f937ca559356cccb181400', 'build ios', 14, false, 0, 0, 1677138317, 1701833952, 1701833952); INSERT INTO public.branch VALUES (27, 23, 'master', 'dff222e66d727340377ee089801d61d867450f43', 'custom du thu', 14, false, 0, 0, 1675217459, 1701833952, 1701833952); INSERT INTO public.branch VALUES (31, 5, 'hoangdong', '292251b672ea52d126ae76c271751e7b8df40302', 'fix ui tach ghep thua', 0, false, 0, 0, 1669774809, 1703753734, 1703753734); INSERT INTO public.branch VALUES (32, 5, 'test', 'fc00506bc188211befbe1782d788f94622cb3dbb', 'Update layers.yaml', 0, false, 0, 0, 1660899384, 1703753734, 1703753734); INSERT INTO public.branch VALUES (35, 24, 'dev-android', '36d23a60f4fa78a3d8ce2d6c96458512e27ee1c0', 'noti, chat', 15, false, 0, 0, 1704251247, 1703824395, 1704251278); INSERT INTO public.branch VALUES (36, 25, 'main', 'd6c2e64af79bb97a5b57cf8e173d2f2d29f3019b', 'Add project files.', 1, false, 0, 0, 1703834851, 1703835148, 1703835148); INSERT INTO public.branch VALUES (5, 12, 'main', '7b700cce960bebc6fad9e06adb1d76eba7ebc29f', 'update cap lai mat khau', 11, false, 0, 0, 1702008047, 1700797288, 1702008061); INSERT INTO public.branch VALUES (33, 5, 'dev', 'd1c2fd163d6fbb249fde89014b63234da393cdcc', 'Merge branch ''main'' into ''dev''', 0, false, 0, 0, 1656036105, 1703753734, 1703753734); INSERT INTO public.branch VALUES (15, 17, 'develop', '8b79942357f0e1a362058fb81823a099385830cc', 'Merge branch ''dong-dev'' into ''develop''', 0, false, 0, 0, 1704109489, 1701226115, 1704136237); INSERT INTO public.branch VALUES (13, 17, 'dong-dev', '4487e3b77714fa6fa1e7446e2a6e850ad7d92587', 'update next event', 0, false, 0, 0, 1704109344, 1701226115, 1704136237); INSERT INTO public.branch VALUES (14, 17, 'main', '3388156ba70abc12c5d9f57ba31b3273f2bc34ae', 'Merge branch ''develop'' into ''main''', 0, false, 0, 0, 1704109510, 1701226115, 1704136237); INSERT INTO public.branch VALUES (34, 24, 'dev-ios', 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', 'login, regis', 15, false, 0, 0, 1704360030, 1703824263, 1704360042); INSERT INTO public.branch VALUES (7, 15, 'main', '35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5', 'update', 5, false, 0, 0, 1705630602, 1700798589, 1705630613); INSERT INTO public.branch VALUES (24, 22, 'main', 'fdee172356b6f9f25ce145921047bafcb1d2e5ca', 'Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend', 0, false, 0, 0, 1705456653, 1701833898, 1705478169); INSERT INTO public.branch VALUES (39, 27, 'dev', '67c62e1bb972c3731c1207adab34819d00dda8c6', 'fix: update user', 17, false, 0, 0, 1704252932, 1705366274, 1705366274); INSERT INTO public.branch VALUES (44, 29, 'fix-ui-ada', '0635df57afcbb8c044e24acc14e80f6added0fc5', 'build android', 17, false, 0, 0, 1702889869, 1705366768, 1705366768); INSERT INTO public.branch VALUES (45, 29, 'fix/audio_record', '85e50fce2d7420392582242fd905d8cecdd7f107', 'build ios', 17, false, 0, 0, 1667805186, 1705366768, 1705366768); INSERT INTO public.branch VALUES (40, 27, 'MaThanhHoang', '5921c5042bf7d5e400b36e7e35f426c7207bdfe6', 'empty commit', 17, false, 0, 0, 1648193109, 1705366274, 1705366274); INSERT INTO public.branch VALUES (41, 27, 'master', '0ec686fa7075293404805e1b9c67be056f880d53', 'dựng source', 17, false, 0, 0, 1617416050, 1705366274, 1705366274); INSERT INTO public.branch VALUES (46, 29, 'dev', 'f48875268f70978021fd327c465baf007dd868b9', 'add template merge', 17, false, 0, 0, 1661850754, 1705366768, 1705366768); INSERT INTO public.branch VALUES (47, 29, 'test-upgrade', '077ac7b41aef2081183c51866d829ad923ec6413', 'update 0.68.1, xcode 13', 17, false, 0, 0, 1651197003, 1705366768, 1705366768); INSERT INTO public.branch VALUES (48, 29, 'master', 'e1bfe3b854cecef6b893800ac330388297ec15c8', 'initial commit', 17, false, 0, 0, 1617244354, 1705366768, 1705366768); INSERT INTO public.branch VALUES (49, 29, 'dev-ios', 'a461783f04be1b7aad3b8bd9005399b1022c6118', 'audio err', 17, false, 0, 0, 1703057727, 1705366768, 1705366768); INSERT INTO public.branch VALUES (50, 26, 'dev-thinh', '6eeb3167459d18da3f7e5738d37354a500b8c3f6', 'feat: room - organization - jobtitle', 11, false, 0, 0, 1705285358, 1705368636, 1705368636); INSERT INTO public.branch VALUES (21, 21, 'thinh', '8fd1ec8092107d71cd610bc15090a66132b89ce0', 'update phan quyen + filter', 11, false, 0, 0, 1705630937, 1701832988, 1705630948); INSERT INTO public.branch VALUES (20, 21, 'dev', '8de6e2711f638af8b35485c887f3c10229f7fca6', 'Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev', 11, false, 0, 0, 1705631129, 1701832988, 1705631137); -- -- Data for Name: collaboration; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.collaboration VALUES (1, 11, 9, 2, 1686809260, 1686809260); INSERT INTO public.collaboration VALUES (4, 24, 15, 3, 1703824082, 1703824082); INSERT INTO public.collaboration VALUES (5, 26, 2, 3, 1704424147, 1704424147); -- -- Data for Name: comment; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.comment VALUES (1, 0, 1, '', 0, 1, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'Test tag tên @tuan ', '', 1685071535, 1685071535, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (2, 29, 1, '', 0, 2, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["f7703196ec86890a5d9e2921cd7c807078eec3d7","c0319628506edaa08cc62b8102bd5e72a81b2a0f","48652d228a3a50d1c85e12393961821cc62567ad"]}', '', 1702096328, 1702096328, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (3, 29, 1, '', 0, 2, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["20a08df4682d10433b053e6660a2ef3e31127449"]}', '', 1702096901, 1702096901, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (4, 28, 1, '', 0, 2, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702096969, 1702096969, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (5, 4, 1, '', 0, 2, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802">Merge pull request 'thinh' (#1) from thinh into dev</a>', '', 1702096970, 1702096970, '453ae71b5cc9a8151c61b7d1b8fbbd9a0f93b802', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (6, 29, 11, '', 0, 3, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["57148d20cdcbc970a17c104a386db2579c8b7684","840d81f0072a2dc84dcd2e592deb0ee322f2f46e","ba9ff55b3992311f8d8c8134aaebf4fa09653853"]}', '', 1702262292, 1702262292, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (7, 28, 11, '', 0, 3, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702262651, 1702262651, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (8, 4, 11, '', 0, 3, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/332b7c2db9feb5c0cd39791dabb28f9f7adb999f">Merge pull request 'thinh' (#2) from thinh into dev</a>', '', 1702262653, 1702262653, '332b7c2db9feb5c0cd39791dabb28f9f7adb999f', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (9, 29, 11, '', 0, 4, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["c2ce2ffdc7dfb6a30ce59a7f6b516d436af5f99a"]}', '', 1702268902, 1702268902, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (10, 28, 11, '', 0, 4, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702268923, 1702268923, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (11, 4, 11, '', 0, 4, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/7780a4feeb614a456ab7396ad139fb4f27cf99c5">Merge pull request 'update nguoi tao filter' (#3) from thinh into dev</a>', '', 1702268924, 1702268924, '7780a4feeb614a456ab7396ad139fb4f27cf99c5', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (12, 29, 11, '', 0, 5, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["84df5778e5198b6e1fddebc0cac9a844f2cfbafd"]}', '', 1702367034, 1702367034, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (13, 28, 11, '', 0, 5, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702367054, 1702367054, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (14, 4, 11, '', 0, 5, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/217e5489936cc894c29132432bcdb3a402d853b4">Merge pull request 'render Action NLĐ' (#4) from thinh into dev</a>', '', 1702367055, 1702367055, '217e5489936cc894c29132432bcdb3a402d853b4', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (15, 29, 11, '', 0, 6, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["fd360e903f0823d329f8f01976d950865c273eee"]}', '', 1702372531, 1702372531, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (16, 28, 11, '', 0, 6, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702372549, 1702372549, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (17, 4, 11, '', 0, 6, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c">Merge pull request 'update row nld' (#5) from thinh into dev</a>', '', 1702372550, 1702372550, '30403e4e0e69c1fd5dfb92234bfcaa41f5aa337c', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (18, 29, 11, '', 0, 7, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["7aa25777f9721eb11360ff4de9bc32ef1fb134d5"]}', '', 1702438666, 1702438666, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (19, 28, 11, '', 0, 7, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702438681, 1702438681, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (20, 4, 11, '', 0, 7, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/f6bf8a15c6b2454168641323bb68f95fd262bfdf">Merge pull request 'cmt QMTS + edit url KeHoachTuyenSinh' (#6) from thinh into dev</a>', '', 1702438682, 1702438682, 'f6bf8a15c6b2454168641323bb68f95fd262bfdf', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (21, 29, 11, '', 0, 8, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["80dddcc1a779ef72ce358f1fe885ef56d4ea9fec"]}', '', 1702545117, 1702545117, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (22, 28, 11, '', 0, 8, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702545134, 1702545134, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (23, 4, 11, '', 0, 8, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/055af998354057d294f13a0acd4d47817548b2b1">Merge pull request 'update add nam giang day' (#7) from thinh into dev</a>', '', 1702545135, 1702545135, '055af998354057d294f13a0acd4d47817548b2b1', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (24, 29, 11, '', 0, 9, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["35d9e420aca16b467c2f15fe29201a908f8a50e0"]}', '', 1702610168, 1702610168, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (25, 28, 11, '', 0, 9, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702610183, 1702610183, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (26, 4, 11, '', 0, 9, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88">Merge pull request 'up code' (#8) from thinh into dev</a>', '', 1702610185, 1702610185, '2dfe15eaabf10b5e8f45fd015b453b3a32c7bc88', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (27, 29, 11, '', 0, 10, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["27be87b9f58af8a7c1789a168c9f824d069a8c9b"]}', '', 1702615291, 1702615291, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (28, 28, 11, '', 0, 10, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702615307, 1702615307, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (29, 4, 11, '', 0, 10, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/9a2ac98f33fd96bee643e3f6f36f36575c197232">Merge pull request 'add PLTDDT' (#9) from thinh into dev</a>', '', 1702615308, 1702615308, '9a2ac98f33fd96bee643e3f6f36f36575c197232', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (30, 29, 11, '', 0, 11, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["a2285a074737d3cd8e28b97aa2840e0a3742f0c3"]}', '', 1702625968, 1702625968, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (31, 28, 11, '', 0, 11, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702625985, 1702625985, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (32, 4, 11, '', 0, 11, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/d10c1afe4570b2760d435db0b189e8d4beb9e1e4">Merge pull request 'update form thong tin tot nghiep' (#10) from thinh into dev</a>', '', 1702625987, 1702625987, 'd10c1afe4570b2760d435db0b189e8d4beb9e1e4', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (33, 29, 11, '', 0, 12, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["d6c6ebc49d27881b73b00c41e305a4a05553ba59","0a16148c62a86e5f2259c49170108b92db418562"]}', '', 1702626227, 1702626227, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (34, 28, 11, '', 0, 12, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702626247, 1702626247, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (35, 4, 11, '', 0, 12, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/c85f3e0ffd126207716573905e05bc00287cfe56">Merge pull request 'thinh' (#11) from thinh into dev</a>', '', 1702626249, 1702626249, 'c85f3e0ffd126207716573905e05bc00287cfe56', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (36, 29, 11, '', 0, 13, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["7c1c5230c30732550a59bb531e670dc4b26c1ddc","e49bfa1312e27644964f043a52ca88ea71a9be89"]}', '', 1702641378, 1702641378, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (37, 28, 11, '', 0, 13, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702641398, 1702641398, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (38, 4, 11, '', 0, 13, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac">Merge pull request 'thinh' (#12) from thinh into dev</a>', '', 1702641400, 1702641400, 'c06f3288fa0c5f9e3c5a2ed958392c4fb1b37dac', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (39, 29, 11, '', 0, 14, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["31a4a839d6a2d78343031b022b5809584d8d7ca5"]}', '', 1702641995, 1702641995, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (40, 28, 11, '', 0, 14, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702642084, 1702642084, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (41, 4, 11, '', 0, 14, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/66267b2a985da79086f96d0013f67de1c3f6cdfc">Merge pull request 'fix tths' (#13) from thinh into dev</a>', '', 1702642086, 1702642086, '66267b2a985da79086f96d0013f67de1c3f6cdfc', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (42, 29, 11, '', 0, 15, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["82dc42aa48c0d98347fec8bd387a63ed36c10c59"]}', '', 1702883677, 1702883677, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (43, 28, 11, '', 0, 15, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702883703, 1702883703, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (131, 28, 11, '', 0, 44, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704530897, 1704530897, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (44, 4, 11, '', 0, 15, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/527e8c8156be1324b94845f5d0a29fb74e03a75e">Merge pull request 'import nha giao' (#14) from thinh into dev</a>', '', 1702883704, 1702883704, '527e8c8156be1324b94845f5d0a29fb74e03a75e', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (45, 29, 11, '', 0, 16, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["556555eb7a356a27df965b962179d6296fd85b80"]}', '', 1702887102, 1702887102, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (46, 28, 11, '', 0, 16, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702887117, 1702887117, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (47, 4, 11, '', 0, 16, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/fe2b7e3827ed06be7308235f0d4289609621e3f5">Merge pull request 'filter QuanHuyenViewSo + Json HS/SV' (#15) from thinh into dev</a>', '', 1702887118, 1702887118, 'fe2b7e3827ed06be7308235f0d4289609621e3f5', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (48, 29, 11, '', 0, 17, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["2354be6f98057d9f214ca12779f11e288b0fcd8b"]}', '', 1702887894, 1702887894, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (49, 28, 11, '', 0, 17, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702887923, 1702887923, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (50, 4, 11, '', 0, 17, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1a92e62351728bac3c7f0afd5f4c8716ad0f3a53">Merge pull request 'fix giao dien' (#16) from thinh into dev</a>', '', 1702887924, 1702887924, '1a92e62351728bac3c7f0afd5f4c8716ad0f3a53', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (51, 29, 11, '', 0, 18, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["89fb4ac9700c29f0ea1d3cb0712be070cf24839b"]}', '', 1702891927, 1702891927, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (52, 28, 11, '', 0, 18, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702891942, 1702891942, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (53, 4, 11, '', 0, 18, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/f138f26d87044c4d2801f8c46e13b0c2cc47c806">Merge pull request 'fix bang du lieu import excel' (#17) from thinh into dev</a>', '', 1702891943, 1702891943, 'f138f26d87044c4d2801f8c46e13b0c2cc47c806', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (54, 29, 11, '', 0, 19, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["9a1dec6bb595188538ebfd75e033724bc73ed224"]}', '', 1702950875, 1702950875, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (55, 29, 11, '', 0, 19, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["23ad4cdb757b62bcce915abba7bd545b47297107"]}', '', 1702953380, 1702953380, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (56, 28, 11, '', 0, 19, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702953625, 1702953625, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (57, 4, 11, '', 0, 19, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1209d08a6048529593be305903318410955b3285">Merge pull request 'import hoc vien' (#18) from thinh into dev</a>', '', 1702953627, 1702953627, '1209d08a6048529593be305903318410955b3285', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (58, 29, 11, '', 0, 20, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["a20d3725ce75fdd102fd1a0e8865f08474e1c238"]}', '', 1702957082, 1702957082, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (59, 28, 11, '', 0, 20, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702957099, 1702957099, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (60, 4, 11, '', 0, 20, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/2b00bcf2f6390dd90b579b59e0b0d42e617a9529">Merge pull request 'update file excel hoc vien' (#19) from thinh into dev</a>', '', 1702957101, 1702957101, '2b00bcf2f6390dd90b579b59e0b0d42e617a9529', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (61, 29, 11, '', 0, 21, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["54006ffe91d0cbce8ecbefb4219b6b76f2b4477e","7875dd1cb94f8d0563fdadfac04da1e77ef997f9"]}', '', 1702958705, 1702958705, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (62, 28, 11, '', 0, 21, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702958721, 1702958721, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (63, 4, 11, '', 0, 21, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/0e5cba3900c9c08060dc1e082efb182ce1d2f261">Merge pull request 'thinh' (#20) from thinh into dev</a>', '', 1702958723, 1702958723, '0e5cba3900c9c08060dc1e082efb182ce1d2f261', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (64, 29, 11, '', 0, 22, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["e61c2e5c7f943e39c5cf82a295f9640a2cb93b2c"]}', '', 1702978974, 1702978974, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (65, 28, 11, '', 0, 22, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1702979013, 1702979013, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (66, 4, 11, '', 0, 22, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/822137c72238e461cd8224bd07bf7738c907aeed">Merge pull request 'fix giao dien' (#21) from thinh into dev</a>', '', 1702979015, 1702979015, '822137c72238e461cd8224bd07bf7738c907aeed', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (67, 29, 11, '', 0, 23, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["2550e5ce7cff1b368a88b7e07aa9191935e579bc"]}', '', 1703217099, 1703217099, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (68, 28, 11, '', 0, 23, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1703217118, 1703217118, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (69, 4, 11, '', 0, 23, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/ce4364a6eea788d602dd8008bf176dad3cee591f">Merge pull request 'update QLLD_NhuCauTuyenSinh' (#22) from thinh into dev</a>', '', 1703217119, 1703217119, 'ce4364a6eea788d602dd8008bf176dad3cee591f', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (70, 29, 11, '', 0, 24, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["3224d74b3cd0c13e306f28eda021073d097d8b21"]}', '', 1703581439, 1703581439, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (71, 28, 11, '', 0, 24, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1703581455, 1703581455, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (72, 4, 11, '', 0, 24, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/b20e2920ff823bba807cf855b884c109ccb833e3">Merge pull request 'add ke hoach tuyen sinh' (#23) from thinh into dev</a>', '', 1703581457, 1703581457, 'b20e2920ff823bba807cf855b884c109ccb833e3', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (73, 29, 11, '', 0, 25, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["dcabae26407e5a8ebe3ee60dae45c490ebf05dc2"]}', '', 1703733084, 1703733084, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (74, 28, 11, '', 0, 25, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1703733100, 1703733100, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (75, 4, 11, '', 0, 25, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/3d25992786d4defa328177d93bd82a78507ca708">Merge pull request 'add bao cao tuyen sinh' (#24) from thinh into dev</a>', '', 1703733102, 1703733102, '3d25992786d4defa328177d93bd82a78507ca708', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (76, 29, 11, '', 0, 26, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["1686d02897942b3d60ace6745b52b898c77010f5"]}', '', 1703749796, 1703749796, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (77, 28, 11, '', 0, 26, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1703749812, 1703749812, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (78, 4, 11, '', 0, 26, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/087ed25ee9fded2df43d96f7a624b301d0ed3bf0">Merge pull request 'update ThuongTru_ThonXom' (#25) from thinh into dev</a>', '', 1703749814, 1703749814, '087ed25ee9fded2df43d96f7a624b301d0ed3bf0', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (79, 29, 11, '', 0, 27, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["146f91e88fec6c748e4378c029300694f4599df8"]}', '', 1703757399, 1703757399, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (80, 28, 11, '', 0, 27, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1703757414, 1703757414, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (81, 4, 11, '', 0, 27, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/6cbac64de2f6655baf854915aac73011498c4afc">Merge pull request 'add chi tieu tuyen sinh' (#26) from thinh into dev</a>', '', 1703757416, 1703757416, '6cbac64de2f6655baf854915aac73011498c4afc', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (82, 29, 11, '', 0, 28, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["373cd26fb7e01be8e5618bf1ca310f43b25423e9","911fdad30b51628a28e001ccf1645d9d5172e84f"]}', '', 1703820633, 1703820633, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (83, 28, 11, '', 0, 28, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1703820649, 1703820649, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (84, 4, 11, '', 0, 28, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/71da43b9b4f4ec6f2aab698e1cade5906e604d35">Merge pull request 'thinh' (#27) from thinh into dev</a>', '', 1703820651, 1703820651, '71da43b9b4f4ec6f2aab698e1cade5906e604d35', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (85, 29, 11, '', 0, 29, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["9dfb299ec2026ff1d33acb42cda2ce8f89f40e93","77aa5ae5f0dbbbb05621f9e5373b74f69b7f775a"]}', '', 1703842271, 1703842271, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (86, 28, 11, '', 0, 29, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1703842288, 1703842288, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (154, 29, 11, '', 0, 52, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["b8b1e9d8ca222077ac01cd383e3f4818284508ec"]}', '', 1704559646, 1704559646, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (87, 4, 11, '', 0, 29, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9">Merge pull request 'thinh' (#28) from thinh into dev</a>', '', 1703842291, 1703842291, 'b9791e69f8fb085dce4ce8bc9d7301f3d50ea8e9', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (88, 29, 11, '', 0, 30, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["e7c1329e218f6c9ebcbf017cfef3b8d300cfde2e","e03a51dfba325dd115c61bfabae354fc8bce8a39","93d05635290ecb9e83937118a5aa9baf089d30ac"]}', '', 1704247127, 1704247127, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (89, 28, 11, '', 0, 30, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704247144, 1704247144, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (90, 4, 11, '', 0, 30, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1b4fab6a15956bae864162531765607648272383">Merge pull request 'thinh' (#29) from thinh into dev</a>', '', 1704247145, 1704247145, '1b4fab6a15956bae864162531765607648272383', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (91, 29, 11, '', 0, 31, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["97b72611674d4b7b1aef7a4ccf73d301d3b95704"]}', '', 1704247789, 1704247789, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (92, 28, 11, '', 0, 31, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704247805, 1704247805, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (93, 4, 11, '', 0, 31, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/d478dd60abc83b3d9ca9128a2d6976b1322f2ac5">Merge pull request 'fix stlye detail khts' (#30) from thinh into dev</a>', '', 1704247806, 1704247806, 'd478dd60abc83b3d9ca9128a2d6976b1322f2ac5', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (94, 29, 11, '', 0, 32, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["b4a6697bee6b6f16460ecbb3a85fe00d085bebe9","1f50a9600f44e3ab03f9211932cd46b5e9acf664"]}', '', 1704254944, 1704254944, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (95, 28, 11, '', 0, 32, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704254966, 1704254966, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (96, 4, 11, '', 0, 32, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/8e828e6f4421b1493f308e824c9e8bdb69e3c312">Merge pull request 'thinh' (#31) from thinh into dev</a>', '', 1704254967, 1704254967, '8e828e6f4421b1493f308e824c9e8bdb69e3c312', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (97, 29, 11, '', 0, 33, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["bfc5e6a2209c1af96532ae8bfd9d55874a46e39f","a0b1080d5e7d96c9e634012be07424dcb88c4418"]}', '', 1704270127, 1704270127, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (98, 28, 11, '', 0, 33, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704270141, 1704270141, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (99, 4, 11, '', 0, 33, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/66485a7986ab26e07dab856017d0ee7f84234a04">Merge pull request 'thinh' (#32) from thinh into dev</a>', '', 1704270141, 1704270141, '66485a7986ab26e07dab856017d0ee7f84234a04', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (100, 29, 11, '', 0, 34, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["205a7f5347c0e379199e46265c084c9be88049dc"]}', '', 1704337471, 1704337471, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (101, 28, 11, '', 0, 34, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704337487, 1704337487, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (102, 4, 11, '', 0, 34, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/f34630cbea2ecac67dcb069e4e4a27967ac7b10c">Merge pull request 'update edit location hoso' (#33) from thinh into dev</a>', '', 1704337488, 1704337488, 'f34630cbea2ecac67dcb069e4e4a27967ac7b10c', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (103, 29, 11, '', 0, 35, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["f099d4b729877303d88c26254708d44fea9a6b91"]}', '', 1704337711, 1704337711, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (104, 28, 11, '', 0, 35, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704337726, 1704337726, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (105, 4, 11, '', 0, 35, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/3f0e55f14d544cea196d2bf018b613a7176bd7fd">Merge pull request 'update phan quyen chinh sua' (#34) from thinh into dev</a>', '', 1704337727, 1704337727, '3f0e55f14d544cea196d2bf018b613a7176bd7fd', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (106, 29, 11, '', 0, 36, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["a765747120a51a414474b08290bd6962ad402549","f958d58054337a2fa79a21d97be215ab782e5ead"]}', '', 1704349756, 1704349756, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (107, 28, 11, '', 0, 36, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704349774, 1704349774, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (155, 28, 11, '', 0, 52, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704559662, 1704559662, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (108, 4, 11, '', 0, 36, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/209d45fee56b3c30e8134399acf07f2ed034d99a">Merge pull request 'thinh' (#35) from thinh into dev</a>', '', 1704349775, 1704349775, '209d45fee56b3c30e8134399acf07f2ed034d99a', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (109, 29, 11, '', 0, 37, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["3d35753a6ca494289412e6435ad81b388dce8022"]}', '', 1704352556, 1704352556, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (110, 28, 11, '', 0, 37, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704352572, 1704352572, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (111, 4, 11, '', 0, 37, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/e06ac97be44f6830d36c492759a4857e370bcb1f">Merge pull request 'add nld change year nhucau' (#36) from thinh into dev</a>', '', 1704352574, 1704352574, 'e06ac97be44f6830d36c492759a4857e370bcb1f', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (112, 29, 11, '', 0, 38, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["2423bb737a918b32bc59efe85c222a9f3128c7ab"]}', '', 1704422990, 1704422990, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (113, 28, 11, '', 0, 38, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704423005, 1704423005, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (114, 4, 11, '', 0, 38, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/568299bc2fd76e6410ce6c4a6115e561e1c1aa38">Merge pull request 'update bao cao' (#37) from thinh into dev</a>', '', 1704423007, 1704423007, '568299bc2fd76e6410ce6c4a6115e561e1c1aa38', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (115, 29, 11, '', 0, 39, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["792bcff3d21254a02cb1dc70989f44cd948b788e"]}', '', 1704428627, 1704428627, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (116, 28, 11, '', 0, 39, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704428655, 1704428655, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (117, 4, 11, '', 0, 39, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/a83c5eae96d22b60f72fa4c1a88aed04b88835af">Merge pull request 'update bao cao tuyen sinh' (#38) from thinh into dev</a>', '', 1704428657, 1704428657, 'a83c5eae96d22b60f72fa4c1a88aed04b88835af', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (118, 29, 11, '', 0, 40, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["abb8ae120157a6719fa9094c0b05ff6c11052efd"]}', '', 1704444552, 1704444552, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (119, 28, 11, '', 0, 40, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704444567, 1704444567, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (120, 4, 11, '', 0, 40, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1511625e8a850a70547c23e491168c2ac465a5e6">Merge pull request 'update Loai hinh csgdnn' (#39) from thinh into dev</a>', '', 1704444568, 1704444568, '1511625e8a850a70547c23e491168c2ac465a5e6', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (121, 29, 11, '', 0, 41, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["984ab8bc6fa2d923599f3f1241b528745fabcf57"]}', '', 1704446445, 1704446445, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (122, 28, 11, '', 0, 41, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704446462, 1704446462, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (123, 4, 11, '', 0, 41, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/ae5188bd0ff0b0618b16428867ff1d4c001a580b">Merge pull request 'add bao cao TN' (#40) from thinh into dev</a>', '', 1704446463, 1704446463, 'ae5188bd0ff0b0618b16428867ff1d4c001a580b', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (124, 29, 11, '', 0, 42, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["de9a1bc215d3c5c6f82b7648e8a6e063da51500f","a560a9bc5fc9ec190342b2afbed08fc5a252c0a9"]}', '', 1704464888, 1704464888, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (125, 28, 11, '', 0, 42, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704464904, 1704464904, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (126, 4, 11, '', 0, 42, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1f5dbedbc5ac086f344c259aa6523dd859e55509">Merge pull request 'thinh' (#41) from thinh into dev</a>', '', 1704464905, 1704464905, '1f5dbedbc5ac086f344c259aa6523dd859e55509', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (127, 29, 11, '', 0, 43, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["fcd71fd1c0ff68ec1a5ed94967bb2647a32ce3d5"]}', '', 1704526100, 1704526100, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (128, 28, 11, '', 0, 43, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704526119, 1704526119, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (130, 29, 11, '', 0, 44, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["119cfde3f4a42038a41db374df8ff0d36954b1b8"]}', '', 1704530828, 1704530828, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (129, 4, 11, '', 0, 43, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/6918848f9c759b000de2893835b5d1c027f8ba14">Merge pull request 'add menu bao ccao thong ke' (#42) from thinh into dev</a>', '', 1704526121, 1704526121, '6918848f9c759b000de2893835b5d1c027f8ba14', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (132, 4, 11, '', 0, 44, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1d296848df6920c81b2395ba376ff937f4b8849b">Merge pull request 'add file' (#43) from thinh into dev</a>', '', 1704530897, 1704530897, '1d296848df6920c81b2395ba376ff937f4b8849b', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (133, 29, 11, '', 0, 45, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["617e946b080534877c3abc010d4e567d2044a504"]}', '', 1704533560, 1704533560, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (134, 28, 11, '', 0, 45, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704533602, 1704533602, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (135, 4, 11, '', 0, 45, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c">Merge pull request 'add 4 task bao cao' (#44) from thinh into dev</a>', '', 1704533603, 1704533603, '4e8ea1f02f5289c8468cfd0c400fca55b47d1e7c', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (136, 29, 11, '', 0, 46, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["bd49447e927e089e113e894c4cecbbc57f723a98"]}', '', 1704534497, 1704534497, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (137, 28, 11, '', 0, 46, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704534540, 1704534540, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (138, 4, 11, '', 0, 46, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/b8964d98cd5165235ae9910046babd2b3cb7bf55">Merge pull request 'phan row bao cao nha giao' (#45) from thinh into dev</a>', '', 1704534542, 1704534542, 'b8964d98cd5165235ae9910046babd2b3cb7bf55', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (139, 29, 11, '', 0, 47, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["e5c3a3e2b2b1535da512fd85ccade301eb9e184d"]}', '', 1704534883, 1704534883, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (140, 28, 11, '', 0, 47, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704534900, 1704534900, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (141, 4, 11, '', 0, 47, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/d3c53ffa7ca196f1375e95e6cc5d49bc461272fc">Merge pull request 'fix css' (#46) from thinh into dev</a>', '', 1704534900, 1704534900, 'd3c53ffa7ca196f1375e95e6cc5d49bc461272fc', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (142, 29, 11, '', 0, 48, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["df9b7ce86feb0b36c4d22201228a3e7f52791f31"]}', '', 1704535518, 1704535518, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (143, 28, 11, '', 0, 48, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704535534, 1704535534, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (144, 4, 11, '', 0, 48, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/0d37213eee90283bab8283fb75293086478de453">Merge pull request 'fix css' (#47) from thinh into dev</a>', '', 1704535535, 1704535535, '0d37213eee90283bab8283fb75293086478de453', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (145, 29, 11, '', 0, 49, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["9748ba33191bfbf094a58a9f8070796b54ca6c95"]}', '', 1704538839, 1704538839, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (146, 28, 11, '', 0, 49, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704538858, 1704538858, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (147, 4, 11, '', 0, 49, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/95f1005c26023ce855c24052f06d6e81ce780724">Merge pull request 'fix height body item menu' (#48) from thinh into dev</a>', '', 1704538859, 1704538859, '95f1005c26023ce855c24052f06d6e81ce780724', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (148, 29, 11, '', 0, 50, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["4d34351dde0810f72be0eb994338cf114049dace"]}', '', 1704540570, 1704540570, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (149, 28, 11, '', 0, 50, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704540615, 1704540615, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (150, 4, 11, '', 0, 50, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af">Merge pull request 'update title menu bao cao' (#49) from thinh into dev</a>', '', 1704540616, 1704540616, 'b7333f87ab25fd34ad03eb4ee99fb15f4e6a26af', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (151, 29, 11, '', 0, 51, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["78578129269292fceb7625c884e5ea7eed543acb"]}', '', 1704558888, 1704558888, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (152, 28, 11, '', 0, 51, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704558905, 1704558905, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (153, 4, 11, '', 0, 51, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/ab844c362a09a6559ca0a8a4b5d0ace86a82784b">Merge pull request 'fix giao dien' (#50) from thinh into dev</a>', '', 1704558907, 1704558907, 'ab844c362a09a6559ca0a8a4b5d0ace86a82784b', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (156, 4, 11, '', 0, 52, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/9088ce508353da84638b2c28888657686694e6d5">Merge pull request 'add ui screen' (#51) from thinh into dev</a>', '', 1704559663, 1704559663, '9088ce508353da84638b2c28888657686694e6d5', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (157, 29, 11, '', 0, 53, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["5185419c13b6fec46874892354cc8730462e41f4"]}', '', 1704561812, 1704561812, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (158, 28, 11, '', 0, 53, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704561828, 1704561828, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (159, 4, 11, '', 0, 53, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/06d085be3928daaed5477b3b93f0b645021dc268">Merge pull request 'update fontfamily' (#52) from thinh into dev</a>', '', 1704561831, 1704561831, '06d085be3928daaed5477b3b93f0b645021dc268', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (160, 29, 11, '', 0, 54, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["2a6e8489b87520d37042b61f7db2344e7af73158","45b9c678d73d0bd0daa0fe70c719bc40055f6428","b4cb97cfc03652702704d947d95da87772a7267a"]}', '', 1704563536, 1704563536, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (161, 28, 11, '', 0, 54, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704563577, 1704563577, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (162, 4, 11, '', 0, 54, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/2681e6728650033a8895e8b079f6af34a88c842c">Merge pull request 'thinh' (#53) from thinh into dev</a>', '', 1704563578, 1704563578, '2681e6728650033a8895e8b079f6af34a88c842c', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (163, 29, 11, '', 0, 55, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["de110d6bef4e4af5e2f1749a46e5000bab208e47"]}', '', 1704649712, 1704649712, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (164, 28, 11, '', 0, 55, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704649732, 1704649732, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (165, 4, 11, '', 0, 55, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/90acec64f4430f307723d76cea501291a61614f9">Merge pull request 'update search menu bao cao' (#54) from thinh into dev</a>', '', 1704649734, 1704649734, '90acec64f4430f307723d76cea501291a61614f9', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (166, 29, 11, '', 0, 56, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["1d8f88af23f789b2ede493c1d79dd803e096bb05"]}', '', 1704650081, 1704650081, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (167, 28, 11, '', 0, 56, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704650452, 1704650452, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (168, 4, 11, '', 0, 56, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/b9c768a9904229490cf45090e6edc9f229f94497">Merge pull request 'fix focus search' (#55) from thinh into dev</a>', '', 1704650455, 1704650455, 'b9c768a9904229490cf45090e6edc9f229f94497', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (169, 29, 11, '', 0, 57, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["e2df6c3cd66e9ec63b05f87cecacd0d7fb1c5e30","1648b96afc95a1c2a74360ae3223ec9016b6019e"]}', '', 1704679121, 1704679121, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (170, 28, 11, '', 0, 57, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704679141, 1704679141, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (171, 4, 11, '', 0, 57, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/17223a69f9d2c7982c99e9d063d7796bad0734ad">Merge pull request 'thinh' (#56) from thinh into dev</a>', '', 1704679143, 1704679143, '17223a69f9d2c7982c99e9d063d7796bad0734ad', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (172, 29, 11, '', 0, 58, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["128401d049b3f492a8950948ee794aca9bc472e4"]}', '', 1704679829, 1704679829, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (173, 28, 11, '', 0, 58, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704679844, 1704679844, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (174, 4, 11, '', 0, 58, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/a5dfd620c51a9baabd25312a8ee7268e03395cec">Merge pull request 'update search menu bao cao' (#57) from thinh into dev</a>', '', 1704679846, 1704679846, 'a5dfd620c51a9baabd25312a8ee7268e03395cec', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (175, 29, 11, '', 0, 59, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["4e4fdd8f67557bd5fa3129c9bad708d15b67971a"]}', '', 1704681575, 1704681575, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (176, 28, 11, '', 0, 59, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704681599, 1704681599, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (199, 29, 11, '', 0, 67, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["b51394f3145212044dd5954b808a0d9543bdaf5e","f84a3dfbb60e8522bd2a4e5b4bfc811486bce001"]}', '', 1704774825, 1704774825, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (177, 4, 11, '', 0, 59, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/480eb6217718c62029da79a52f43e3c0b31e5526">Merge pull request 'fix text tim kiem' (#58) from thinh into dev</a>', '', 1704681600, 1704681600, '480eb6217718c62029da79a52f43e3c0b31e5526', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (178, 29, 11, '', 0, 60, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["7f7c96671126ae1b236dd7b6f0ece8be147517c9"]}', '', 1704685353, 1704685353, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (179, 28, 11, '', 0, 60, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704685372, 1704685372, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (180, 4, 11, '', 0, 60, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/a2ef85dd7af229c8630f60b81daea4f3a2a04c43">Merge pull request 'upcode rang buoc' (#59) from thinh into dev</a>', '', 1704685374, 1704685374, 'a2ef85dd7af229c8630f60b81daea4f3a2a04c43', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (181, 29, 11, '', 0, 61, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["d47e007a7e3bf39970904a203d5c3b50fd7c355c"]}', '', 1704698139, 1704698139, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (182, 28, 11, '', 0, 61, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704698165, 1704698165, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (183, 4, 11, '', 0, 61, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf">Merge pull request 'fix giao dien' (#60) from thinh into dev</a>', '', 1704698168, 1704698168, 'c34cd8d2ed58ab8dea79d6b2d40fb6c5555affaf', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (184, 29, 11, '', 0, 62, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["dc1b5b62b753d93980b10f171b24d473d172b2c8"]}', '', 1704705500, 1704705500, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (185, 28, 11, '', 0, 62, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704705564, 1704705564, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (186, 4, 11, '', 0, 62, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/426a1faa2094a598744486c24ae40977eceee332">Merge pull request 'add detail gv nhieu co so' (#61) from thinh into dev</a>', '', 1704705565, 1704705565, '426a1faa2094a598744486c24ae40977eceee332', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (187, 29, 11, '', 0, 63, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["f4e3881a081a31795d2162f9cbc281b4aba8ef27"]}', '', 1704706459, 1704706459, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (188, 28, 11, '', 0, 63, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704706490, 1704706490, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (189, 4, 11, '', 0, 63, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/59b787e85b18879fb9d8f189914021acb7746405">Merge pull request 'fix css' (#62) from thinh into dev</a>', '', 1704706492, 1704706492, '59b787e85b18879fb9d8f189914021acb7746405', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (190, 29, 11, '', 0, 64, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["efc00fcfeaafade84d8cbe9eebd39891331630c5"]}', '', 1704707848, 1704707848, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (191, 28, 11, '', 0, 64, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704707882, 1704707882, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (192, 4, 11, '', 0, 64, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/5674ad927bb01fce2f1f31cb2bbee967c0147568">Merge pull request 'update filter year hs/sv' (#63) from thinh into dev</a>', '', 1704707883, 1704707883, '5674ad927bb01fce2f1f31cb2bbee967c0147568', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (193, 29, 11, '', 0, 65, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["cd975fd61522e19149dd713289ee1e0199a4c04d"]}', '', 1704766193, 1704766193, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (194, 28, 11, '', 0, 65, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704766275, 1704766275, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (195, 4, 11, '', 0, 65, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/2e4d83e639d3a02e175d16951cdb2e2654baab6a">Merge pull request 'change zindex ModalEditTTTN' (#64) from thinh into dev</a>', '', 1704766276, 1704766276, '2e4d83e639d3a02e175d16951cdb2e2654baab6a', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (196, 29, 11, '', 0, 66, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["ee30ed5c6abc2e3aeb6b7794dd2157cc533e1150"]}', '', 1704767038, 1704767038, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (197, 28, 11, '', 0, 66, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704767054, 1704767054, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (198, 4, 11, '', 0, 66, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/6e09f0acfd90921544a46a80a0fa99c37c13ecd1">Merge pull request 'fix zindex' (#65) from thinh into dev</a>', '', 1704767055, 1704767055, '6e09f0acfd90921544a46a80a0fa99c37c13ecd1', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (200, 28, 11, '', 0, 67, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704774842, 1704774842, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (201, 4, 11, '', 0, 67, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/4a1e20f14835559c8bb4f994be3bdbbaa72cdac2">Merge pull request 'thinh' (#66) from thinh into dev</a>', '', 1704774843, 1704774843, '4a1e20f14835559c8bb4f994be3bdbbaa72cdac2', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (202, 29, 11, '', 0, 68, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["ec6d8d8a3505bcf4a27e6c0a171427a0670b17bb"]}', '', 1704783849, 1704783849, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (203, 28, 11, '', 0, 68, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704783866, 1704783866, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (204, 4, 11, '', 0, 68, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/7d38765ee7248f74597c22ad61fac6a865a76263">Merge pull request 'update check requite bao cao' (#67) from thinh into dev</a>', '', 1704783868, 1704783868, '7d38765ee7248f74597c22ad61fac6a865a76263', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (205, 29, 11, '', 0, 69, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["f2389db592f2b5230471326f66fa942bbafb1ca4"]}', '', 1704784778, 1704784778, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (206, 28, 11, '', 0, 69, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704784795, 1704784795, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (207, 4, 11, '', 0, 69, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/e938e87dccb49b7a9c0fd0c02a54920b7ef0d925">Merge pull request 'add check trung chi tieu' (#68) from thinh into dev</a>', '', 1704784796, 1704784796, 'e938e87dccb49b7a9c0fd0c02a54920b7ef0d925', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (208, 29, 11, '', 0, 70, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["ba7fc72161054e3a1085ed4b8c70d84198ce961b"]}', '', 1704787809, 1704787809, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (209, 28, 11, '', 0, 70, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704787825, 1704787825, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (210, 4, 11, '', 0, 70, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/84e51ab1a10e1be4299a3924c9379a9732aa726b">Merge pull request 'add required tu ngay den ngay' (#69) from thinh into dev</a>', '', 1704787826, 1704787826, '84e51ab1a10e1be4299a3924c9379a9732aa726b', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (211, 29, 11, '', 0, 71, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["18d73caa2573e24d8b765dbac7ddb10d036a7e2c"]}', '', 1704807690, 1704807690, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (212, 28, 11, '', 0, 71, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704807707, 1704807707, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (213, 4, 11, '', 0, 71, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/ca8a43c962e9597749bca9604a23617d805bae38">Merge pull request 'add list choose cs gdnn' (#70) from thinh into dev</a>', '', 1704807709, 1704807709, 'ca8a43c962e9597749bca9604a23617d805bae38', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (214, 29, 11, '', 0, 72, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["60913e501d422158067d25f877b8db01f2433abe"]}', '', 1704853903, 1704853903, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (215, 28, 11, '', 0, 72, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704853918, 1704853918, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (216, 4, 11, '', 0, 72, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1669b03cec92558923e86c96f89e177f983d7e66">Merge pull request 'add btn gui mail nhac nho' (#71) from thinh into dev</a>', '', 1704853919, 1704853919, '1669b03cec92558923e86c96f89e177f983d7e66', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (217, 29, 11, '', 0, 73, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["919d45696e37045a2346ec721738b205ccb683a6"]}', '', 1704854937, 1704854937, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (218, 28, 11, '', 0, 73, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704854952, 1704854952, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (219, 4, 11, '', 0, 73, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/2450107fb2f67f6adad8cfe8683ded6dce63a0a2">Merge pull request 'fix thong bao loi hs + nha giao' (#72) from thinh into dev</a>', '', 1704854954, 1704854954, '2450107fb2f67f6adad8cfe8683ded6dce63a0a2', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (220, 29, 11, '', 0, 74, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["70f24e6d6cf607b25226c6469303429543dc99e2","a537b38790dca067cd5d107807932adb39f23a99"]}', '', 1704868562, 1704868562, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (221, 28, 11, '', 0, 74, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704868578, 1704868578, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (222, 4, 11, '', 0, 74, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/221a94ac133d4b35ce6145276c4094662a6fe4d1">Merge pull request 'thinh' (#73) from thinh into dev</a>', '', 1704868580, 1704868580, '221a94ac133d4b35ce6145276c4094662a6fe4d1', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (223, 29, 11, '', 0, 75, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["adee15cab9cef8728d2dbce1099fb43c2a2efabf"]}', '', 1704870390, 1704870390, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (224, 28, 11, '', 0, 75, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704870508, 1704870508, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (225, 4, 11, '', 0, 75, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/07b329f3e772c8eefb2d36090487965eef74c9e4">Merge pull request 'update search menu' (#74) from thinh into dev</a>', '', 1704870509, 1704870509, '07b329f3e772c8eefb2d36090487965eef74c9e4', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (226, 29, 11, '', 0, 76, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["e3e580b4e1bedadc760640fc3572e51a2a805b27"]}', '', 1704878197, 1704878197, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (227, 28, 11, '', 0, 76, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704878216, 1704878216, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (228, 4, 11, '', 0, 76, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/8cb811be2927c486df5dbb09a8aa0a63535709d3">Merge pull request 'add bao cao' (#75) from thinh into dev</a>', '', 1704878218, 1704878218, '8cb811be2927c486df5dbb09a8aa0a63535709d3', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (229, 29, 11, '', 0, 77, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["b72b77ce6d6441f022c666171f558d3b6ff8994f"]}', '', 1704878894, 1704878894, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (230, 28, 11, '', 0, 77, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704878912, 1704878912, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (231, 4, 11, '', 0, 77, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/d8568ef2cb388ffa029778d557c778ce2efa3353">Merge pull request 'fix info hoc vien' (#76) from thinh into dev</a>', '', 1704878912, 1704878912, 'd8568ef2cb388ffa029778d557c778ce2efa3353', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (232, 29, 11, '', 0, 78, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["b864b6c508a7e992ec724257ba8068066dea62c2"]}', '', 1704937755, 1704937755, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (233, 28, 11, '', 0, 78, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704937771, 1704937771, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (234, 4, 11, '', 0, 78, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/5b398e4f4feead79e0fcaa363254896d4c7749c3">Merge pull request 'change api kq tuyen sinh' (#77) from thinh into dev</a>', '', 1704937772, 1704937772, '5b398e4f4feead79e0fcaa363254896d4c7749c3', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (235, 29, 11, '', 0, 79, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["d182a2a0bf08c8ccaca3d9a68a87540beb06e085"]}', '', 1704944128, 1704944128, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (236, 28, 11, '', 0, 79, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704944215, 1704944215, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (237, 4, 11, '', 0, 79, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/b39634acf119d7a5698c952dfd10dc0e1ee5bb3d">Merge pull request 'style header' (#78) from thinh into dev</a>', '', 1704944217, 1704944217, 'b39634acf119d7a5698c952dfd10dc0e1ee5bb3d', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (238, 29, 11, '', 0, 80, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["d311096c84e27b198fcdbef4c3f0a5ca1cc0cc9d"]}', '', 1704945579, 1704945579, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (239, 28, 11, '', 0, 80, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704945594, 1704945594, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (240, 4, 11, '', 0, 80, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/414c6952e2434c3fc7f37c73c1309937925396c6">Merge pull request 'add ty le tuyen sinh tot nghiep' (#79) from thinh into dev</a>', '', 1704945596, 1704945596, '414c6952e2434c3fc7f37c73c1309937925396c6', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (241, 29, 11, '', 0, 81, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["39cb06392b78a4b3529ef0a69ecdc485adfd1a06"]}', '', 1704947470, 1704947470, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (242, 28, 11, '', 0, 81, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704947505, 1704947505, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (243, 4, 11, '', 0, 81, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/29e0c4ea27c7052d9017a2b0896367a0bab5d9db">Merge pull request 'fix bao cao' (#80) from thinh into dev</a>', '', 1704947505, 1704947505, '29e0c4ea27c7052d9017a2b0896367a0bab5d9db', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (244, 29, 11, '', 0, 82, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["f67d1811ee946b4368988f806d6c91b5161f2aca"]}', '', 1704956677, 1704956677, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (245, 28, 11, '', 0, 82, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704956850, 1704956850, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (246, 4, 11, '', 0, 82, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/e8b876ae81f072d85a259f7fe20b4629f98da421">Merge pull request 'fix loi bao cao' (#81) from thinh into dev</a>', '', 1704956851, 1704956851, 'e8b876ae81f072d85a259f7fe20b4629f98da421', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (247, 29, 11, '', 0, 83, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["6fe0578df227fb4bd84cba9bc4376c0048ba5af3"]}', '', 1704958012, 1704958012, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (248, 28, 11, '', 0, 83, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704958041, 1704958041, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (249, 4, 11, '', 0, 83, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/891890aa28aae52d5c4d12f2b351251d3b1be143">Merge pull request 'fix hidden err bao cao' (#82) from thinh into dev</a>', '', 1704958042, 1704958042, '891890aa28aae52d5c4d12f2b351251d3b1be143', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (250, 29, 11, '', 0, 84, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["2ea9bc82fbf36de091bb11804d7a7ffae089c611"]}', '', 1704990704, 1704990704, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (251, 28, 11, '', 0, 84, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1704990830, 1704990830, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (252, 4, 11, '', 0, 84, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/50815ab17a48609b68bcfab8f7f40e59e7dcb4f3">Merge pull request 'add btn gui mail' (#83) from thinh into dev</a>', '', 1704990831, 1704990831, '50815ab17a48609b68bcfab8f7f40e59e7dcb4f3', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (253, 29, 11, '', 0, 85, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["7f5f8927493694fa7b669e9f03f9b7cb95fda38b","d727cc3cd0303928173eddab019be9d9615d69da"]}', '', 1705025960, 1705025960, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (254, 28, 11, '', 0, 85, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705025976, 1705025976, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (255, 4, 11, '', 0, 85, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/d48e38d9a17ce739803e4e98d015c2fc443742ac">Merge pull request 'fix change so nam' (#84) from thinh into dev</a>', '', 1705025976, 1705025976, 'd48e38d9a17ce739803e4e98d015c2fc443742ac', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (256, 29, 11, '', 0, 86, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["c78cbbacb228029e2f7904edb91659aa06135be7"]}', '', 1705030725, 1705030725, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (257, 28, 11, '', 0, 86, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705030758, 1705030758, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (258, 4, 11, '', 0, 86, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/6e16637a65f7d4d092a3cdbdbd178eb1636964e1">Merge pull request 'add fuc in send gmail' (#85) from thinh into dev</a>', '', 1705030759, 1705030759, '6e16637a65f7d4d092a3cdbdbd178eb1636964e1', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (259, 29, 11, '', 0, 87, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["bf230208b1efd148c1dec00f3c4eb158311100bd"]}', '', 1705044513, 1705044513, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (260, 28, 11, '', 0, 87, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705044537, 1705044537, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (261, 4, 11, '', 0, 87, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/6189e5347420d4bbcee5c4f550ed3cd17a77ba41">Merge pull request 'fix icon user' (#86) from thinh into dev</a>', '', 1705044538, 1705044538, '6189e5347420d4bbcee5c4f550ed3cd17a77ba41', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (262, 29, 11, '', 0, 88, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["8d033bdc680e69f37d6b0c7530e23ace16ad7ab6"]}', '', 1705045391, 1705045391, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (263, 28, 11, '', 0, 88, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705045581, 1705045581, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (264, 4, 11, '', 0, 88, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/1b5b07b0d95cd7b123fbc052e003045a1ea4530f">Merge pull request 'fix api tong hop so lieu tuyen sinh' (#87) from thinh into dev</a>', '', 1705045583, 1705045583, '1b5b07b0d95cd7b123fbc052e003045a1ea4530f', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (265, 29, 11, '', 0, 89, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f"]}', '', 1705047313, 1705047313, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (266, 28, 11, '', 0, 89, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705047329, 1705047329, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (267, 4, 11, '', 0, 89, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/9dbf9d1817992c4fee7c955f584497c9faefcc50">Merge pull request 'fix bao cao tuyen sinh nn/nam' (#88) from thinh into dev</a>', '', 1705047330, 1705047330, '9dbf9d1817992c4fee7c955f584497c9faefcc50', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (268, 29, 11, '', 0, 90, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["41e50f4abb6a643eb77c56ef5d517a3b404880ea","18d5c8f72559020069d731f9b8b1e4073a955df7"]}', '', 1705050071, 1705050071, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (269, 28, 11, '', 0, 90, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705050102, 1705050102, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (270, 4, 11, '', 0, 90, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/773815950340a50498ed3995ebb83bdcacecc237">Merge pull request 'thinh' (#89) from thinh into dev</a>', '', 1705050103, 1705050103, '773815950340a50498ed3995ebb83bdcacecc237', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (271, 29, 11, '', 0, 91, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63"]}', '', 1705052725, 1705052725, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (272, 28, 11, '', 0, 91, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705052742, 1705052742, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (273, 4, 11, '', 0, 91, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6">Merge pull request 'hidden kehoachdapheduyet' (#90) from thinh into dev</a>', '', 1705052743, 1705052743, '4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (274, 29, 11, '', 0, 92, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1"]}', '', 1705207982, 1705207982, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (275, 28, 11, '', 0, 92, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705208013, 1705208013, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (276, 4, 11, '', 0, 92, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/7b0e4a3aa34a91347178a93361fc9e193abd595d">Merge pull request 'add menu thong bao' (#91) from thinh into dev</a>', '', 1705208015, 1705208015, '7b0e4a3aa34a91347178a93361fc9e193abd595d', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (277, 29, 11, '', 0, 93, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["5562d2823f0ace47c1fca2f8fe994e65241e8bea"]}', '', 1705311360, 1705311360, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (278, 28, 11, '', 0, 93, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705311410, 1705311410, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (279, 4, 11, '', 0, 93, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/9b29db610b20afcdaeec0f83db697b5c93ff5abf">Merge pull request 'add full action' (#92) from thinh into dev</a>', '', 1705311410, 1705311410, '9b29db610b20afcdaeec0f83db697b5c93ff5abf', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (280, 29, 11, '', 0, 94, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["489a7a7fdc58d8144acd13c4cd58f66912cb341c"]}', '', 1705311943, 1705311943, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (281, 28, 11, '', 0, 94, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705312011, 1705312011, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (282, 4, 11, '', 0, 94, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/5b4556aaf08d874c598d4e9213153ede266d695d">Merge pull request 'fix bug' (#93) from thinh into dev</a>', '', 1705312013, 1705312013, '5b4556aaf08d874c598d4e9213153ede266d695d', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (283, 29, 11, '', 0, 95, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["7b2383b817c645ebfa98deeb3863743633d3deae"]}', '', 1705312951, 1705312951, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (284, 28, 11, '', 0, 95, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705312967, 1705312967, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (285, 4, 11, '', 0, 95, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/c1781de2627ad32061687b7324e88a13d1040bb1">Merge pull request 'fix bug' (#94) from thinh into dev</a>', '', 1705312969, 1705312969, 'c1781de2627ad32061687b7324e88a13d1040bb1', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (286, 29, 11, '', 0, 96, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["8f60ed32b2d8d1c029f54144b9426d2b865b6bd9"]}', '', 1705320581, 1705320581, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (287, 28, 11, '', 0, 96, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705320610, 1705320610, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (288, 4, 11, '', 0, 96, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518">Merge pull request 'fix giao dien' (#95) from thinh into dev</a>', '', 1705320611, 1705320611, 'cebbfb98f2b56f439f19e5720eb0f1bab9f3b518', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (289, 29, 11, '', 0, 97, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["da91d00953fc86aef94866d081a1d25a46b94d02"]}', '', 1705321132, 1705321132, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (290, 28, 11, '', 0, 97, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705321148, 1705321148, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (291, 4, 11, '', 0, 97, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/81ebe9e1ea91c561cfd2d8b2778830a808e2104e">Merge pull request 'fix loi' (#96) from thinh into dev</a>', '', 1705321149, 1705321149, '81ebe9e1ea91c561cfd2d8b2778830a808e2104e', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (292, 29, 11, '', 0, 98, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["a328fa9eb323e241b28e295cac0680456d0a1338"]}', '', 1705321821, 1705321821, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (293, 28, 11, '', 0, 98, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705321840, 1705321840, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (294, 4, 11, '', 0, 98, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/99df42f181517ecde830cfba0d18f5bb48283de8">Merge pull request 'add screen' (#97) from thinh into dev</a>', '', 1705321842, 1705321842, '99df42f181517ecde830cfba0d18f5bb48283de8', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (295, 29, 11, '', 0, 99, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["67a5311e4cf2834ef7fc0b767015be48d669696d"]}', '', 1705329303, 1705329303, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (296, 28, 11, '', 0, 99, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705329329, 1705329329, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (297, 4, 11, '', 0, 99, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/ddb1e1f9c86e1477341fd41cae9b0350d5807140">Merge pull request 'fix search all page' (#98) from thinh into dev</a>', '', 1705329330, 1705329330, 'ddb1e1f9c86e1477341fd41cae9b0350d5807140', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (298, 0, 1, 'dungnguyn', 5662031, 100, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Phiên họp đã bắt đầu** to **Phiên họp đã bắt đầu{+ + tài khoản thư ký+}**', '', 1637218209, 1637218209, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (299, 0, 1, 'dungnguyn', 5662031, 100, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637218410, 1637218410, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (300, 0, 1, 'cognvn', 4583524, 100, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1637218432, 1637218432, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (301, 0, 1, 'dungnguyn', 5662031, 100, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Phiên họp đã bắt đầu + tài khoản thư ký** to **{+Error - +}Phiên họp đã bắt đầu + tài khoản thư ký**', '', 1637229783, 1637229783, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (302, 0, 1, 'dungnguyn', 5662031, 100, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1637572212, 1637572212, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (303, 0, 1, 'dungnguyn', 5662031, 101, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637219038, 1637219038, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (304, 0, 1, 'dungnguyn', 5662031, 101, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1637219045, 1637219045, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (305, 0, 1, 'dungnguyn', 5662031, 102, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637219516, 1637219516, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (306, 0, 1, 'dungnguyn', 5662031, 102, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637219544, 1637219544, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (307, 0, 1, 'dungnguyn', 5662031, 103, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1637228052, 1637228052, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (308, 0, 1, 'dungnguyn', 5662031, 103, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Thành viên thuộc nhóm Ủy ban nhân dân mới được biểu quyết + phát biểu còn lại chỉ được phát biểu** to **{+Error - +}Thành viên thuộc nhóm Ủy ban nhân dân mới được biểu quyết + phát biểu còn lại chỉ được phát biểu{+.+}**', '', 1637229616, 1637229616, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (309, 0, 1, 'dungnguyn', 5662031, 103, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637229616, 1637229616, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (310, 0, 1, 'hoatrongkylovestory1999', 8539277, 103, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1637725900, 1637725900, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (311, 0, 1, 'dungnguyn', 5662031, 104, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tuan1996qn', '', 1637228146, 1637228146, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (312, 0, 1, 'tuan1996qn', 4584372, 104, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn and unassigned @tuan1996qn', '', 1637229688, 1637229688, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (313, 0, 1, 'dungnguyn', 5662031, 104, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **App luôn bật màn hình.** to **{+Task - +}App luôn bật màn hình.**', '', 1637229741, 1637229741, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (314, 0, 1, 'dungnguyn', 5662031, 104, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637229741, 1637229741, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (315, 0, 1, 'tuan1996qn', 4584372, 104, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'made the issue confidential', '', 1637229770, 1637229770, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (316, 0, 1, 'gdtvietnam2019', 4584319, 104, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'made the issue visible to everyone', '', 1637229827, 1637229827, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (317, 0, 1, 'tiensybinhdinh', 10245630, 105, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Error - Trong phiên họpđể ngang màn hìnhĐT không load được DS phát biểu** to **Error - Trong phiên họp{+ +}để ngang màn hình{+ +}ĐT không load được DS phát biểu**', '', 1637288278, 1637288278, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (318, 0, 1, 'tiensybinhdinh', 10245630, 105, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637289416, 1637289416, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (319, 0, 1, 'tiensybinhdinh', 10245630, 105, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637289451, 1637289451, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (320, 0, 1, 'dungnguyn', 5662031, 105, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1637304192, 1637304192, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (321, 0, 1, 'dungnguyn', 5662031, 105, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1637304505, 1637304505, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (322, 0, 1, 'tiensybinhdinh', 10245630, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637289679, 1637289679, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (323, 0, 1, 'tiensybinhdinh', 10245630, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Error - Bấm xem trước vấn đề phiên họp hiện ra thanh rỗng** to **Error - Bấm xem trước vấn đề phiên họp hiện ra thanh rỗng{+ + Bố cục vấn đề chưa thảo luận không hài hòa+}**', '', 1637289951, 1637289951, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (324, 0, 1, 'tiensybinhdinh', 10245630, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637289951, 1637289951, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (325, 0, 1, 'dungnguyn', 5662031, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1637291636, 1637291636, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (326, 0, 1, 'tiensybinhdinh', 10245630, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Error - Bấm xem trước vấn đề phiên họp hiện ra thanh rỗng + Bố cục vấn đề chưa thảo luận không hài hòa** to **Error - Bấm xem trước vấn đề phiên họp hiện ra thanh rỗng {+(phiên họp chưa diễn ra) +}+ Bố cục vấn đề chưa thảo luận không hài hòa**', '', 1637291707, 1637291707, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (327, 0, 1, 'hoatrongkylovestory1999', 8539277, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1637567475, 1637567475, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (328, 0, 1, 'tiensybinhdinh', 10245630, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Error - {-Bấm xem trước vấn đề phiên họp hiện ra thanh rỗng (phiên họp chưa diễn ra) + Bố cụ-}c vấn đề {-chưa -}thảo luận {-không hài hòa-}** to **Error - {+Chủ trì mở đượ+}c vấn đề thảo luận {+từ bên ngoài xem+}**', '', 1637573700, 1637573700, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (329, 0, 1, 'tiensybinhdinh', 10245630, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637573700, 1637573700, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (330, 0, 1, 'tiensybinhdinh', 10245630, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @tiensybinhdinh', '', 1637573729, 1637573729, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (331, 0, 1, 'hoatrongkylovestory1999', 8539277, 106, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1637573999, 1637573999, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (332, 0, 1, 'dungnguyn', 5662031, 107, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1637290626, 1637290626, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (333, 0, 1, 'dungnguyn', 5662031, 107, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234 and unassigned @dungnguyn', '', 1637304342, 1637304342, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (334, 0, 1, 'datqn1234', 8343428, 107, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637315760, 1637315760, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (335, 0, 1, 'dungnguyn', 5662031, 108, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637295489, 1637295489, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (336, 0, 1, 'datqn1234', 8343428, 108, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637574878, 1637574878, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (337, 0, 1, 'dungnguyn', 5662031, 109, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637295642, 1637295642, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (338, 0, 1, 'datqn1234', 8343428, 109, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637564401, 1637564401, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (339, 0, 1, 'datqn1234', 8343428, 109, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn and unassigned @datqn1234', '', 1637574794, 1637574794, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (340, 0, 1, 'datqn1234', 8343428, 109, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1637574798, 1637574798, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (341, 0, 1, 'tiensybinhdinh', 10245630, 110, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637306136, 1637306136, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (342, 0, 1, 'datqn1234', 8343428, 110, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1638426007, 1638426007, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (343, 0, 1, 'tiensybinhdinh', 10245630, 111, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1637305948, 1637305948, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (344, 0, 1, 'dungnguyn', 5662031, 111, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1637546793, 1637546793, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (345, 0, 1, 'tiensybinhdinh', 10245630, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637306375, 1637306375, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (346, 0, 1, 'gdtvietnam2019', 4584319, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @gdtvietnam2019', '', 1637307440, 1637307440, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (347, 0, 1, 'gdtvietnam2019', 4584319, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'unassigned @gdtvietnam2019', '', 1637307446, 1637307446, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (348, 0, 1, 'datqn1234', 8343428, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637307500, 1637307500, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (349, 0, 1, 'datqn1234', 8343428, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637315776, 1637315776, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (350, 0, 1, 'tiensybinhdinh', 10245630, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Error - Tại phiên họp khung Xác nhận và Báo Vắng đè chen phần khác** to **Error - Tại phiên họp khung Xác nhận và Báo Vắng đè chen phần khác{+ + (XÁC NHẬN BẮT ĐẦU PHIÊN HỌP BỊ ĐÈ)+}**', '', 1637551295, 1637551295, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (351, 0, 1, 'datqn1234', 8343428, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234 and unassigned @tiensybinhdinh', '', 1637554500, 1637554500, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (352, 0, 1, 'tiensybinhdinh', 10245630, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637561821, 1637561821, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (353, 0, 1, 'tiensybinhdinh', 10245630, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Error - Tại phiên họp khung {-Xác nhận và Báo Vắng đè chen phần khác + (XÁC NHẬN BẮT ĐẦU PHIÊN HỌP BỊ ĐÈ)-}** to **Error - Tại phiên họp khung {+ XÁC NHẬN BẮT ĐẦU PHIÊN HỌP BỊ ĐÈ + Hiển thị ủy quyền giúp từ thư ký cho chủ trì lỗi+}**', '', 1637561928, 1637561928, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (354, 0, 1, 'datqn1234', 8343428, 112, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637574857, 1637574857, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (355, 0, 1, 'tiensybinhdinh', 10245630, 113, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637307914, 1637307914, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (356, 0, 1, 'datqn1234', 8343428, 113, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637307947, 1637307947, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (357, 0, 1, 'datqn1234', 8343428, 113, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637315796, 1637315796, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (358, 0, 1, 'tiensybinhdinh', 10245630, 113, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Error - Trong kho tài liệu hiễn thị lỗi rỗng (Phiên 18/11/2021 2) + Nên làm sao để biết được đó là phiên nào** to **Error - {+(+}Trong kho tài liệu hiễn thị lỗi rỗng (Phiên 18/11/2021 2) {+XONG)) +}+ {+(+}Nên làm sao để biết được đó là phiên nào{+ (XONG)) Bổ sung Hiển bị cắt chữ mất chữ+}**', '', 1637551601, 1637551601, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (359, 0, 1, 'tiensybinhdinh', 10245630, 113, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637551601, 1637551601, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (360, 0, 1, 'datqn1234', 8343428, 113, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234 and unassigned @tiensybinhdinh', '', 1637571019, 1637571019, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (361, 0, 1, 'datqn1234', 8343428, 113, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637575150, 1637575150, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (362, 0, 1, 'tiensybinhdinh', 10245630, 114, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637309503, 1637309503, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (363, 0, 1, 'datqn1234', 8343428, 114, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637309642, 1637309642, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (364, 0, 1, 'datqn1234', 8343428, 114, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637315808, 1637315808, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (365, 0, 1, 'tiensybinhdinh', 10245630, 114, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637566066, 1637566066, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (366, 0, 1, 'tiensybinhdinh', 10245630, 114, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637566183, 1637566183, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (367, 0, 1, 'dungnguyn', 5662031, 114, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234 and unassigned @tiensybinhdinh', '', 1637566193, 1637566193, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (368, 0, 1, 'datqn1234', 8343428, 114, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637574760, 1637574760, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (369, 0, 1, 'tiensybinhdinh', 10245630, 115, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637313449, 1637313449, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (370, 0, 1, 'tiensybinhdinh', 10245630, 115, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637313498, 1637313498, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (371, 0, 1, 'datqn1234', 8343428, 115, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637315818, 1637315818, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (372, 0, 1, 'datqn1234', 8343428, 115, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637574819, 1637574819, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (373, 0, 1, 'tiensybinhdinh', 10245630, 116, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637313718, 1637313718, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (374, 0, 1, 'datqn1234', 8343428, 116, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637315856, 1637315856, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (375, 0, 1, 'datqn1234', 8343428, 116, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637574776, 1637574776, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (376, 0, 1, 'dungnguyn', 5662031, 117, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637544051, 1637544051, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (377, 0, 1, 'datqn1234', 8343428, 117, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1637574839, 1637574839, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (378, 0, 1, 'dungnguyn', 5662031, 118, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1637564793, 1637564793, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (379, 0, 1, 'hoatrongkylovestory1999', 8539277, 118, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1637574037, 1637574037, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (380, 0, 1, 'tiensybinhdinh', 10245630, 119, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637550710, 1637550710, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (381, 0, 1, 'tiensybinhdinh', 10245630, 119, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **ERROR - Hiển thị vấn đề thảo luận trong phiên họp** to **ERROR - {+Chọn ý kiến thảo luận (Phiên họp vào từ thông báo) không được + +}Hiển thị vấn đề thảo luận trong phiên họp**', '', 1637550903, 1637550903, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (382, 0, 1, 'dungnguyn', 5662031, 119, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1637565704, 1637565704, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (383, 0, 1, 'dungnguyn', 5662031, 119, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1638513156, 1638513156, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (384, 0, 1, 'dungnguyn', 5662031, 120, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637565966, 1637565966, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (385, 0, 1, 'gdtvietnam2019', 4584319, 120, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 15, 2021', '', 1639559567, 1639559567, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (386, 0, 1, 'gdtvietnam2019', 4584319, 120, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639559587, 1639559587, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (387, 0, 1, 'gdtvietnam2019', 4584319, 120, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'removed due date', '', 1639559591, 1639559591, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (388, 0, 1, 'gdtvietnam2019', 4584319, 120, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'locked this issue', '', 1639559648, 1639559648, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (389, 0, 1, 'gdtvietnam2019', 4584319, 120, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'unlocked this issue', '', 1639559779, 1639559779, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (390, 0, 1, 'dungnguyn', 5662031, 121, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1637567959, 1637567959, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (391, 0, 1, 'dungnguyn', 5662031, 121, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1637829611, 1637829611, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (392, 0, 1, 'tiensybinhdinh', 10245630, 122, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637570967, 1637570967, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (393, 0, 1, 'tiensybinhdinh', 10245630, 122, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637570988, 1637570988, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (394, 0, 1, 'dungnguyn', 5662031, 122, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638429841, 1638429841, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (395, 0, 1, 'dungnguyn', 5662031, 122, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640224781, 1640224781, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (396, 0, 1, 'dungnguyn', 5662031, 123, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1641886518, 1641886518, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (397, 0, 1, 'datqn1234', 8343428, 124, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637640782, 1637640782, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (398, 0, 1, 'hoatrongkylovestory1999', 8539277, 124, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @datqn1234', '', 1638234592, 1638234592, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (399, 0, 1, 'hoatrongkylovestory1999', 8539277, 124, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1638256285, 1638256285, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (400, 0, 1, 'datqn1234', 8343428, 125, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637640813, 1637640813, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (401, 0, 1, 'datqn1234', 8343428, 125, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1638176656, 1638176656, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (402, 0, 1, 'dungnguyn', 5662031, 126, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637716188, 1637716188, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (403, 0, 1, 'dungnguyn', 5662031, 126, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637716195, 1637716195, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (404, 0, 1, 'datqn1234', 8343428, 126, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1638176639, 1638176639, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (405, 0, 1, 'dungnguyn', 5662031, 127, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1637744795, 1637744795, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (406, 0, 1, 'dungnguyn', 5662031, 127, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1637744799, 1637744799, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (407, 0, 1, 'hoatrongkylovestory1999', 8539277, 127, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @datqn1234', '', 1637813781, 1637813781, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (408, 0, 1, 'hoatrongkylovestory1999', 8539277, 127, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1637933809, 1637933809, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (409, 0, 1, 'dungnguyn', 5662031, 128, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638413583, 1638413583, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (410, 0, 1, 'dungnguyn', 5662031, 128, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'added [1 design](/gdt_hophanh/meet-react-native/-/issues/31/designs?version=302918)', '', 1638413614, 1638413614, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (411, 0, 1, 'dungnguyn', 5662031, 128, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'added [1 design](/gdt_hophanh/meet-react-native/-/issues/31/designs?version=302919)', '', 1638413626, 1638413626, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (412, 0, 1, 'dungnguyn', 5662031, 128, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638413745, 1638413745, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (413, 0, 1, 'dungnguyn', 5662031, 128, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638413790, 1638413790, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (414, 0, 1, 'dungnguyn', 5662031, 128, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638413807, 1638413807, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (415, 0, 1, 'datqn1234', 8343428, 128, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1638518694, 1638518694, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (416, 0, 1, 'datqn1234', 8343428, 129, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638425964, 1638425964, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (417, 0, 1, 'dungnguyn', 5662031, 129, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638425987, 1638425987, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (418, 0, 1, 'datqn1234', 8343428, 129, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1638518705, 1638518705, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (419, 0, 1, 'dungnguyn', 5662031, 130, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1638426579, 1638426579, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (420, 0, 1, 'dungnguyn', 5662031, 130, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638426664, 1638426664, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (421, 0, 1, 'dungnguyn', 5662031, 130, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1638783504, 1638783504, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (422, 0, 1, 'dungnguyn', 5662031, 131, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1638427819, 1638427819, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (423, 0, 1, 'dungnguyn', 5662031, 131, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @dungnguyn', '', 1638427823, 1638427823, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (424, 0, 1, 'dungnguyn', 5662031, 131, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638427898, 1638427898, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (425, 0, 1, 'hoatrongkylovestory1999', 8539277, 131, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1638520267, 1638520267, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (426, 0, 1, 'tiensybinhdinh', 10245630, 131, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'Chọn ý kiến khác không được báo xác nhận lỗi', '', 1638758866, 1638758866, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (427, 0, 1, 'hoatrongkylovestory1999', 8539277, 131, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'unassigned @tiensybinhdinh', '', 1638849160, 1638849160, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (428, 0, 1, 'hoatrongkylovestory1999', 8539277, 131, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh', '', 1638849164, 1638849164, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (429, 0, 1, 'dungnguyn', 5662031, 132, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1638428676, 1638428676, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (430, 0, 1, 'dungnguyn', 5662031, 132, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1638513229, 1638513229, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (431, 0, 1, 'dungnguyn', 5662031, 133, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1638429893, 1638429893, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (432, 0, 1, 'dungnguyn', 5662031, 133, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1638513237, 1638513237, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (433, 0, 1, 'dungnguyn', 5662031, 134, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1638499944, 1638499944, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (434, 0, 1, 'dungnguyn', 5662031, 134, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @dungnguyn', '', 1638513218, 1638513218, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (435, 0, 1, 'tiensybinhdinh', 10245630, 135, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638761034, 1638761034, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (436, 0, 1, 'hoatrongkylovestory1999', 8539277, 135, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'này do chuyển phiên họp từ trong api từ hoàn thành sang đăng kí lại nó lỗi chứ hk do người dùng', '', 1638838712, 1638838712, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (437, 0, 1, 'tiensybinhdinh', 10245630, 136, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638761386, 1638761386, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (438, 0, 1, 'dungnguyn', 5662031, 136, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638783710, 1638783710, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (439, 0, 1, 'hoatrongkylovestory1999', 8539277, 136, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @datqn1234', '', 1638844381, 1638844381, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (440, 0, 1, 'hoatrongkylovestory1999', 8539277, 136, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'Xem lại hộ e', '', 1638850039, 1638850039, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (441, 0, 1, 'hoatrongkylovestory1999', 8539277, 136, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1638850045, 1638850045, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (442, 0, 1, 'tiensybinhdinh', 10245630, 136, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638936153, 1638936153, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (443, 0, 1, 'tiensybinhdinh', 10245630, 137, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Tính năng - Giao diện thống kê ý kiến thảo luận (số thập phân quá dài)** to **Tính năng - {+ Load xem lại ý kiến bị chậm + +}Giao diện thống kê ý kiến thảo luận (số thập phân quá dài)**', '', 1638761653, 1638761653, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (444, 0, 1, 'tiensybinhdinh', 10245630, 137, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638761653, 1638761653, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (445, 0, 1, 'dungnguyn', 5662031, 137, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1638783762, 1638783762, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (446, 0, 1, 'hoatrongkylovestory1999', 8539277, 137, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1638850208, 1638850208, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (447, 0, 1, 'dungnguyn', 5662031, 138, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638784104, 1638784104, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (448, 0, 1, 'dungnguyn', 5662031, 138, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Tài khoản chủ trì, từ dashboard vào bắt đầu phiên họp vào th{-ằ-}ng diễn biến phiên họp, bấm quay lại vẫn còn thông báo bắt đầu phiên họp.** to **Tài khoản chủ trì, từ dashboard vào bắt đầu phiên họp vào th{+ẳ+}ng diễn biến phiên họp, bấm quay lại vẫn còn thông báo bắt đầu phiên họp.**', '', 1638784107, 1638784107, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (449, 0, 1, 'dungnguyn', 5662031, 138, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638784107, 1638784107, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (450, 0, 1, 'datqn1234', 8343428, 138, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1639032045, 1639032045, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (451, 0, 1, 'dungnguyn', 5662031, 139, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638784265, 1638784265, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (452, 0, 1, 'datqn1234', 8343428, 139, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1639122774, 1639122774, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (453, 0, 1, 'dungnguyn', 5662031, 140, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638784672, 1638784672, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (454, 0, 1, 'datqn1234', 8343428, 140, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1639032012, 1639032012, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (455, 0, 1, 'tiensybinhdinh', 10245630, 141, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638935461, 1638935461, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (456, 0, 1, 'dungnguyn', 5662031, 141, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1638944634, 1638944634, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (457, 0, 1, 'dungnguyn', 5662031, 142, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1638934836, 1638934836, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (458, 0, 1, 'dungnguyn', 5662031, 142, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638934900, 1638934900, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (459, 0, 1, 'tiensybinhdinh', 10245630, 143, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638936789, 1638936789, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (460, 0, 1, 'tiensybinhdinh', 10245630, 143, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1638937471, 1638937471, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (461, 0, 1, 'hoatrongkylovestory1999', 8539277, 143, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1638945456, 1638945456, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (462, 0, 1, 'hoatrongkylovestory1999', 8539277, 143, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @hoatrongkylovestory1999', '', 1638947061, 1638947061, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (463, 0, 1, 'datqn1234', 8343428, 145, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639122095, 1639122095, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (464, 0, 1, 'datqn1234', 8343428, 145, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tiensybinhdinh and unassigned @datqn1234', '', 1639123298, 1639123298, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (465, 0, 1, 'dungnguyn', 5662031, 146, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639117779, 1639117779, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (466, 0, 1, 'dungnguyn', 5662031, 146, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639118590, 1639118590, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (467, 0, 1, 'dungnguyn', 5662031, 146, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639121131, 1639121131, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (468, 0, 1, 'tiensybinhdinh', 10245630, 146, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639560204, 1639560204, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (469, 0, 1, 'dungnguyn', 5662031, 146, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639618180, 1639618180, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (470, 0, 1, 'dungnguyn', 5662031, 147, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639117940, 1639117940, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (471, 0, 1, 'datqn1234', 8343428, 147, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639122176, 1639122176, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (472, 0, 1, 'dungnguyn', 5662031, 148, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639121144, 1639121144, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (473, 0, 1, 'hoatrongkylovestory1999', 8539277, 148, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @dungnguyn', '', 1641885093, 1641885093, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (474, 0, 1, 'dungnguyn', 5662031, 149, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639121165, 1639121165, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (475, 0, 1, 'dungnguyn', 5662031, 149, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @dungnguyn', '', 1641783874, 1641783874, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (476, 0, 1, 'dungnguyn', 5662031, 150, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639121172, 1639121172, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (477, 0, 1, 'datqn1234', 8343428, 151, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639122727, 1639122727, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (478, 0, 1, 'datqn1234', 8343428, 151, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639562671, 1639562671, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (479, 0, 1, 'gdtvietnam2019', 4584319, 151, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639620681, 1639620681, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (480, 0, 1, 'dungnguyn', 5662031, 152, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639121180, 1639121180, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (481, 0, 1, 'dungnguyn', 5662031, 153, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639121202, 1639121202, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (482, 0, 1, 'dungnguyn', 5662031, 154, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Kiểm tralại GRPC của vấn đề đối với tài khoản chủ trì và thư ký.** to **Kiểm tra{+ +}lại GRPC của vấn đề đối với tài khoản chủ trì và thư ký.**', '', 1639119956, 1639119956, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (483, 0, 1, 'dungnguyn', 5662031, 154, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639121218, 1639121218, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (484, 0, 1, 'dungnguyn', 5662031, 156, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639121238, 1639121238, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (485, 0, 1, 'dungnguyn', 5662031, 157, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639121252, 1639121252, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (486, 0, 1, 'hoatrongkylovestory1999', 8539277, 157, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'Tiêu đề vấn đề,tiêu đề nội dung có thể xem ở ''Test giao diện 10/12/2021'' Đã khóa xoay màn hình', '', 1639125239, 1639125239, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (487, 0, 1, 'dungnguyn', 5662031, 158, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639120571, 1639120571, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (488, 0, 1, 'dungnguyn', 5662031, 158, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639121260, 1639121260, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (489, 0, 1, 'dungnguyn', 5662031, 159, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639121268, 1639121268, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (490, 0, 1, 'dungnguyn', 5662031, 160, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639121002, 1639121002, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (491, 0, 1, 'dungnguyn', 5662031, 161, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639368365, 1639368365, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (492, 0, 1, 'dungnguyn', 5662031, 162, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639368440, 1639368440, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (493, 0, 1, 'tiensybinhdinh', 10245630, 162, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'Mất luôn chữ vào họp (Phiên họp của tớ ngày 16/12)', '', 1639624363, 1639624363, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (494, 0, 1, 'datqn1234', 8343428, 162, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639714934, 1639714934, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (495, 0, 1, 'datqn1234', 8343428, 163, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639445853, 1639445853, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (496, 0, 1, 'datqn1234', 8343428, 163, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639468459, 1639468459, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (497, 0, 1, 'dungnguyn', 5662031, 164, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639390291, 1639390291, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (498, 0, 1, 'datqn1234', 8343428, 165, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639445848, 1639445848, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (499, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639557210, 1639557210, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (500, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Đăng ký phát biểu{-, chỉ định phát biểu cho khách mời-}.** to **Đăng ký phát biểu.**', '', 1639561237, 1639561237, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (501, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639561237, 1639561237, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (502, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639561822, 1639561822, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (503, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639562790, 1639562790, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (504, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639563030, 1639563030, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (505, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639563061, 1639563061, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (506, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639563406, 1639563406, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (507, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639618206, 1639618206, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (508, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639627164, 1639627164, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (509, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639627299, 1639627299, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (510, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Chỉ định phát biểu cho khách mời.** as completed', '', 1639627312, 1639627312, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (511, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Chỉ định phát biểu cho khách mời.** as incomplete', '', 1639627315, 1639627315, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (512, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639628745, 1639628745, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (513, 0, 1, 'cognvn', 4583524, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as completed', '', 1639628761, 1639628761, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (582, 0, 1, 'gdtvietnam2019', 4584319, 171, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639649811, 1639649811, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (514, 0, 1, 'cognvn', 4583524, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as incomplete', '', 1639628763, 1639628763, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (515, 0, 1, 'cognvn', 4583524, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as completed', '', 1639628765, 1639628765, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (516, 0, 1, 'cognvn', 4583524, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as incomplete', '', 1639628768, 1639628768, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (517, 0, 1, 'cognvn', 4583524, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị thông báo cán bộ đã hoàn thành thu âm cho tất cả mọi người.** as completed', '', 1639628931, 1639628931, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (518, 0, 1, 'cognvn', 4583524, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị thông báo cán bộ đã hoàn thành thu âm cho tất cả mọi người.** as incomplete', '', 1639628937, 1639628937, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (519, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as completed', '', 1639630637, 1639630637, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (520, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as incomplete', '', 1639630638, 1639630638, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (521, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640080497, 1640080497, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (522, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị thông báo cán bộ đã hoàn thành thu âm cho tất cả mọi người.** as completed', '', 1640330740, 1640330740, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (523, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640331864, 1640331864, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (524, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Bắt đầu vấn đề, nếu còn ai đăng ký phát biểu thì hiển thị thông báo có muốn dừng phát biểu không.(Không cần làm đã hỏi anh Vũ).** as completed', '', 1640331880, 1640331880, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (525, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đổi api hủy đăng ký phát biểu từ hai thành một.** as completed', '', 1640332914, 1640332914, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (526, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Cảnh báo của đăng ký phát biểu vào từ contentmeeting bị đè.** as completed', '', 1640535346, 1640535346, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (527, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Cảnh báo của đăng ký phát biểu vào từ contentmeeting bị đè.** as incomplete', '', 1640535348, 1640535348, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (528, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thêm chủ trì,thư ký được dừng đăng ký phát biểu của cán bộ.** as completed', '', 1640653764, 1640653764, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (529, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640653853, 1640653853, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (530, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thêm lable để thể hiện đó là đăng ký phát biểu được chỉ định.** as completed', '', 1640653855, 1640653855, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (531, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Cảnh báo của đăng ký phát biểu vào từ contentmeeting bị đè.** as completed', '', 1640657446, 1640657446, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (532, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sửa nội dung bị tràn trong đăng ký phát biểu.** as completed', '', 1640658996, 1640658996, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (533, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thống kê đăng ký phát biểu chuyển thành biểu đồ tròn.** as completed', '', 1640682935, 1640682935, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (534, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Chỉ định phát biểu cho khách mời.** as completed', '', 1640830516, 1640830516, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (535, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as completed', '', 1640830517, 1640830517, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (536, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thứ tự danh sách đăng ký phát biểu là đang phát biểu, chờ, xong.** as completed', '', 1640830523, 1640830523, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (537, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as incomplete', '', 1640832133, 1640832133, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (538, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Chỉ định phát biểu cho khách mời.** as incomplete', '', 1640832135, 1640832135, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (539, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đăng ký phát biểu cho khách mời.** as completed', '', 1641195275, 1641195275, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (540, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Chỉ định phát biểu cho khách mời.** as completed', '', 1641204157, 1641204157, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (541, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1641257385, 1641257385, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (542, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị cho dù cán bộ ở bất kì vị trí nào trong nội dung phiên họp.** as completed', '', 1641262451, 1641262451, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (543, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1642154382, 1642154382, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (544, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1642154610, 1642154610, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (545, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị trên tất cả các nội dung thông báo hoặc ghi âm phát biểu.** as completed', '', 1643102484, 1643102484, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (546, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sửa biểu đồ đăng ký phát biểu (màu của biểu đồ).** as completed', '', 1643102487, 1643102487, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (547, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sửa biểu đồ đăng ký phát biểu (màu của biểu đồ).** as incomplete', '', 1643102490, 1643102490, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (548, 0, 1, 'dungnguyn', 5662031, 166, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sửa biểu đồ đăng ký phát biểu (màu của biểu đồ).** as completed', '', 1643102494, 1643102494, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (549, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639557253, 1639557253, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (550, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639629216, 1639629216, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (551, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639705563, 1639705563, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (552, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639706873, 1639706873, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (553, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639712750, 1639712750, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (554, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thông báo chỉ trả về tên của phiên họp, tên của phiếu lấy ý kiến.** as completed', '', 1639712820, 1639712820, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (555, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thông báo chỉ trả về tên của phiên họp, tên của phiếu lấy ý kiến.** as incomplete', '', 1639712822, 1639712822, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (556, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639712837, 1639712837, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (557, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639734231, 1639734231, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (558, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Trong thông báo, thêm loại ủy quyền duyệt.** as completed', '', 1639985863, 1639985863, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (559, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thông báo chỉ trả về tên của phiên họp, tên của phiếu lấy ý kiến.** as completed', '', 1639985865, 1639985865, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (560, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị được thông báo trên app lúc mở app.** as completed', '', 1639985867, 1639985867, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (561, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Click vào chi tiết của từng thông báo.** as completed', '', 1639985868, 1639985868, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (562, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Phiên họp được duyệt cũng sẽ gửi thông báo về cho thành phần tham dự.** as completed', '', 1639985871, 1639985871, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (563, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thông baó của bà thư ký, kiểm tra lại.** as completed', '', 1639985874, 1639985874, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (564, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640136484, 1640136484, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (565, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Nhận thông báo fetch lại các compent.** as completed', '', 1640137071, 1640137071, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (566, 0, 1, 'dungnguyn', 5662031, 167, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Kiểm tra thông báo lần đầu tiên.** as completed', '', 1641289184, 1641289184, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (567, 0, 1, 'dungnguyn', 5662031, 168, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639557288, 1639557288, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (568, 0, 1, 'datqn1234', 8343428, 168, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639560113, 1639560113, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (569, 0, 1, 'datqn1234', 8343428, 168, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639560124, 1639560124, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (570, 0, 1, 'datqn1234', 8343428, 168, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639560629, 1639560629, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (571, 0, 1, 'datqn1234', 8343428, 168, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'removed due date', '', 1639561878, 1639561878, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (572, 0, 1, 'datqn1234', 8343428, 168, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639714979, 1639714979, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (573, 0, 1, 'datqn1234', 8343428, 168, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **thay đổi message thông báo lỗi khi bắt đầu phiên họp không có nội dung** as completed', '', 1639714981, 1639714981, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (574, 0, 1, 'dungnguyn', 5662031, 169, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639557374, 1639557374, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (575, 0, 1, 'dungnguyn', 5662031, 170, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **{-Thống kê trong đăng ký phát biểu mất tên cán bộ-}.** to **{+Hiển thị thông báo nội dung nào được bắt đầu họp cho tất cả mọi người+}.**', '', 1639615215, 1639615215, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (576, 0, 1, 'dungnguyn', 5662031, 170, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639615215, 1639615215, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (577, 0, 1, 'dungnguyn', 5662031, 170, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639615220, 1639615220, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (578, 0, 1, 'dungnguyn', 5662031, 170, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639615267, 1639615267, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (579, 0, 1, 'dungnguyn', 5662031, 171, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639557480, 1639557480, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (580, 0, 1, 'dungnguyn', 5662031, 171, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639557695, 1639557695, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (581, 0, 1, 'datqn1234', 8343428, 171, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639560788, 1639560788, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (583, 0, 1, 'dungnguyn', 5662031, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639557788, 1639557788, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (584, 0, 1, 'dungnguyn', 5662031, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639558299, 1639558299, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (585, 0, 1, 'dungnguyn', 5662031, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639560290, 1639560290, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (586, 0, 1, 'dungnguyn', 5662031, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639561269, 1639561269, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (587, 0, 1, 'dungnguyn', 5662031, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639563192, 1639563192, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (588, 0, 1, 'dungnguyn', 5662031, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639733206, 1639733206, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (589, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Tiêu đề của vấn đề.** as completed', '', 1639733223, 1639733223, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (590, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Tiêu đề của vấn đề.** as incomplete', '', 1639733225, 1639733225, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (591, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Tiêu đề của vấn đề.** as completed', '', 1639733281, 1639733281, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (592, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Làm sao để xem hết tên của vấn đề.** as completed', '', 1639733287, 1639733287, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (593, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Text trong phần thêm ý kiến khác mặc định màu đen.** as completed', '', 1639733289, 1639733289, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (594, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Khi có cán bộ thêm ý kiến khác, thì ý kiến đó phải được cập nhật lại cho những cán bộ khác đều thấy.** as completed', '', 1639733292, 1639733292, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (595, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đồng bộ thông báo hoàn thành trong vấn đề, cho tên vấn đề ngắn lại khi hiển thị trong thông báo.** as completed', '', 1639733295, 1639733295, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (596, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Kết quả biểu quyết chú thích phải nằm gần cái biểu đồ để dễ biết.** as completed', '', 1639733302, 1639733302, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (597, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Cho chủ trì không cần chọn ý kiến biểu quyết vẫn có thể hoàn thành.** as completed', '', 1639733306, 1639733306, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (598, 0, 1, 'dungnguyn', 5662031, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639734382, 1639734382, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (599, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Vấn đề vào lần đầu thì xuất hiện skeleton, những lần sau không xuất hiện skeleton nhưng vẫn cập nhật dữ liệu.** as completed', '', 1639877611, 1639877611, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (600, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đổi nội dung thông báo chọn của cán bộ trong vấn đề.** as completed', '', 1639878665, 1639878665, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (601, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Chủ trì vào vấn đề hoàn thành trong phiên họp đã kết thúc không xem được biểu quyết.** as completed', '', 1639879156, 1639879156, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (602, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thư ký vào vấn đề chưa hoàn thành thì không được hiển thị kết quả biểu quyết.** as completed', '', 1639886159, 1639886159, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (603, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị thông báo khi một vấn đề đang mở thì không mở vấn đề khác.** as completed', '', 1639886166, 1639886166, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (604, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Vấn đề vào lần đầu thì xuất hiện skeleton, những lần sau không xuất hiện skeleton nhưng vẫn cập nhật dữ liệu.** as incomplete', '', 1639960427, 1639960427, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (605, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thêm một component khi vấn đề ở trạng thái chưa thảo luận, cả chủ trì, cán bộ và thư ký đều hiển thị thông tin chung.** as completed', '', 1639968561, 1639968561, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (606, 0, 1, 'hoatrongkylovestory1999', 8539277, 172, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Vấn đề vào lần đầu thì xuất hiện skeleton, những lần sau không xuất hiện skeleton nhưng vẫn cập nhật dữ liệu.** as completed', '', 1641289294, 1641289294, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (607, 0, 1, 'dungnguyn', 5662031, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639559574, 1639559574, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (608, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639561843, 1639561843, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (609, 0, 1, 'tiensybinhdinh', 10245630, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639708232, 1639708232, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (610, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639713704, 1639713704, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (611, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639713723, 1639713723, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (612, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sau khi nhấn tới hoặc quay lại tên tháng load lâu** as completed', '', 1639713728, 1639713728, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (613, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sau khi nhấn tới hoặc quay lại tên tháng load lâu** as incomplete', '', 1639713730, 1639713730, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (614, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639713839, 1639713839, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (615, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639713847, 1639713847, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (616, 0, 1, 'tiensybinhdinh', 10245630, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639713925, 1639713925, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (617, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Lịch Tháng hiển thị ngày bên dưới kéo bị đè - Hình minh họa (17/12/2021)** as completed', '', 1639714480, 1639714480, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (618, 0, 1, 'datqn1234', 8343428, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639732293, 1639732293, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (619, 0, 1, 'dungnguyn', 5662031, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639734457, 1639734457, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (620, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @datqn1234', '', 1640135067, 1640135067, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (621, 0, 1, 'dungnguyn', 5662031, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640158109, 1640158109, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (622, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thêm reload và refresh.** as completed', '', 1640234366, 1640234366, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (623, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sửa màu xanh nhạt đi một chút xíu.** as completed', '', 1640234367, 1640234367, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (624, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Lịch hôm nay dữ liệu trống (Thông báo đưa vào giữa) (17/12/2021)** as completed', '', 1640252409, 1640252409, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (625, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sau khi nhấn tới hoặc quay lại tên tháng load lâu** as completed', '', 1640661130, 1640661130, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (650, 0, 1, 'dungnguyn', 5662031, 182, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639561861, 1639561861, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (626, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Lọc những tháng nào chỉ hiện thị lịch những tháng đó** as completed', '', 1640661132, 1640661132, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (627, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sau khi lọc phiên họp 2 tháng , rồi nhấn trên lịch 2-3 tháng nhấn hôm nay không load lại danh sách phiên họp** as completed', '', 1640661138, 1640661138, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (628, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Lọc lịch tháng (Từ ngày đến ngày không có ngày hôm nay thì nên ẩn đến ngày hôm nay) (17/12/2021)** as completed', '', 1640661150, 1640661150, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (629, 0, 1, 'hoatrongkylovestory1999', 8539277, 173, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Lỗi rerender (loading lại nhiều lần) (17/12/2021)** as completed', '', 1641179712, 1641179712, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (630, 0, 1, 'hoatrongkylovestory1999', 8539277, 174, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Làm sao để xem hết tên của vấn đề.** to **Làm sao để xem hết tên của vấn {+đề,Tiêu đề của vấn +}đề.**', '', 1639560159, 1639560159, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (631, 0, 1, 'hoatrongkylovestory1999', 8539277, 174, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639560159, 1639560159, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (632, 0, 1, 'hoatrongkylovestory1999', 8539277, 174, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639560581, 1639560581, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (633, 0, 1, 'gdtvietnam2019', 4584319, 174, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639561375, 1639561375, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (634, 0, 1, 'hoatrongkylovestory1999', 8539277, 175, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639560596, 1639560596, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (635, 0, 1, 'gdtvietnam2019', 4584319, 175, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639561381, 1639561381, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (636, 0, 1, 'hoatrongkylovestory1999', 8539277, 176, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639560614, 1639560614, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (637, 0, 1, 'gdtvietnam2019', 4584319, 176, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639562011, 1639562011, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (638, 0, 1, 'hoatrongkylovestory1999', 8539277, 177, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639560659, 1639560659, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (639, 0, 1, 'gdtvietnam2019', 4584319, 177, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639562052, 1639562052, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (640, 0, 1, 'hoatrongkylovestory1999', 8539277, 177, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639722062, 1639722062, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (641, 0, 1, 'hoatrongkylovestory1999', 8539277, 178, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639560698, 1639560698, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (642, 0, 1, 'gdtvietnam2019', 4584319, 178, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639562078, 1639562078, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (643, 0, 1, 'hoatrongkylovestory1999', 8539277, 179, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639560564, 1639560564, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (644, 0, 1, 'gdtvietnam2019', 4584319, 179, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639562087, 1639562087, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (645, 0, 1, 'datqn1234', 8343428, 180, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639561919, 1639561919, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (646, 0, 1, 'gdtvietnam2019', 4584319, 180, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639562096, 1639562096, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (647, 0, 1, 'hoatrongkylovestory1999', 8539277, 181, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639560834, 1639560834, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (648, 0, 1, 'gdtvietnam2019', 4584319, 181, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639562115, 1639562115, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (649, 0, 1, 'hoatrongkylovestory1999', 8539277, 181, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 22, 2021', '', 1640147413, 1640147413, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (651, 0, 1, 'dungnguyn', 5662031, 182, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639562729, 1639562729, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (652, 0, 1, 'dungnguyn', 5662031, 182, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639562988, 1639562988, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (653, 0, 1, 'dungnguyn', 5662031, 182, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639629424, 1639629424, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (654, 0, 1, 'dungnguyn', 5662031, 182, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Khi hoàn thành nội dung, nếu vấn đề còn mở hoặc có cán bộ đang phát biểu thì hiển thị thông báo hỏi có muốn hoàn thành nội dung không, nếu hoàn thành thì tự động đóng vấn đề và hoàn thành phát biểu.** as completed', '', 1640326373, 1640326373, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (655, 0, 1, 'dungnguyn', 5662031, 182, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Hiển thị thông báo nội dung nào được bắt đầu họp cho tất cả mọi người.** as completed', '', 1640326376, 1640326376, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (656, 0, 1, 'dungnguyn', 5662031, 182, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thông báo hoàn thành nội dung phải được hiển thị trên tất cả modal.** as completed', '', 1641455819, 1641455819, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (657, 0, 1, 'datqn1234', 8343428, 183, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639562452, 1639562452, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (658, 0, 1, 'gdtvietnam2019', 4584319, 183, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639620659, 1639620659, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (659, 0, 1, 'gdtvietnam2019', 4584319, 183, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'made the issue confidential', '', 1639648293, 1639648293, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (660, 0, 1, 'gdtvietnam2019', 4584319, 183, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'made the issue visible to everyone', '', 1639648302, 1639648302, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (661, 0, 1, 'datqn1234', 8343428, 184, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639562501, 1639562501, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (662, 0, 1, 'gdtvietnam2019', 4584319, 184, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639620672, 1639620672, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (663, 0, 1, 'datqn1234', 8343428, 185, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639562512, 1639562512, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (664, 0, 1, 'gdtvietnam2019', 4584319, 185, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639620687, 1639620687, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (665, 0, 1, 'datqn1234', 8343428, 186, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639563277, 1639563277, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (666, 0, 1, 'gdtvietnam2019', 4584319, 186, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639620696, 1639620696, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (667, 0, 1, 'dungnguyn', 5662031, 187, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639615312, 1639615312, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (668, 0, 1, 'dungnguyn', 5662031, 187, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639615318, 1639615318, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (669, 0, 1, 'dungnguyn', 5662031, 188, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639615352, 1639615352, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (670, 0, 1, 'dungnguyn', 5662031, 188, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 16, 2021', '', 1639615355, 1639615355, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (671, 0, 1, 'dungnguyn', 5662031, 188, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Thông báo hoàn thành nội dung phải {-được-} hi{-ể-}n {-thị trên tất cả modal-}.** to **Thông báo hoàn thành nội dung phải {+tắt hết những cái đang+} hi{+ệ+}n {+rồi chuyển sang nội dung mới+}.**', '', 1639619626, 1639619626, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (672, 0, 1, 'dungnguyn', 5662031, 188, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639619626, 1639619626, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (673, 0, 1, 'dungnguyn', 5662031, 188, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Thông báo hoàn thành nội dung phải {-tắt hết những cái đang hiện rồi chuyển sang nội dung mới-}.** to **Thông báo hoàn thành nội dung phải {+hiển thị trên tất cả modal+}.**', '', 1639622040, 1639622040, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (674, 0, 1, 'hoatrongkylovestory1999', 8539277, 189, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639622924, 1639622924, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (675, 0, 1, 'hoatrongkylovestory1999', 8539277, 189, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed title from **Vấnđề có hoặc không thời gian** to **Vấn{+ +}đề có hoặc không thời gian**', '', 1639649146, 1639649146, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (676, 0, 1, 'hoatrongkylovestory1999', 8539277, 189, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639649146, 1639649146, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (677, 0, 1, 'gdtvietnam2019', 4584319, 189, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639649779, 1639649779, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (678, 0, 1, 'hoatrongkylovestory1999', 8539277, 189, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 18, 2021', '', 1639722022, 1639722022, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (679, 0, 1, 'hoatrongkylovestory1999', 8539277, 189, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 20, 2021', '', 1639729075, 1639729075, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (680, 0, 1, 'hoatrongkylovestory1999', 8539277, 190, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1641461416, 1641461416, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (681, 0, 1, 'dungnguyn', 5662031, 191, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639628884, 1639628884, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (682, 0, 1, 'dungnguyn', 5662031, 191, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639628951, 1639628951, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (683, 0, 1, 'dungnguyn', 5662031, 191, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640653802, 1640653802, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (684, 0, 1, 'dungnguyn', 5662031, 191, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Đổi hai api báo vắng một cái là update thành phần tham dự một cái là PhienHop/DiThay thành mộ api.** as completed', '', 1640749147, 1640749147, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (685, 0, 1, 'dungnguyn', 5662031, 191, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640749158, 1640749158, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (686, 0, 1, 'dungnguyn', 5662031, 191, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Báo vắng có người đi thay và không có người đi thay nếu người đó đã đăng ký phát biểu rồi thì phải tự động xóa hết đăng ký phát biểu.** as completed', '', 1640759668, 1640759668, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (687, 0, 1, 'datqn1234', 8343428, 192, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639648926, 1639648926, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (688, 0, 1, 'gdtvietnam2019', 4584319, 192, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639649833, 1639649833, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (689, 0, 1, 'datqn1234', 8343428, 193, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639648988, 1639648988, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (690, 0, 1, 'gdtvietnam2019', 4584319, 193, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639649845, 1639649845, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (691, 0, 1, 'hoatrongkylovestory1999', 8539277, 194, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639649079, 1639649079, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (692, 0, 1, 'gdtvietnam2019', 4584319, 194, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639649853, 1639649853, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (693, 0, 1, 'dungnguyn', 5662031, 195, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @tuan1996qn', '', 1639709459, 1639709459, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (694, 0, 1, 'datqn1234', 8343428, 196, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639714376, 1639714376, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (695, 0, 1, 'gdtvietnam2019', 4584319, 196, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639983003, 1639983003, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (696, 0, 1, 'datqn1234', 8343428, 197, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639714404, 1639714404, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (697, 0, 1, 'gdtvietnam2019', 4584319, 197, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639981718, 1639981718, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (698, 0, 1, 'datqn1234', 8343428, 198, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639714556, 1639714556, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (699, 0, 1, 'gdtvietnam2019', 4584319, 198, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 17, 2021', '', 1639981658, 1639981658, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (700, 0, 1, 'dungnguyn', 5662031, 199, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1641272254, 1641272254, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (701, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639730418, 1639730418, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (702, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Giảm spinner trong trang chủ.** as completed', '', 1639730422, 1639730422, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (703, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Giảm spinner trong trang chủ.** as incomplete', '', 1639730433, 1639730433, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (704, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639730737, 1639730737, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (705, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Giảm spinner trong trang chủ.** as completed', '', 1639730753, 1639730753, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (706, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Giảm spinner trong trang chủ.** as incomplete', '', 1639730757, 1639730757, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (707, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639730992, 1639730992, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (708, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639731158, 1639731158, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (709, 0, 1, 'datqn1234', 8343428, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Trạng thái trong phiên họp của phiên duyệt một là bỏ hai là đổi.** as completed', '', 1640048429, 1640048429, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (710, 0, 1, 'datqn1234', 8343428, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Cho chữ tham gia từ chối nhỏ lại bằng font chữ header của dashboard.** as completed', '', 1640048433, 1640048433, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (711, 0, 1, 'dungnguyn', 5662031, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640157958, 1640157958, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (712, 0, 1, 'hoatrongkylovestory1999', 8539277, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @datqn1234', '', 1641349249, 1641349249, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (713, 0, 1, 'hoatrongkylovestory1999', 8539277, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sửa nút di chuyển, khi nào kéo danh sách phiên họp xuống dưới mới hiện cái nút ra, còn lăn lên trên thì không có nút đó.** as completed', '', 1641350971, 1641350971, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (714, 0, 1, 'hoatrongkylovestory1999', 8539277, 200, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Giảm spinner trong trang chủ.** as completed', '', 1641351051, 1641351051, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (715, 0, 1, 'dungnguyn', 5662031, 201, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1639731177, 1639731177, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (716, 0, 1, 'datqn1234', 8343428, 201, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639732233, 1639732233, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (717, 0, 1, 'dungnguyn', 5662031, 202, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1639734295, 1639734295, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (718, 0, 1, 'dungnguyn', 5662031, 203, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639733789, 1639733789, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (719, 0, 1, 'hoatrongkylovestory1999', 8539277, 204, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1639971709, 1639971709, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (720, 0, 1, 'hoatrongkylovestory1999', 8539277, 204, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 21, 2021', '', 1640081222, 1640081222, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (721, 0, 1, 'hoatrongkylovestory1999', 8539277, 204, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 22, 2021', '', 1640081243, 1640081243, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (722, 0, 1, 'datqn1234', 8343428, 205, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639989402, 1639989402, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (723, 0, 1, 'datqn1234', 8343428, 206, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1639989400, 1639989400, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (724, 0, 1, 'gdtvietnam2019', 4584319, 206, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 21, 2021', '', 1640081309, 1640081309, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (725, 0, 1, 'datqn1234', 8343428, 207, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @datqn1234', '', 1640074413, 1640074413, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (726, 0, 1, 'datqn1234', 8343428, 207, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1640074632, 1640074632, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (727, 0, 1, 'hoatrongkylovestory1999', 8539277, 207, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @datqn1234', '', 1641356687, 1641356687, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (728, 0, 1, 'hoatrongkylovestory1999', 8539277, 207, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Sửa search** as completed', '', 1641373139, 1641373139, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (729, 0, 1, 'hoatrongkylovestory1999', 8539277, 207, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Load thêm bị lỗi key** as completed', '', 1641436451, 1641436451, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (730, 0, 1, 'dungnguyn', 5662031, 208, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed the description', '', 1641886473, 1641886473, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (731, 0, 1, 'dungnguyn', 5662031, 208, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @dungnguyn', '', 1641886509, 1641886509, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (732, 0, 1, 'dungnguyn', 5662031, 208, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999 and unassigned @dungnguyn', '', 1641886687, 1641886687, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (733, 0, 1, 'hoatrongkylovestory1999', 8539277, 208, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'marked the checklist item **Thêm link pdf.** as completed', '', 1642140879, 1642140879, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (734, 0, 1, 'hoatrongkylovestory1999', 8539277, 210, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1640252496, 1640252496, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (735, 0, 1, 'hoatrongkylovestory1999', 8539277, 210, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 23, 2021', '', 1640252502, 1640252502, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (736, 0, 1, 'hoatrongkylovestory1999', 8539277, 211, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1640252465, 1640252465, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (737, 0, 1, 'hoatrongkylovestory1999', 8539277, 211, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'changed due date to December 23, 2021', '', 1640252473, 1640252473, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (738, 0, 1, 'hoatrongkylovestory1999', 8539277, 212, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1641461363, 1641461363, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (739, 0, 1, 'hoatrongkylovestory1999', 8539277, 213, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1642142012, 1642142012, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (740, 0, 1, 'hoatrongkylovestory1999', 8539277, 214, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'assigned to @hoatrongkylovestory1999', '', 1643166368, 1643166368, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (741, 0, 1, 'hoatrongkylovestory1999', 8539277, 214, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', 'created branch [`117-loading-trang-home-danh-sach-phien-b-che`](/gdt_hophanh/meet-react-native/-/compare/dev...117-loading-trang-home-danh-sach-phien-b-che) to address this issue', '', 1644282243, 1644282243, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (742, 29, 11, '', 0, 215, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["122c6ba57907664a26aac6393e0880e02d8d2610"]}', '', 1705369966, 1705369966, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (743, 28, 11, '', 0, 215, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705369982, 1705369982, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (744, 4, 11, '', 0, 215, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/c94f86451988d6cf98b90a9f0e74a88515b66f9a">Merge pull request 'change login' (#99) from thinh into dev</a>', '', 1705369982, 1705369982, 'c94f86451988d6cf98b90a9f0e74a88515b66f9a', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (745, 29, 11, '', 0, 216, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["b4fa71025f54e4fa94ba095169119fa40b06d27c"]}', '', 1705389571, 1705389571, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (746, 28, 11, '', 0, 216, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705389625, 1705389625, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (747, 4, 11, '', 0, 216, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2">Merge pull request 'fix datatable' (#100) from thinh into dev</a>', '', 1705389625, 1705389625, '2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (748, 29, 11, '', 0, 217, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6"]}', '', 1705393321, 1705393321, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (749, 28, 11, '', 0, 217, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705393335, 1705393335, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (752, 28, 11, '', 0, 218, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705394331, 1705394331, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (755, 28, 11, '', 0, 219, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705395799, 1705395799, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (759, 4, 11, '', 0, 220, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2">Merge pull request 'fix change page' (#104) from thinh into dev</a>', '', 1705396642, 1705396642, '645b7c2b051a49e16e1ba1d5dd9af1918230b2c2', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (760, 29, 11, '', 0, 221, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["3b268198277e3decd8a39c797a71e1379fc01f38","340a9c47ca2f986c9fc50a1471a84a66c36eec01","5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f"]}', '', 1705396844, 1705396844, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (761, 28, 11, '', 0, 221, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705396862, 1705396862, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (763, 29, 11, '', 0, 222, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7","7650c10f1a92cffc96d99f4f9923dc49763c69c7"]}', '', 1705397253, 1705397253, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (764, 28, 11, '', 0, 222, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705397268, 1705397268, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (750, 4, 11, '', 0, 217, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/53d1f72211fde4e1c022b04df50724ed8080ad37">Merge pull request 'fix odata QLLD_HoSo' (#101) from thinh into dev</a>', '', 1705393335, 1705393335, '53d1f72211fde4e1c022b04df50724ed8080ad37', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (751, 29, 11, '', 0, 218, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["a2d31a4f4ea5f3e8278eb7a3f446302831381ddb"]}', '', 1705394271, 1705394271, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (753, 4, 11, '', 0, 218, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/8eece73dc814f23997466b778c570a25145163df">Merge pull request 'fix hidden change year hoso' (#102) from thinh into dev</a>', '', 1705394332, 1705394332, '8eece73dc814f23997466b778c570a25145163df', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (754, 29, 11, '', 0, 219, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["65e6485ae4926938a51adf2f31db4aeb6d7e7e41"]}', '', 1705395692, 1705395692, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (756, 4, 11, '', 0, 219, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/cf4715110a114ad27e4779af22c58cfb819d78c9">Merge pull request 'fix phan quyen' (#103) from thinh into dev</a>', '', 1705395801, 1705395801, 'cf4715110a114ad27e4779af22c58cfb819d78c9', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (757, 29, 11, '', 0, 220, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["6b059fd277af151a3e10327be3a8be3e4ba084a2"]}', '', 1705396610, 1705396610, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (758, 28, 11, '', 0, 220, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705396640, 1705396640, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (762, 4, 11, '', 0, 221, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/d268ef005af0e0adcc49b9b4100f0479116d31d4">Merge pull request 'thinh' (#105) from thinh into dev</a>', '', 1705396865, 1705396865, 'd268ef005af0e0adcc49b9b4100f0479116d31d4', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (765, 4, 11, '', 0, 222, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/f0f201ffadd72a9c710659316fad0c14ed6d69c1">Merge pull request 'thinh' (#106) from thinh into dev</a>', '', 1705397270, 1705397270, 'f0f201ffadd72a9c710659316fad0c14ed6d69c1', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (766, 29, 11, '', 0, 223, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["b51a2a2db8b6c480c487c33ce3cad9f3e94bb872"]}', '', 1705457139, 1705457139, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (767, 28, 11, '', 0, 223, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705457156, 1705457156, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (768, 4, 11, '', 0, 223, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45">Merge pull request 'fix trang thai ho so' (#107) from thinh into dev</a>', '', 1705457158, 1705457158, '8151ab7ce5fcfdf01ceb05db6de7cea9190aff45', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (769, 29, 11, '', 0, 224, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8"]}', '', 1705458409, 1705458409, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (770, 28, 11, '', 0, 224, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705458436, 1705458436, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (771, 4, 11, '', 0, 224, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/99934589e07a2e5021fb88d8e95cd0701a3c3d8f">Merge pull request 'fix gdnn' (#108) from thinh into dev</a>', '', 1705458437, 1705458437, '99934589e07a2e5021fb88d8e95cd0701a3c3d8f', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (772, 29, 11, '', 0, 225, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["07dd78834b58c799d0db70d99f863dda643572aa","e3fb0e313b51381d7d07b910bfed3963036f3119"]}', '', 1705463149, 1705463149, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (773, 28, 11, '', 0, 225, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705463231, 1705463231, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (774, 4, 11, '', 0, 225, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/d27bbd1a398cd332a453a4301f2539d4741f4829">Merge pull request 'thinh' (#109) from thinh into dev</a>', '', 1705463233, 1705463233, 'd27bbd1a398cd332a453a4301f2539d4741f4829', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (775, 29, 11, '', 0, 226, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["dc9b1cd7ec18ad4fed9579e27f394b14858c3cde"]}', '', 1705561417, 1705561417, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (776, 28, 11, '', 0, 226, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705561433, 1705561433, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (777, 4, 11, '', 0, 226, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/6ae7b846816d579b60abebb037d74ce8e8d332df">Merge pull request 'update bug' (#110) from thinh into dev</a>', '', 1705561435, 1705561435, '6ae7b846816d579b60abebb037d74ce8e8d332df', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (778, 29, 11, '', 0, 227, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["0fcc16b3a944af679c58d4542042b1e00f05572d"]}', '', 1705561836, 1705561836, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (779, 28, 11, '', 0, 227, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705561862, 1705561862, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (780, 4, 11, '', 0, 227, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/e3af78fc47531563603cb74b00a581af88476433">Merge pull request 'fix bug' (#111) from thinh into dev</a>', '', 1705561864, 1705561864, 'e3af78fc47531563603cb74b00a581af88476433', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (781, 29, 11, '', 0, 228, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '{"is_force_push":false,"commit_ids":["8fd1ec8092107d71cd610bc15090a66132b89ce0"]}', '', 1705631063, 1705631063, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (782, 28, 11, '', 0, 228, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '', '', 1705631135, 1705631135, '', 0, false, 0, 0, 0, 0, false); INSERT INTO public.comment VALUES (783, 4, 11, '', 0, 228, 0, 0, 0, 0, 0, 0, 0, false, 0, 0, '', '', '', '', 0, 0, 0, '', '<a href="/giao-duc-nghe-nghiep/frontend/commit/8de6e2711f638af8b35485c887f3c10229f7fca6">Merge pull request 'update phan quyen + filter' (#112) from thinh into dev</a>', '', 1705631137, 1705631137, '8de6e2711f638af8b35485c887f3c10229f7fca6', 0, false, 0, 0, 0, 0, false); -- -- Data for Name: commit_status; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.commit_status VALUES (1, 1, 11, 'pending', '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/display/redirect', 'Build queued...', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686811490, 1686811490); INSERT INTO public.commit_status VALUES (2, 2, 11, 'pending', '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/1/display/redirect', 'Build started...', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686811521, 1686811521); INSERT INTO public.commit_status VALUES (3, 3, 11, 'success', '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/1/display/redirect', 'This commit looks good', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686811660, 1686811660); INSERT INTO public.commit_status VALUES (4, 1, 11, 'pending', '98fac2b1708b47d60818e009363f5c231120e66a', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/display/redirect', 'Build queued...', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686812265, 1686812265); INSERT INTO public.commit_status VALUES (5, 2, 11, 'pending', '98fac2b1708b47d60818e009363f5c231120e66a', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/2/display/redirect', 'Build started...', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686812281, 1686812281); INSERT INTO public.commit_status VALUES (6, 3, 11, 'success', '98fac2b1708b47d60818e009363f5c231120e66a', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/2/display/redirect', 'This commit looks good', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686812306, 1686812306); INSERT INTO public.commit_status VALUES (7, 4, 11, 'pending', '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/display/redirect', 'Build queued...', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686812497, 1686812497); INSERT INTO public.commit_status VALUES (8, 5, 11, 'pending', '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/3/display/redirect', 'Build started...', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686812511, 1686812511); INSERT INTO public.commit_status VALUES (9, 6, 11, 'success', '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-admin/job/dev/3/display/redirect', 'This commit looks good', '3dc770e1f015f96c6fc2f5e2e1cbc25249d72cc1', 'buu-chinh-vien-thong/web-admin/pipeline/head', 9, 1686812533, 1686812533); INSERT INTO public.commit_status VALUES (10, 1, 9, 'pending', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/display/redirect', 'Build queued...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688616868, 1688616868); INSERT INTO public.commit_status VALUES (11, 2, 9, 'pending', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/1/display/redirect', 'Build started...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688616885, 1688616885); INSERT INTO public.commit_status VALUES (12, 3, 9, 'pending', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/1/display/redirect', 'Build started...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688616910, 1688616910); INSERT INTO public.commit_status VALUES (13, 4, 9, 'failure', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/1/display/redirect', 'There was a failure building this commit', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688617303, 1688617303); INSERT INTO public.commit_status VALUES (14, 5, 9, 'pending', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/display/redirect', 'Build queued...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688617484, 1688617484); INSERT INTO public.commit_status VALUES (15, 6, 9, 'pending', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/2/display/redirect', 'Build started...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688617492, 1688617492); INSERT INTO public.commit_status VALUES (16, 7, 9, 'pending', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/2/display/redirect', 'Build started...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688617497, 1688617497); INSERT INTO public.commit_status VALUES (17, 8, 9, 'success', '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/2/display/redirect', 'This commit looks good', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1688617848, 1688617848); INSERT INTO public.commit_status VALUES (18, 1, 9, 'pending', 'd9808de1f02ff6939def557ccc6e2bc9e56f335d', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/display/redirect', 'Build queued...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1689230563, 1689230563); INSERT INTO public.commit_status VALUES (19, 2, 9, 'pending', 'd9808de1f02ff6939def557ccc6e2bc9e56f335d', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/3/display/redirect', 'Build started...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1689230579, 1689230579); INSERT INTO public.commit_status VALUES (20, 3, 9, 'pending', 'd9808de1f02ff6939def557ccc6e2bc9e56f335d', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/3/display/redirect', 'Build started...', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1689230605, 1689230605); INSERT INTO public.commit_status VALUES (21, 4, 9, 'success', 'd9808de1f02ff6939def557ccc6e2bc9e56f335d', 'https://jenkins.gdtsolutions.vn/job/buu-chinh-vien-thong/job/web-gis/job/master/3/display/redirect', 'This commit looks good', 'dc653737f430a6e7acd4c54b5a83a69e3223a588', 'buu-chinh-vien-thong/web-gis/pipeline/head', 9, 1689230899, 1689230899); INSERT INTO public.commit_status VALUES (22, 1, 26, 'pending', '9df9ce65acd485f0315cfec4900eb5e5624123ca', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/dev-hoa/display/redirect', 'Build queued...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704686836, 1704686836); INSERT INTO public.commit_status VALUES (23, 1, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/display/redirect', 'Build queued...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704686836, 1704686836); INSERT INTO public.commit_status VALUES (24, 2, 26, 'pending', '9df9ce65acd485f0315cfec4900eb5e5624123ca', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/dev-hoa/1/display/redirect', 'Build started...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704686850, 1704686850); INSERT INTO public.commit_status VALUES (25, 2, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/1/display/redirect', 'Build started...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704686855, 1704686855); INSERT INTO public.commit_status VALUES (26, 3, 26, 'failure', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/1/display/redirect', 'There was a failure building this commit', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704686989, 1704686989); INSERT INTO public.commit_status VALUES (27, 3, 26, 'failure', '9df9ce65acd485f0315cfec4900eb5e5624123ca', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/dev-hoa/1/display/redirect', 'There was a failure building this commit', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704686989, 1704686989); INSERT INTO public.commit_status VALUES (28, 4, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/display/redirect', 'Build queued...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704687102, 1704687102); INSERT INTO public.commit_status VALUES (29, 5, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/1/display/redirect', 'Build started...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704687120, 1704687120); INSERT INTO public.commit_status VALUES (30, 6, 26, 'failure', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/1/display/redirect', 'There was a failure building this commit', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704687255, 1704687255); INSERT INTO public.commit_status VALUES (31, 7, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/display/redirect', 'Build queued...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697409, 1704697409); INSERT INTO public.commit_status VALUES (32, 8, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/2/display/redirect', 'Build started...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697418, 1704697418); INSERT INTO public.commit_status VALUES (33, 9, 26, 'failure', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/2/display/redirect', 'There was a failure building this commit', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697522, 1704697522); INSERT INTO public.commit_status VALUES (34, 10, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/display/redirect', 'Build queued...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697579, 1704697579); INSERT INTO public.commit_status VALUES (35, 11, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/3/display/redirect', 'Build started...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697587, 1704697587); INSERT INTO public.commit_status VALUES (36, 12, 26, 'failure', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/3/display/redirect', 'There was a failure building this commit', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697591, 1704697591); INSERT INTO public.commit_status VALUES (37, 13, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/4/display/redirect', 'Build started...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697869, 1704697869); INSERT INTO public.commit_status VALUES (38, 14, 26, 'pending', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/4/display/redirect', 'Build started...', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704697878, 1704697878); INSERT INTO public.commit_status VALUES (39, 15, 26, 'failure', 'a4eda163411b228d47b45cec507a829d420b9a67', 'https://jenkins.gdtsolutions.vn/job/khieu-nai/job/admin/job/main/4/display/redirect', 'There was a failure building this commit', 'ee2218b8f65971addf7eb0fdc86a5684145d2238', 'khieu-nai/admin/pipeline/head', 9, 1704698125, 1704698125); -- -- Data for Name: commit_status_index; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.commit_status_index VALUES (4, 11, '98fac2b1708b47d60818e009363f5c231120e66a', 3); INSERT INTO public.commit_status_index VALUES (1, 11, '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', 6); INSERT INTO public.commit_status_index VALUES (10, 9, '9b214c9e5bb595c7b91c72d4276a0121e43c25c6', 8); INSERT INTO public.commit_status_index VALUES (18, 9, 'd9808de1f02ff6939def557ccc6e2bc9e56f335d', 4); INSERT INTO public.commit_status_index VALUES (22, 26, '9df9ce65acd485f0315cfec4900eb5e5624123ca', 3); INSERT INTO public.commit_status_index VALUES (23, 26, 'a4eda163411b228d47b45cec507a829d420b9a67', 15); -- -- Data for Name: dbfs_data; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: dbfs_meta; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: deploy_key; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: email_address; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.email_address VALUES (2, 2, 'tuan1996qn@gmail.com', 'tuan1996qn@gmail.com', true, true); INSERT INTO public.email_address VALUES (3, 4, 'dongvntran@gmail.com', 'dongvntran@gmail.com', true, true); INSERT INTO public.email_address VALUES (4, 5, 'nguyentrananhvu88@gmail.com', 'nguyentrananhvu88@gmail.com', true, true); INSERT INTO public.email_address VALUES (1, 1, 'lhngoc@gdtvietnam.com', 'lhngoc@gdtvietnam.com', true, false); INSERT INTO public.email_address VALUES (5, 1, 'cognvn@gmail.com', 'cognvn@gmail.com', true, true); INSERT INTO public.email_address VALUES (6, 9, 'jenkins@gdtvietnam.com', 'jenkins@gdtvietnam.com', true, true); INSERT INTO public.email_address VALUES (7, 4, 'dongtv2510@gmail.com', 'dongtv2510@gmail.com', true, false); INSERT INTO public.email_address VALUES (8, 11, 'hungthinh11122000@gmail.com', 'hungthinh11122000@gmail.com', true, true); INSERT INTO public.email_address VALUES (9, 11, '92719909+hungthinhne@users.noreply.github.com', '92719909+hungthinhne@users.noreply.github.com', true, false); INSERT INTO public.email_address VALUES (10, 15, 'it.nguyenchihoa@gmail.com', 'it.nguyenchihoa@gmail.com', true, true); INSERT INTO public.email_address VALUES (11, 16, 'datqn1234@gmail.com', 'datqn1234@gmail.com', true, true); -- -- Data for Name: email_hash; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.email_hash VALUES ('72404617e72722d4a0cbfd40e8c74fa3', 'lhngoc@gdtvietnam.com'); INSERT INTO public.email_hash VALUES ('6b3e3b0d2d9332916e3fbd7de18ca488', 'cognvn@gmail.com'); INSERT INTO public.email_hash VALUES ('0fcf1932f74bc61d2e6141a15e9653ba', 'tuan1996qn@gmail.com'); INSERT INTO public.email_hash VALUES ('90dc3cb77f419dfc1398f3a227b166b2', 'tuan1996n@gmail.com'); INSERT INTO public.email_hash VALUES ('f3659a81ad67fc4dcba62fedbf0f79dc', 'dongvntran@gmail.com'); INSERT INTO public.email_hash VALUES ('c37041b38c70dcc002a687c3310ea10b', 'dongtv2510@gmail.com'); INSERT INTO public.email_hash VALUES ('009e520c8a20ee8d22d0087b59f6496f', 'nguyentrananhvu88@gmail.com'); -- -- Data for Name: external_login_user; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: follow; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: gpg_key; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.gpg_key VALUES (1, 1, '97BDD5E3682BBB1A', ' ', 'xsFNBGSBlnQBEADYxO+hIUJq0SHH+VEoKhSZ2lWGQzmNL9+kEJwgARBcc2mmnvlqkULxnqM6LRrZVusU4AlqzbjwZusaIwLb899db18F3o7m8F1iSbzFsKp+zChCkFt0rXdrYUiqh+BFP7+l9Qv77sePT9jzcbL6fZ+ICOpMFGcQJVtPuWIl6vmo2WXQE/yeh/RLBB8uDtPf1pep1324bAfw/djVG8HHKQCk6PUfkDc8lyNL/SO60gVCVMwgrzWI1Eew7GO4R6x0s0h1Z3eclW1K69f3U3qSwZNreXRB1AgOrr4jVY3fauiCYTqSVY1zhSh3yL6X0i4TavCeF6P9E5dySCOBYFvhHfzyPpTBkwhrDh4GVs9j6hBfQiVuCpsgt2GH17oD9vQKaQip4iesF7uc2mEOT7flvlQRi4NNJNmU7E7NkzK71XT9vc756wyrjzTPqqlpL62BUUrI7h/3iLQLwpKXo6zfwh8CFny3L6yF4XCgrT0RMqU87r3llX9LJ7XBOYmMq7bibIaSaW/aPCNigAW0UzrCXSCmOuOW41Pa3/+Oq4DU7Lu5SwbZEmUCRXLr2+KL7F5eeu6uzNlH6kRy6aQ2nt3W6g5q2b73LborXwk7V0/1Is5sYENrwACdK5a1X23TXVPBf2GCnH48g7HoANS7tDMFP0GmUY+FGbl4GvCYqH6YHC1VjwARAQAB', 1686711215, -62135596800, 1686711215, '[]', true, true, true, true, true); INSERT INTO public.gpg_key VALUES (2, 1, '2ABD04C9AA95CDD4', '97BDD5E3682BBB1A', 'zsFNBGSBlnQBEACiVn9t3bKuCoMAr2doV4tdhmLTBuEP3cOojQtrUnN5o8tpdJR0VHC7/FiYzNuyuJwVWKWddm4kQ1WI4SYIlk7r5j9tgzNvARQHzF99VhQfh3jbzFUxfBhC1CQmpZwwK5dW6oEz9T05s2aZcXJcseDWsFiJPHZNpZf7UATcV5UW6Qrllg1noh0ukUOiDW+cEx7nbE8f333cJldm9B+ExCM780EKDdzzN5LA9UCVNXeRI6jYCqAJ4hsiwhGyCSbZpv4pJC3EEf5JqT4MEuOkGgvQcU/y4lNrR1ORh5jvN8YtnDemYm7uAweaAF2SU85Ov42K2W3iWaysDGuHFAWmVLgN09Xja4TVwB9B6LGjY703stRsE/XNTozWn6BrN6UbY4W/hu6q4i/kZS8ttjt+hDNs7Ie9eZ2Rxu0Yhd3LiS/9Dt9vybkeUWfZK4EIL0Vpk4QxcvVPTs6pkWqjLRVKdE7XhC9PHxl6BUSXCS96KYEh+vwqTK5fvZ2eBXkN3rozTuTaZ4hRYMz5poJy54femyABeQw/rbX1hFY0OW322D/EOn2TLFaYLFOY17+7oEHwp/klsH4YJ7vLBUpVjaYiCCpnxxTJIHKhMr3TVGoKmawabu+kjrNce7xVCMMYbXeE95+8IbmElM+HO6h3Xbyd8bSlT79XSF4Dq/LDEWSKkob4mQARAQAB', 1686711215, -62135596800, 1686711215, 'null', false, true, true, true, true); -- -- Data for Name: gpg_key_import; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.gpg_key_import VALUES ('97BDD5E3682BBB1A', '-----BEGIN PGP PUBLIC KEY BLOCK----- mQINBGSBlnQBEADYxO+hIUJq0SHH+VEoKhSZ2lWGQzmNL9+kEJwgARBcc2mmnvlq kULxnqM6LRrZVusU4AlqzbjwZusaIwLb899db18F3o7m8F1iSbzFsKp+zChCkFt0 rXdrYUiqh+BFP7+l9Qv77sePT9jzcbL6fZ+ICOpMFGcQJVtPuWIl6vmo2WXQE/ye h/RLBB8uDtPf1pep1324bAfw/djVG8HHKQCk6PUfkDc8lyNL/SO60gVCVMwgrzWI 1Eew7GO4R6x0s0h1Z3eclW1K69f3U3qSwZNreXRB1AgOrr4jVY3fauiCYTqSVY1z hSh3yL6X0i4TavCeF6P9E5dySCOBYFvhHfzyPpTBkwhrDh4GVs9j6hBfQiVuCpsg t2GH17oD9vQKaQip4iesF7uc2mEOT7flvlQRi4NNJNmU7E7NkzK71XT9vc756wyr jzTPqqlpL62BUUrI7h/3iLQLwpKXo6zfwh8CFny3L6yF4XCgrT0RMqU87r3llX9L J7XBOYmMq7bibIaSaW/aPCNigAW0UzrCXSCmOuOW41Pa3/+Oq4DU7Lu5SwbZEmUC RXLr2+KL7F5eeu6uzNlH6kRy6aQ2nt3W6g5q2b73LborXwk7V0/1Is5sYENrwACd K5a1X23TXVPBf2GCnH48g7HoANS7tDMFP0GmUY+FGbl4GvCYqH6YHC1VjwARAQAB tB9MZSBIb25nIE5nb2MgPGNvZ252bkBnbWFpbC5jb20+iQJOBBMBCAA4FiEEUnbV ZTS1t9y07y5Kl73V42gruxoFAmSBlnQCGwMFCwkIBwIGFQoJCAsCBBYCAwECHgEC F4AACgkQl73V42gruxoi4g/+MexTsxJnyiOH7U75HB8vP0Wzj2WE0Xelhq5jW1Hj CJQMrA8kd06ZtYKgGCWHp+2HPAcUc3FCH8o5pS/C7lpmwRHKq5LQ89rdcK0mnCiF gTkiiI4XVRGFGAhFPfnI/ExvxMA1W3t0CZr91CQKtty/hfPTreo+mTi0uePlXhOo GnbFATak2LJdfOa2C5RV3sMIdWx7mfakBc6jJTBmgJBfBpHUS7F3wbFdTqxRIbEB TSHE5n0pluAH8oT9JEX8V5r4y4GNUwuS5dxdvPmMNzTdRBqV8pWr5cVPs5cvw7ud 5/Uwj3Mmv0jRYmldVZPmzaTPSktUXo/B+XupElig4a/yJzgfB5L4JXesNTvHTHYb wUfB2c1eozh67o7ot+HFpVsBJ96uNYwKtnpc0IlH3s0/QoMudZ86ck6urQxnu2l7 gzMhwK9Z/pN4gm9RpBZ1mvRhZQJuSTfaZAagudSYu9EoAfOta0ZrTDC0YDEapCml jd6izzZ8gXSBkD751prOWa+KXexmoNm4FLFEAZhXPns7suRDujmQqfOXAHU3GDXZ UwWJh67j+GvnrEvWT1FpLm+1s2WFMIGWZ/BaAEEkxxo3U2mjjg4JnfH7SBRz6gOe Yg+iphWYCIfY11tBPSTLQ6OaPdY43CQcqfjwhYyaTg/3J1jQtwq6yzt43HvAkE6m VFO5Ag0EZIGWdAEQAKJWf23dsq4KgwCvZ2hXi12GYtMG4Q/dw6iNC2tSc3mjy2l0 lHRUcLv8WJjM27K4nBVYpZ12biRDVYjhJgiWTuvmP22DM28BFAfMX31WFB+HeNvM VTF8GELUJCalnDArl1bqgTP1PTmzZplxclyx4NawWIk8dk2ll/tQBNxXlRbpCuWW DWeiHS6RQ6INb5wTHudsTx/ffdwmV2b0H4TEIzvzQQoN3PM3ksD1QJU1d5EjqNgK oAniGyLCEbIJJtmm/ikkLcQR/kmpPgwS46QaC9BxT/LiU2tHU5GHmO83xi2cN6Zi bu4DB5oAXZJTzk6/jYrZbeJZrKwMa4cUBaZUuA3T1eNrhNXAH0HosaNjvTey1GwT 9c1OjNafoGs3pRtjhb+G7qriL+RlLy22O36EM2zsh715nZHG7RiF3cuJL/0O32/J uR5RZ9krgQgvRWmThDFy9U9OzqmRaqMtFUp0TteEL08fGXoFRJcJL3opgSH6/CpM rl+9nZ4FeQ3eujNO5NpniFFgzPmmgnLnh96bIAF5DD+ttfWEVjQ5bfbYP8Q6fZMs VpgsU5jXv7ugQfCn+SWwfhgnu8sFSlWNpiIIKmfHFMkgcqEyvdNUagqZrBpu76SO s1x7vFUIwxhtd4T3n7whuYSUz4c7qHddvJ3xtKVPv1dIXgOr8sMRZIqShviZABEB AAGJAjYEGAEIACAWIQRSdtVlNLW33LTvLkqXvdXjaCu7GgUCZIGWdAIbDAAKCRCX vdXjaCu7GuQ/EACAZ6KtXNY899cNVc47S3aDqVJYMg8PZp0r0Wsi302XjS17+pnw lETcPn713jlouH7IsYpuUK8MVNdrjRpqdSQdCOIpLwWubYLGa7UHh3lV0gzp+7Om N3wM5NAKpggbch+yYVtKCywkHC+ua0RqnrtLuwgWKJ0qZiLjEvO3xAURwF3P+wTO g4ag0bmnkn4BKOCZyshVLQ1PmnmpA0ToRs9AYFhQAnPO+vXXU22PeED+lkIzC5vg gUayqgmd0tSrtPXmTWsfzQsVX4svtHbuFvxJnkkbPDIKMrT+yJVbVTBlAMrdi5iC aK9TiUvEYhCx3NH+Ip9n6CdIepkRQPn6xmpOONW5AHSIncO5NZXF0C6D/x1Qs2Nx TT/P3NCG2coD99q7Vp6X9cYwD3rvowm6tshZTpuzeUw3ite4XyJOEd5SJcS2iwvr /eC6hbebMcMGeEaX+Ka/KaCM0NcJ+YBf2ymhviSYqEnNNaxjdYZ5Z1C5iHb2Abke MOclc2o1L+QOnLr1B+EvA/DtVM+Qa85YIUgtawCwfgMnmimoCq6eMB4bCQDeb1ep SCRVkzyhKoy2x6/NP7JGupe5BArnPut17ib8k5ILA+C8M3UO7iSWBBOsCII/E8Fx fk/ESq1EcRvrjG7OF9ZkbvlX6a46qhR34I9N6WV5xXCTdLnq4oe7CdXSaw== =GLL0 -----END PGP PUBLIC KEY BLOCK-----'); -- -- Data for Name: hook_task; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.hook_task VALUES (838, 1, 'cf970b4e-ac8c-4490-bb9c-dd15a25265be', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/121/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/121/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164381555534100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"cf970b4e-ac8c-4490-bb9c-dd15a25265be","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"cf970b4e-ac8c-4490-bb9c-dd15a25265be","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"cf970b4e-ac8c-4490-bb9c-dd15a25265be","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d657dbe5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:21 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=pgzYYVSpDFuupDRZZKBl1kAbG6gcPP15GZoiCQc3O5UeY1%2BmErEelUxqHjNAR4niKKGNoubFtXjloxmynaNgg9kcedL2Rg3cTtUYFjLWn3deQYXk%2BAdXdY6AY952\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=47e48ef6b23311ee8f7162bbcfaf3972; Expires=Thu, 11-Jan-2029 16:46:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=47e48ef6b23311ee8f7162bbcfaf39721363667b1a8f2ca473a55f1955ba7049dadcfa8da2ff516431da8b43ad7c9feb; Expires=Thu, 11-Jan-2029 16:46:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=dcae332e7487af0be07b0b1568620ef6909cf1d7-1705164381; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zCATWAfYryZb0eiZvVIlM_GpBLQhfT4Z4szswP2TZUA-1705164381540-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164382","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (812, 1, '82af1514-c91a-45ef-936f-d433dc114514', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/132/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/132/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705105577202720800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"82af1514-c91a-45ef-936f-d433dc114514","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"82af1514-c91a-45ef-936f-d433dc114514","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"82af1514-c91a-45ef-936f-d433dc114514","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981bf0d135e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OodcVQjyOx81oOnMvtV0WNr%2FBH2nEytwmT70yo0WO4R6qwej8YpuQ67kwJjvFeuaq%2B6A20SmGRcV64qpwh4ECaB%2F4uPgbZ3fCLaZEBFMN2w2ei7WeIco3%2FGUy6Lk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5dc65530b1aa11eeb9107e16d0383502; Expires=Thu, 11-Jan-2029 00:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5dc65530b1aa11eeb9107e16d0383502e02848ccd573e0504ee6cbc87c220f7d0b455c89669cf57815082c18b1d71425; Expires=Thu, 11-Jan-2029 00:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5f9285fa0b38b9f90f057b63572381b7a7d6493b-1705105577; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5mD8LgYjuDPrHpg98kHiOcuenuhQHmahFROqNzefQRA-1705105577200-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705105578","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1010, 1, '7219c155-d8e9-4ea6-80e3-23c7f9384ab2', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #108 fix gdnn", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705458438186260600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7219c155-d8e9-4ea6-80e3-23c7f9384ab2","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"7219c155-d8e9-4ea6-80e3-23c7f9384ab2","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"7219c155-d8e9-4ea6-80e3-23c7f9384ab2","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b288498f15e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:27:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ny90t5MvlqZN4teqedRv8t6Z%2Fz%2BZ9YV2ln3QTaLmNT1Gt7Foh1qUk9GKXQD%2BNv6zQKOcTUqB7mNWQEWr8K%2F2%2BCMJAvW18MYzuLwdGh7ht1bjA9yN0wiPaXx9aymg\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ef4bcd2cb4df11ee85ddbe224d97a722; Expires=Mon, 15-Jan-2029 02:27:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ef4bcd2cb4df11ee85ddbe224d97a7223df1821fc43222bb8b5c7afefc699fd4e36c9825f637eeb59be7d93aab942179; Expires=Mon, 15-Jan-2029 02:27:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a140baaea124a673fc88f463e6278894dd7ab897-1705458438; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=caWwq0SZqqhLTbaPs72YbG3GEaYPqJhzuMURuTIg1nY-1705458438162-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705458439","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (811, 1, '0aa78f7a-c546-476d-bf1a-bab2bf6611dd', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/132/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/132/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705105576769749000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0aa78f7a-c546-476d-bf1a-bab2bf6611dd","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"0aa78f7a-c546-476d-bf1a-bab2bf6611dd","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"0aa78f7a-c546-476d-bf1a-bab2bf6611dd","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981bc3c9d5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2Bc49QHuhrcA394qz0EIW2WY0GMa9Bz3VR0iGOPkWXI3viq5LPXunVB9rqfBCWjlU6RuKuyxIzCpo2dQnfytqANju4RHmaH5D5UcBe2puM3iOB7tH3ai5k88%2FQAqH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5d841b5cb1aa11ee93ed0655eed2b56d; Expires=Thu, 11-Jan-2029 00:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5d841b5cb1aa11ee93ed0655eed2b56dff99f3aafd5555ccc985027b32f9d4a8e747191a88c633a914a7006d3254aa3c; Expires=Thu, 11-Jan-2029 00:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3ce427b3043bf87068a32b89bc75c423ba698dfc-1705105576; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vuNL.jCbZ4Xg2.3qkrdtPiMGZmswP1TnYfbs9W921XY-1705105576767-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705105577","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (900, 1, 'e216d82b-29c4-4cf1-aa0f-b9038208b9ca', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/211/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/211/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705340774728014900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e216d82b-29c4-4cf1-aa0f-b9038208b9ca","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e216d82b-29c4-4cf1-aa0f-b9038208b9ca","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e216d82b-29c4-4cf1-aa0f-b9038208b9ca","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845fefdf48e35e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 17:46:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=vACnhCMsJBdmu%2BzXW4BEeqpWC4zSstg%2BPsi1yOM08PB%2BCh1LOUjTih3UKOsylR%2B2Nhe60vIgaS39Eu%2FTurob2ja4Aa7kJr7j5oBLANiR%2BrQV9nqzdODJE%2FF6OgMg\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fa5ce0bab3cd11eead53f6be5e3459f9; Expires=Sat, 13-Jan-2029 17:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fa5ce0bab3cd11eead53f6be5e3459f9203c22cf5952337c2b2c8ec39f884759c045100479395323d2067c09f545c293; Expires=Sat, 13-Jan-2029 17:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=03fe8984b7cb08f62d28792e7bcbcc19b331df03-1705340774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5xYRpFbdufeWWM5F0ENxwtk52inNPUuL82zOxzeVHmo-1705340774625-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705340775","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (832, 1, '6cc28f61-674a-4d7f-b18e-781427dc1696', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/118/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/118/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164378818453700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6cc28f61-674a-4d7f-b18e-781427dc1696","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6cc28f61-674a-4d7f-b18e-781427dc1696","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6cc28f61-674a-4d7f-b18e-781427dc1696","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d53f9f05e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=TuqRMaDmHobOT01mfVX8jc60wDDbKumzdxYn%2B7E0QfxSTulUd%2FsoBMUBcKoa3e77HpVxPB4lWDrdNSj3dcq26pSwmLY%2FEwAes%2FQOshJVS5GsK%2FJLZN8y1cK26DSI\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=4642cedcb23311ee94af660cddb791b6; Expires=Thu, 11-Jan-2029 16:46:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=4642cedcb23311ee94af660cddb791b670feb7fcf432684ae6781261b30c22a85cfd58147be08a405b6bf9bb481a95e4; Expires=Thu, 11-Jan-2029 16:46:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=60a89a735aaeccd09754b1f1de8e55819c59fa44-1705164378; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=bp3X9_ZGgUi2hS3qRzPW5bqHE2w5IlWLLr0yKLdAKWs-1705164378802-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164379","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (833, 1, 'f94d7678-bac3-49a1-b55c-5d92cd53c0ed', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/118/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/118/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164379279179800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f94d7678-bac3-49a1-b55c-5d92cd53c0ed","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f94d7678-bac3-49a1-b55c-5d92cd53c0ed","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f94d7678-bac3-49a1-b55c-5d92cd53c0ed","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d57cb115e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:19 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=PFTjAeD%2BeFqpP1%2FxY5p8nhwnvgWhblXrnuju1NX%2FNmnRzI%2BuQVsRwdDULb7ckOAQwy5vz4XrdXUGafhC3IyZONb3LmSLa0wMxPF%2Bg0Umt3Tfff38K1w3OUXtmNuG\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=46894a10b23311ee916a22952daeb20f; Expires=Thu, 11-Jan-2029 16:46:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=46894a10b23311ee916a22952daeb20f9f35f9cff0689d94e9df77c355abeab4915fd4e9b2b08b95dc1aaf30efa16088; Expires=Thu, 11-Jan-2029 16:46:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e7431dfcec9461afb76d57836667a9dbdd0523bd-1705164379; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=PYs5r.doztuaG7tI.ugszkO1Wa8wC1mAWspU9UY0eCU-1705164379264-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164380","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (839, 1, '930e59d1-15a8-452f-82e2-8f9237e07b31', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/121/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/121/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164382946402400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"930e59d1-15a8-452f-82e2-8f9237e07b31","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"930e59d1-15a8-452f-82e2-8f9237e07b31","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"930e59d1-15a8-452f-82e2-8f9237e07b31","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d68fe775e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:22 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ptZdcIa1Cy0hrCZNoh09bampZaEUld7cnvaALLwJaQP%2FLodxDmbqEImseGLhjhB11YPEEd%2Bwj7eFITBNqNtA5rFUaEcNJd7HjR%2BfQV0RaiFfHzfmzm9y3zsthAvf\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=48b8cf40b23311eea3ec2aac14c70eb7; Expires=Thu, 11-Jan-2029 16:46:22 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=48b8cf40b23311eea3ec2aac14c70eb7ec2a31a8212a600b944f695433d7ef7a4d6447e22b744d76014861521c2b5ebb; Expires=Thu, 11-Jan-2029 16:46:22 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=dcbdf9a5aaffbb6cea30003ea30a919e0f85e046-1705164382; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=0pfG4GcUmGJxGaA14lRCWQ21QpCQgItQhJVQTVzpUSw-1705164382931-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164383","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (797, 1, '677afaf9-0f2f-445b-91c8-db7760b10023', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[4733d86](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6) Merge pull request ''hidden kehoachdapheduyet'' (#90) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90 - hungthinhne\n[52c909b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63) hidden kehoachdapheduyet - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/773815950340a50498ed3995ebb83bdcacecc237...4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705052744974943800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"677afaf9-0f2f-445b-91c8-db7760b10023","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"677afaf9-0f2f-445b-91c8-db7760b10023","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"677afaf9-0f2f-445b-91c8-db7760b10023","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844477e5cf225e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:45:44 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dvb70LTv2gFFSivM7ZxIA%2BLz9yDWhchGTrHpYl%2BJ8s8una8m7gSf0RdeOF9nCkHnjdSfY95OMpuJ9ort7ApCVHLB%2FMAAMPBGzL%2B9bwmgVeBHBGjFUxRFebmakJlH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5b4da068b12f11ee901bea12b872d272; Expires=Wed, 10-Jan-2029 09:45:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5b4da068b12f11ee901bea12b872d272909f1e285826ad089d5c991c6639cb8e0de37ee6e8db4d4013295007466b954d; Expires=Wed, 10-Jan-2029 09:45:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3720796a4dce851f95be33b615bfff0787264a74-1705052744; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=pegVnIiIjFVcnGwYNjF.oBUEWYWWlusEcTv6U78GWSM-1705052744956-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705052746","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (793, 1, '1adb6dae-2578-4bda-89e2-d4347239e9ed', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/backend:main] 1 new commit", "description": "[b91fcae](https://git.gdtsolutions.vn/khieu-nai/backend/commit/b91fcae669214f6410e0844cb50560d8313ec508) update - vu nguyen", "url": "https://git.gdtsolutions.vn/khieu-nai/backend/commit/b91fcae669214f6410e0844cb50560d8313ec508", "color": 1754624, "footer": { "text": "" }, "author": { "name": "git_for_dev", "url": "https://git.gdtsolutions.vn/git_for_dev", "icon_url": "https://git.gdtsolutions.vn/avatars/009e520c8a20ee8d22d0087b59f6496f" }, "fields": null } ] }', 'push', true, 1705050155551195400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1adb6dae-2578-4bda-89e2-d4347239e9ed","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"1adb6dae-2578-4bda-89e2-d4347239e9ed","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"1adb6dae-2578-4bda-89e2-d4347239e9ed","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844438addb775e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:02:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WGOxMO9wZ3kCSJtU5RQAH5Q8pOvZlWzQPP2VGdK7RFKaHWUbDkw5atUv%2BFnieqtX%2F%2F9H766hfsHM01%2BM2bQV1u7UBTpXDXvryp%2FN4FCKnzushAjFKm9UfBcK3PRC\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=53e2714cb12911ee9c14c26d5c517933; Expires=Wed, 10-Jan-2029 09:02:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=53e2714cb12911ee9c14c26d5c51793300bff64cdd341c9cef46cdbe894ea94204ea129030724679a4fa277d0e5adee9; Expires=Wed, 10-Jan-2029 09:02:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=275bd361fd49fd59c2ec0b14f1ffb41337808482-1705050155; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=i0wGxmaXpU0BWTbrYa8RQdd8NkF0VE4cBSi5hRDaUYA-1705050155529-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705050156","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (901, 1, '6a6c3c1e-d8c1-4e88-bb93-bdd2435e61b1', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/212/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/212/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705340775113981400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6a6c3c1e-d8c1-4e88-bb93-bdd2435e61b1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6a6c3c1e-d8c1-4e88-bb93-bdd2435e61b1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6a6c3c1e-d8c1-4e88-bb93-bdd2435e61b1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845fefe209665e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 17:46:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=o66qUUnX1Ge3ypLCPX91MarDWZx0lp1awTmrITGWkVzHOYzYttSlNNdKzuqAIDl72VdnK9n3k2%2FqICQrQV9%2F0X3Sq7MyZUPtWRYSQ9YHlRVuOFt%2FTokRFJ8P6cVQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=faa0d7b6b3cd11eea7e28ebd24e73379; Expires=Sat, 13-Jan-2029 17:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=faa0d7b6b3cd11eea7e28ebd24e733793088983e306330bb1cb7bb79cc756eb1018be3bdba1c2b1b0b13a4b60396c508; Expires=Sat, 13-Jan-2029 17:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4c15f6a096b554beea3e05749c5b130322f0c3e4-1705340775; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=wIAo_6acTH0x2zhWwJnhc7Bn9vnqxitr7vX_kTX6Lww-1705340775067-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705340776","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (902, 1, '080851a2-a491-4dd9-8308-d4faefcac4d0', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/212/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/212/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705340775516382500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"080851a2-a491-4dd9-8308-d4faefcac4d0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"080851a2-a491-4dd9-8308-d4faefcac4d0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"080851a2-a491-4dd9-8308-d4faefcac4d0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845fefe469dd5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 17:46:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=86%2BAgdJn0hLVZEp3PqW7rswF%2FMIahcBE%2FrgQ04r5kjapEz11ADPYIml4md6en30KnS1HPio2Hs1QEdjbSE3RlsVdbJ%2F3Kgn3lwtQlZeATcHzk%2Fkz4L0mNbXpBuvW\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fade4678b3cd11eea787323056eea780; Expires=Sat, 13-Jan-2029 17:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fade4678b3cd11eea787323056eea7808443d0e515c87c27337eca05e824682508b0077212f3f46be4c91c48a366c9e9; Expires=Sat, 13-Jan-2029 17:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4c15f6a096b554beea3e05749c5b130322f0c3e4-1705340775; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=iLKQ2.STOFdn03pBZjtrAI5BAZNbTRH9BTyd7dKGDtI-1705340775469-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705340776","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (813, 1, '045fa2ce-1ff3-4abe-8029-729e1c8f745b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/123/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/123/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705134972631724000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"045fa2ce-1ff3-4abe-8029-729e1c8f745b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"045fa2ce-1ff3-4abe-8029-729e1c8f745b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"045fa2ce-1ff3-4abe-8029-729e1c8f745b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f66cf755e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=6LEmy%2FdT2N3RlVgv%2BQBZpzCGIYHyFIkRUxZQn4n0oWvBFn4N991AlOybPZ5hSDdW6uyAzkzuAHmMNIpvGcG1z66jDkiXVl6Qfp%2FkWr7bJsM6ennoCcXDmvLvg0%2F%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cecfa42cb1ee11ee8d466ad93de91fd8; Expires=Thu, 11-Jan-2029 08:36:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cecfa42cb1ee11ee8d466ad93de91fd898db00406e675b6b515867da5f4d551ee669d1428435589e90cf1bc882ea2e87; Expires=Thu, 11-Jan-2029 08:36:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d46606db0248f5df459bbae89f8b74efea3c371c-1705134972; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FRC3qvkGPSLPw7W_mPdBGFcrztV9whTHx0woUk8Y2Qg-1705134972621-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705134973","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1120, 1, '3cb339fc-3bc9-46bb-a447-5b0e137f15cf', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/23/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/23/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604917462875200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3cb339fc-3bc9-46bb-a447-5b0e137f15cf","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3cb339fc-3bc9-46bb-a447-5b0e137f15cf","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3cb339fc-3bc9-46bb-a447-5b0e137f15cf","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920ab1c225cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=gN6RJwuWioEF6NzJ5dk78yHhuDPfm8BZX1dror8IjyPybd1AUqLo085QU10BvoXRhhrr2r8QxKOCUAWmPENXdFOFxvoKJifkWFYcAFjsOfUQ4QQKOshguKw%2FyOXv\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fbbc7d44b63411ee9f173e3f533a43e6; Expires=Tue, 16-Jan-2029 19:08:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fbbc7d44b63411ee9f173e3f533a43e6cc3f7b7d45d8ca8d3e9e39d34df6f56d7cffd9cc15bfb9620f8f68b892d510df; Expires=Tue, 16-Jan-2029 19:08:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0f675e9ee5c6376fa052456d1221ffa35ce572d1-1705604917; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=AwDeA58o3AZnb_pobgTg2WbvZJpmOEpWvi82TbI_kA8-1705604917418-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604918","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (897, 1, 'a7d9530c-744a-4a9d-851a-db361c639a63', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/104/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/104/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705340773233704600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a7d9530c-744a-4a9d-851a-db361c639a63","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a7d9530c-744a-4a9d-851a-db361c639a63","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a7d9530c-744a-4a9d-851a-db361c639a63","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845fefd54ef15e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 17:46:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DbDwbGGRV%2FR%2FzAWanpp7u4qZYsKRAzTafpDfWLH6NLyDmWWEOJFkoNVGblA6xeco9jMbbfAh1Amcjq7NEJuV0SjtLSd7flhBySwkqgE%2B89PFey2Q9kIovDHLW9sB\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f9803692b3cd11eea2c8dad289a1f012; Expires=Sat, 13-Jan-2029 17:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f9803692b3cd11eea2c8dad289a1f0123c95c80f4a86837282eb563aec9484171bbddb845f73209e90763024b63a5350; Expires=Sat, 13-Jan-2029 17:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=81b8be85a9a073145cba7882c76eb13d0fb7deb1-1705340773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=pAogVMes44scviON1QLS7X5aP.Syxx8r.bihTkIyPwc-1705340773186-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705340774","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (898, 1, '44ee3657-8211-4c6c-a2d9-2638aa891eea', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/104/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/104/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705340773768092700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"44ee3657-8211-4c6c-a2d9-2638aa891eea","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"44ee3657-8211-4c6c-a2d9-2638aa891eea","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"44ee3657-8211-4c6c-a2d9-2638aa891eea","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845fefd8bf7d5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 17:46:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4iDsOIZYYdtHW69YLbe8hJN6jc5a8xo9WMjAhBA0vdWJyFjUM0AozgYMRogTZ9XM8rK8llO8p7V%2BDUuE%2Fd%2FUCo8jb%2FBFJH6l5IN0B5o8VxWd6X1bPzDy4GweQ6el\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f9d25feeb3cd11ee89d126f75c34e25e; Expires=Sat, 13-Jan-2029 17:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f9d25feeb3cd11ee89d126f75c34e25e22a75ca118cc36b07fe627be26d30a03a74d34b65c07486775cdcc25269478ad; Expires=Sat, 13-Jan-2029 17:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=81b8be85a9a073145cba7882c76eb13d0fb7deb1-1705340773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=8wux8XWGGZCJ_DaNdAkHp8Ik574em_PiKmdiJ2dVyKc-1705340773718-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705340774","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (899, 1, 'f5618244-68e0-4d66-9d86-b80953449331', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/211/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/211/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705340774291086400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f5618244-68e0-4d66-9d86-b80953449331","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f5618244-68e0-4d66-9d86-b80953449331","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f5618244-68e0-4d66-9d86-b80953449331","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845fefdbf8135e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 17:46:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=iteWEFsO4TRCL9okUskGU7Gj%2FuEK78dSKh5V%2BbHvbcgSELICu39RnDwRlgtREC%2BQuIGydrH8QfHmoogyH6yRtU7O6j8ytoFsaRuN5KFln9t%2BBux05t9qJs7irsYR\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fa2340bcb3cd11eeb8cb9e73320b8e84; Expires=Sat, 13-Jan-2029 17:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fa2340bcb3cd11eeb8cb9e73320b8e842092c89e7778bbf8ba732dd5512336d21a103942909fabc1e74098d63b20994d; Expires=Sat, 13-Jan-2029 17:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=03fe8984b7cb08f62d28792e7bcbcc19b331df03-1705340774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ipIS5ZKiF_Tu4SRNX.T0Xj.VqRZt6Nh7HqfkcA2d24E-1705340774244-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705340775","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (842, 1, '5ec6d1b3-3e66-480c-b471-da9ac704d59f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/108/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/108/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705193772300699600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5ec6d1b3-3e66-480c-b471-da9ac704d59f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5ec6d1b3-3e66-480c-b471-da9ac704d59f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5ec6d1b3-3e66-480c-b471-da9ac704d59f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eaf2bce25e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=mWcvnZri6O2JVTiRsf2UGLNquP5W8n%2BvLuOc1z%2ByS34n4asX7gb6udUBdcTcixyCkLHU8TpHvNKedhjYPyyW%2B0mnF2rd5zh1EwUyHkY%2BGFiRUll%2F8X9MmiimYUQw\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b623a2dcb27711ee90f69a5b94cb3f6f; Expires=Fri, 12-Jan-2029 00:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b623a2dcb27711ee90f69a5b94cb3f6f089ea9474d3809ce14a13f12c06aa6c6a6a96445c383e6cca31a9113b7c53daf; Expires=Fri, 12-Jan-2029 00:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=17952d0a11b64e100f321547fbbd38d0041e4f3b-1705193772; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=EEr6K5ph05PEotNOxVF98yjpazaQREoWNirFpfUC7Ko-1705193772280-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705193773","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (844, 1, '01e43c98-d4cc-4c59-b16c-64957db98b9e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/109/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/109/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705193773125826900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"01e43c98-d4cc-4c59-b16c-64957db98b9e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"01e43c98-d4cc-4c59-b16c-64957db98b9e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"01e43c98-d4cc-4c59-b16c-64957db98b9e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eaf7ae355e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4M9lVs0m2eupACprLg7oEln18QD9vrLB0UIQI6ZJcJow0zDugylVb%2BJapaLemG%2Fr4JDq7vDTe85WYG1IZsXZMaalL55pr0AOwiQr0LBYPSmLSmrAoqr7I6PhhaN%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b6a1cb4eb27711eebb23aef83fe71131; Expires=Fri, 12-Jan-2029 00:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b6a1cb4eb27711eebb23aef83fe71131a7138db14c77189fa0fbfe7aab28b4f88315b7f7f02284434ef3140ebcddf558; Expires=Fri, 12-Jan-2029 00:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=54b0950a9939813bfe4def9819cd0284c357630a-1705193773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=LQ52VMK7_jaa0766eNzledgsm8bV3B0SqTWHdQ23tDg-1705193773107-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705193774","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (843, 1, '316b070e-1af1-46bf-a6c1-a163ebbfe248', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/108/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/108/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705193772722634300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"316b070e-1af1-46bf-a6c1-a163ebbfe248","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"316b070e-1af1-46bf-a6c1-a163ebbfe248","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"316b070e-1af1-46bf-a6c1-a163ebbfe248","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eaf50d6a5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=eLbjoxkK5yQpLjdmSW5B0uWwEnDBqva4lrKwRI0A1WppgbCSdonjllxrXzPZKVMk7REitZCdS6M6Qbc1tydVqIZjCEHXcWU7nK2%2BqMg4rXeu2Z1z8MT05JMejGpg\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b6641e52b27711eea5c52a1cb95f86bf; Expires=Fri, 12-Jan-2029 00:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b6641e52b27711eea5c52a1cb95f86bf7d7d885e9ee7522461a30ae7ce1841860607a3db56756087b8edfae368e4e641; Expires=Fri, 12-Jan-2029 00:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=17952d0a11b64e100f321547fbbd38d0041e4f3b-1705193772; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=0qyvX.aGzb910wweJwQ9CSIWrjJnbyGMjFUgTm207ZY-1705193772703-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705193773","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (987, 1, 'f676a1bc-a8ae-42d6-824f-ecb748716b3f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/79/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/79/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458375287883800, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f676a1bc-a8ae-42d6-824f-ecb748716b3f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f676a1bc-a8ae-42d6-824f-ecb748716b3f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f676a1bc-a8ae-42d6-824f-ecb748716b3f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26fbba245e3b-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kvRXR9%2F5YDRXnp%2FyDJTWS284tlRgxXX3H13OyFIyRBX3ixkWU%2FNYvnKvvutH5E6zZFLQgD0rCK%2BCpW0xzj33fS3lnsQPgJq4lWi5sNwTk1y5ZZxLN%2BOTgSG7a9wo\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2208","Server":"cloudflare","Set-Cookie":"__dcfduid=c9ce7aeab4df11eeb83d1ec9afb677e3; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c9ce7aeab4df11eeb83d1ec9afb677e3aadea7844b9ca755c40fdae9a61d8e30c2dddb9944dd42c42552d646eee709f9; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ee00da139899552a197be1f5a7b8047a86e0a748-1705458375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=NluuAQqZD_io3JA7FIBB_EZRb4odXTLCWIPpT8s5cJk-1705458375266-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458378","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (904, 1, '9d8bad17-a96d-4555-bab8-07d336fa5792', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[eCabinet/backend] Repository created", "description": "", "url": "https://git.gdtsolutions.vn/eCabinet/backend", "color": 1754624, "footer": { "text": "" }, "author": { "name": "lhngoc", "url": "https://git.gdtsolutions.vn/lhngoc", "icon_url": "https://git.gdtsolutions.vn/avatars/51fb7a1b5abc6465f0237197e57ec12f5d9f4aac5d951fc8d53422b7397b6287" }, "fields": null } ] }', 'repository', true, 1705366329294809200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9d8bad17-a96d-4555-bab8-07d336fa5792","X-GitHub-Event":"repository","X-GitHub-Event-Type":"repository","X-Gitea-Delivery":"9d8bad17-a96d-4555-bab8-07d336fa5792","X-Gitea-Event":"repository","X-Gitea-Event-Type":"repository","X-Gitea-Signature":"","X-Gogs-Delivery":"9d8bad17-a96d-4555-bab8-07d336fa5792","X-Gogs-Event":"repository","X-Gogs-Event-Type":"repository","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84625fc319c55e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 00:52:09 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=aLOcr7NnbpJs%2F9EXnq6I6%2B%2F%2B9XXaBoSsRYAGjEYS1wQYe5MSMBrqZgBonpg5Z87ouWPSz5q%2BG8gCK%2BWXLRxz4xg5Uv8oo5fq%2BseYO%2BuZb1JWfsznqQmVVwfjOrNE\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=7a1b3abeb40911eea8c72aefc8414a83; Expires=Sun, 14-Jan-2029 00:52:09 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=7a1b3abeb40911eea8c72aefc8414a8362ed33ffef979e5a80cb1346f42a502de64496a4221f0c7c99701c58eff204c8; Expires=Sun, 14-Jan-2029 00:52:09 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=35d96b4446820cc0a67cf44b3c3a9ff71e3f3c93-1705366329; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=gPorvXlFuJS87Ou1VqvYNfA5e3pfxACscboO6sWmf3M-1705366329249-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705366330","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (903, 1, '38079236-3b9d-44d5-9a7b-c59b6846e15c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[eCabinet/admin] Repository created", "description": "", "url": "https://git.gdtsolutions.vn/eCabinet/admin", "color": 1754624, "footer": { "text": "" }, "author": { "name": "lhngoc", "url": "https://git.gdtsolutions.vn/lhngoc", "icon_url": "https://git.gdtsolutions.vn/avatars/51fb7a1b5abc6465f0237197e57ec12f5d9f4aac5d951fc8d53422b7397b6287" }, "fields": null } ] }', 'repository', true, 1705366278843015100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"38079236-3b9d-44d5-9a7b-c59b6846e15c","X-GitHub-Event":"repository","X-GitHub-Event-Type":"repository","X-Gitea-Delivery":"38079236-3b9d-44d5-9a7b-c59b6846e15c","X-Gitea-Event":"repository","X-Gitea-Event-Type":"repository","X-Gitea-Signature":"","X-Gogs-Delivery":"38079236-3b9d-44d5-9a7b-c59b6846e15c","X-Gogs-Event":"repository","X-Gogs-Event-Type":"repository","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84625e852d295e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 00:51:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=c91bwtHI45LyHswS9f0sI93p7oKmS60CGQMWLT%2BVGc%2FGsn08dgexqiXnFG2EsgEIPqIbBtjl3C4vtFHEOH2nOiFLE1DpJoz%2BZU7cLbBamrgOnzup91h6o5d5XFtr\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5c0834beb40911ee9222c66384e17581; Expires=Sun, 14-Jan-2029 00:51:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5c0834beb40911ee9222c66384e1758186c5ebd9863fe297c253232179419ecd61d49d6360d2e809eb8d84e7f0461dcf; Expires=Sun, 14-Jan-2029 00:51:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1534d6711b0be7846d8c80d430aa60c0b9cf3e3c-1705366278; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=PlxWZgTXVnjgq0msAoTDrjupLTDSSKBq4Ek4DLxN_0g-1705366278792-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705366279","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (846, 1, '222bb2af-7f66-4d24-bbac-a0b986f2183d', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/110/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/110/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705193773929409300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"222bb2af-7f66-4d24-bbac-a0b986f2183d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"222bb2af-7f66-4d24-bbac-a0b986f2183d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"222bb2af-7f66-4d24-bbac-a0b986f2183d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eafc8fe05e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sKJBcKtS7MliFpj0%2F9Sg9QhypWnKXeBIRKClHkG7MYkD92IFgS8TPu7JZ4dhh4BfER9k%2Fzqp7Cm6N%2FgfoxG87X90iquSf1aEMl%2Fs7Wb6kyJD%2BuJB0cXf7AcMQIss\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b71c5a9eb27711eeadaef6ae5b42f42d; Expires=Fri, 12-Jan-2029 00:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b71c5a9eb27711eeadaef6ae5b42f42d8463710ffd3f03cf91e43e5f1de80d93f7005aca4272c2c0860e155020263d30; Expires=Fri, 12-Jan-2029 00:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=54b0950a9939813bfe4def9819cd0284c357630a-1705193773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=D19LPY0vMJjNBEQGPO6O0gKrtNBhHTyOVpP59wTdKGg-1705193773910-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705193775","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (845, 1, '77d59857-411b-4044-bdcf-a63e972a993d', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/109/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/109/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705193773507227700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"77d59857-411b-4044-bdcf-a63e972a993d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"77d59857-411b-4044-bdcf-a63e972a993d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"77d59857-411b-4044-bdcf-a63e972a993d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eafa2ec35e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=FX5r343u0A63h3%2BXF8qfS0olJMkjIMLQvjclz1w8zcwe43XFXNS88ioxrOcMf%2BIeWYkHoE30OoOs8hO3UQBSLjmrLP0RVhw2hd%2Bh%2FisH89Uh9HWo0r0odasjniFg\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b6dbcb78b27711ee8c662a1cb95f86bf; Expires=Fri, 12-Jan-2029 00:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b6dbcb78b27711ee8c662a1cb95f86bf4157bb8c5a5e91e7ea4256f486c097e30c4ba45f31cdedb615f53ba947cb4db0; Expires=Fri, 12-Jan-2029 00:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=54b0950a9939813bfe4def9819cd0284c357630a-1705193773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=SsvskWesjuAHsT5Usaawz03PFYr4J0GFDOuK7p6nbo4-1705193773488-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705193774","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (847, 1, '39bfa69a-fa71-486f-8b03-ac5e3f6e7ddb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/111/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/111/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705193774308940600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"39bfa69a-fa71-486f-8b03-ac5e3f6e7ddb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"39bfa69a-fa71-486f-8b03-ac5e3f6e7ddb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"39bfa69a-fa71-486f-8b03-ac5e3f6e7ddb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eaff28c15e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=o0%2Fb1fQajEZ5rUc1PaqjLeMclwKLoXsRWg2dJbVSuPJ0XbvOw%2F%2Fy3n4OD4QuMObGlE7cQhEkLEW6qdsMqqURMcnH2jFddZfxsKCL0AFtFThXnp7gKnQ9hBoszzTf\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b7563674b27711eebb1cb2f6ae5c622d; Expires=Fri, 12-Jan-2029 00:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b7563674b27711eebb1cb2f6ae5c622d25264fe2867ba5b6618f4c236cd73be07018dc73d34c2b85bd0961890af053fe; Expires=Fri, 12-Jan-2029 00:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1b84d2fed152a835bc02216017ce111cbc07e659-1705193774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=WkmqutAi_aTbftG65M2FJwhDsDsEgP6SOri5SEclps8-1705193774289-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705193775","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (905, 1, 'e1a2e5e3-20fc-4c6e-84b2-3c549078d7ca', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[eCabinet/mobile] Repository created", "description": "", "url": "https://git.gdtsolutions.vn/eCabinet/mobile", "color": 1754624, "footer": { "text": "" }, "author": { "name": "lhngoc", "url": "https://git.gdtsolutions.vn/lhngoc", "icon_url": "https://git.gdtsolutions.vn/avatars/51fb7a1b5abc6465f0237197e57ec12f5d9f4aac5d951fc8d53422b7397b6287" }, "fields": null } ] }', 'repository', true, 1705366922903976100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e1a2e5e3-20fc-4c6e-84b2-3c549078d7ca","X-GitHub-Event":"repository","X-GitHub-Event-Type":"repository","X-Gitea-Delivery":"e1a2e5e3-20fc-4c6e-84b2-3c549078d7ca","X-Gitea-Event":"repository","X-Gitea-Event-Type":"repository","X-Gitea-Signature":"","X-Gogs-Delivery":"e1a2e5e3-20fc-4c6e-84b2-3c549078d7ca","X-Gogs-Event":"repository","X-Gogs-Event-Type":"repository","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84626e40d96b5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:02:02 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NBTIybeWE1TG88MQrYliBNQu6eypUUyL57FfL9O8is9zoKWM8hKWogwKpAqkP%2BV%2B2BeHf2Iv7LAcjdBd8O37LaFvuXV43eRHqxTUaziw7jI6MqCSs11Y0CebSSOT\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=dbeef0a4b40a11eea9c7d6595ffbcd9c; Expires=Sun, 14-Jan-2029 01:02:02 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=dbeef0a4b40a11eea9c7d6595ffbcd9c8678b647be8cb4e8c1443c3d94a92c928368ac517a629b4f8c032d45c86c8487; Expires=Sun, 14-Jan-2029 01:02:02 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e983ec8fe8c343d0140ae6c77cd3507fb6fbf44f-1705366922; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1KRmK16zIo5UZfWH.oHTvwa.FNVvdpyuEu6Im4p04KI-1705366922871-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705366923","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1123, 1, '56dcc4bb-7fb8-46e0-988b-9a783354b7c0', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/24/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/24/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604918882568700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"56dcc4bb-7fb8-46e0-988b-9a783354b7c0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"56dcc4bb-7fb8-46e0-988b-9a783354b7c0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"56dcc4bb-7fb8-46e0-988b-9a783354b7c0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920b43e2e5cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MQRZ8HDBQ97XxwrhzalubvAhMzUHOsc4VRj7Sr3Te2hVJ%2B3gBrQmPejbt4kfW4tJ6eOxXy7LSVLFsk2snFOjl9Cu5tWwnggp3Stf618eYQG44xOfx87mixozwkEX\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fc94eadab63411ee99696a056392ddd6; Expires=Tue, 16-Jan-2029 19:08:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fc94eadab63411ee99696a056392ddd6ae833d0542a52474c86c56d0cfd79474c333a0826207e3b73b8651623e9377a8; Expires=Tue, 16-Jan-2029 19:08:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b0430083c284c3dd0cf80e4b130b9fdcb8bf41b1-1705604918; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=CxmfsFjSOhBxFAOqI3KmPg6od74PTX1YSsnOgta5PVk-1705604918837-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604920","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1011, 1, 'dbd37521-c95e-4af7-8f6a-b455705b86fb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[9993458](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/99934589e07a2e5021fb88d8e95cd0701a3c3d8f) Merge pull request ''fix gdnn'' (#108) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108 - hungthinhne\n[8f0bc90](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8) fix gdnn - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45...99934589e07a2e5021fb88d8e95cd0701a3c3d8f", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705458438644104600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"dbd37521-c95e-4af7-8f6a-b455705b86fb","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"dbd37521-c95e-4af7-8f6a-b455705b86fb","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"dbd37521-c95e-4af7-8f6a-b455705b86fb","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b2886c9bd5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:27:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=yfHN%2FUQabLqaD7urubnCzr%2Bh%2Brjr4Nde1VZA%2FxsOjtLPFulOonHvTJqvmxzyiCYL3DGz6FQAzHuDoPiq%2B5PCdvpAmtthT%2B43qdCt3Uh1oo4Zxb9his8okzywEiEK\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ef920814b4df11eeb00dba83cb99b81e; Expires=Mon, 15-Jan-2029 02:27:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ef920814b4df11eeb00dba83cb99b81eba4027aca8ec67072b0ea2e6cb5c17f07866987163bb983f2d6f025f4a3c884c; Expires=Mon, 15-Jan-2029 02:27:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a140baaea124a673fc88f463e6278894dd7ab897-1705458438; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=RSTWxUNhnWFd3gmRiTcg5sEKaXM_4qOQDNI5AANf71s-1705458438623-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705458439","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (848, 1, '2f598e3b-6de4-41ef-bf14-742d355f01f9', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/111/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/111/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705193774671445400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2f598e3b-6de4-41ef-bf14-742d355f01f9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"2f598e3b-6de4-41ef-bf14-742d355f01f9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"2f598e3b-6de4-41ef-bf14-742d355f01f9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eb01895d5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cefzP8D2eKVLaqy91QMpv2geZBKEKh2zgDQripz6bpQtIDPUmzWJII7OL3zmfUMYYSJLpWHh3c0h%2FuD7Rn1X3TC34wXnJ21OMIaY%2FCUWrDGZVQPSBjWQgPUz37vs\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b78db68ab27711ee9e6ef6ae5b42f42d; Expires=Fri, 12-Jan-2029 00:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b78db68ab27711ee9e6ef6ae5b42f42d66beadb1d905dd70fd44cc626edf4a5362a20eeed96ac4ab38f479e2fe25f116; Expires=Fri, 12-Jan-2029 00:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1b84d2fed152a835bc02216017ce111cbc07e659-1705193774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=uZuser5J3OQI4UlYtmEPWM_7y4qrCT6bdeAIEOWzX7k-1705193774653-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705193775","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (906, 1, '7168c219-36f6-4aa1-bc38-b0438a6bffb4', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/admin] branch dev-thinh created", "description": "", "url": "https://git.gdtsolutions.vn/khieu-nai/admin/src/dev-thinh", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'create', true, 1705368636843724400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7168c219-36f6-4aa1-bc38-b0438a6bffb4","X-GitHub-Event":"create","X-GitHub-Event-Type":"create","X-Gitea-Delivery":"7168c219-36f6-4aa1-bc38-b0438a6bffb4","X-Gitea-Event":"create","X-Gitea-Event-Type":"create","X-Gitea-Signature":"","X-Gogs-Delivery":"7168c219-36f6-4aa1-bc38-b0438a6bffb4","X-Gogs-Event":"create","X-Gogs-Event-Type":"create","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84629818fea05e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:30:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bntaab4HtlEq6bxqlbsgTijsGn74vO83DamsfxZ9UywuBDRCyB74TQwNgm5RBfMnjtLeFd%2BDa6Oupl4ZGZF7TPNwOqaR260OC721F15IBjHdCUtYye2G9oWsckPM\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d985a34ab40e11eea814725130698809; Expires=Sun, 14-Jan-2029 01:30:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d985a34ab40e11eea814725130698809dcdd2df0ea8acfd8d2d4bbfe9993bba98c4b79f9726f37b803aac1c6bd833c0b; Expires=Sun, 14-Jan-2029 01:30:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=594289a435e84f6821a65b4919fe7fd2232359a3-1705368636; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ysECrVE39MYOh.FA1DmVPy0qeBJQxbK.PgU5YkQnFDQ-1705368636812-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705368637","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (850, 1, 'c36710ae-c909-4c54-a6dd-54506cbb14fb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/admin] tag refs/merge-requests/2/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/admin/src/refs/merge-requests/2/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705193775748218800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c36710ae-c909-4c54-a6dd-54506cbb14fb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c36710ae-c909-4c54-a6dd-54506cbb14fb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c36710ae-c909-4c54-a6dd-54506cbb14fb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eb07eaf05e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kInBZr9BamvX5PUZz8HI1odLCeNH9YAGMC7CFXWHv%2FEDh7PWjFndXYgKgRqBlrsd1fhW0ahADj6qjusPz%2Fy8A5opMd%2BpjuRIcmqOjT9R4kebn7NtO%2FKteWgYI6yV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b831584eb27711ee9f728a072c3c2665; Expires=Fri, 12-Jan-2029 00:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b831584eb27711ee9f728a072c3c26651e330f9e8090664f97c47267e0c9b80ce2ae9d27e4a4bd32b3a2ef390b9b8438; Expires=Fri, 12-Jan-2029 00:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=df3a9460d770db838dc5a1087b6a946f271db99e-1705193775; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ukKPYt4aelClmU6NYzXAt7X_RusC0t0srBELBSruxN4-1705193775729-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705193776","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (849, 1, 'abdf2efd-2340-47bc-a198-43b0d9558d31', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/admin] tag refs/merge-requests/2/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/admin/src/refs/merge-requests/2/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705193775330144900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"abdf2efd-2340-47bc-a198-43b0d9558d31","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"abdf2efd-2340-47bc-a198-43b0d9558d31","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"abdf2efd-2340-47bc-a198-43b0d9558d31","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8451eb055a235e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 00:56:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=UhJFf%2FsiGjeeQ8UZjWy1%2FMT%2FShzYb55SkigLN605ZhPiQbniZJZUi8r5AttS3ia1C4icpOAvQQV36xw7ZDihAOUurnPaf2x4bshK92a4YIlFqDxy%2F3zg6BfLa3ji\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b7f1e4f2b27711eeb38f465adf3428fb; Expires=Fri, 12-Jan-2029 00:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b7f1e4f2b27711eeb38f465adf3428fba9be9e6bd243383a3fba93de9f3af1cb5e9ea7d38ce46b19eb8a281f9f1d8848; Expires=Fri, 12-Jan-2029 00:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=df3a9460d770db838dc5a1087b6a946f271db99e-1705193775; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=O6KdLMUlI9GxkViAP8QyY2OnVCOTdhasRctTm0xpDWM-1705193775310-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705193776","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1103, 1, 'b265b285-b27f-4aae-9bad-6ceff78a7304', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/41/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/41/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575515134269400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b265b285-b27f-4aae-9bad-6ceff78a7304","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b265b285-b27f-4aae-9bad-6ceff78a7304","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b265b285-b27f-4aae-9bad-6ceff78a7304","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652d6fb025e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rx%2B0nfBDbrEcJqkd%2B4W6PTKCEGCsdz5Kpw%2BcWbwu%2FqOvhM3uwzYPHs1iLrxJaOrXwFzbNxAYr2UjNwBjgE84tgsln53QuFo44wTPVF7o7nvQhCy4TdvIqbCQYlTR\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=869767deb5f011eeb5bd2ef1960fe1ba; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=869767deb5f011eeb5bd2ef1960fe1ba7e7f02fbe8a4556ffa973fcf2ab0564dc96af6fd0c216e614677f6542fb41936; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=489313edd043864583f510989b87c9b49a3a1ccd-1705575515; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=VNZiVvFMykZvv9BwpQCp8T88FhAeKvz.5hxTRz3mBFU-1705575515104-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705575516","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1104, 1, '7307d394-7b72-4a66-9c70-ebb2eb6758f9', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/42/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/42/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575515514761600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7307d394-7b72-4a66-9c70-ebb2eb6758f9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7307d394-7b72-4a66-9c70-ebb2eb6758f9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7307d394-7b72-4a66-9c70-ebb2eb6758f9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652d9ab7a5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=iGBrKwR%2F%2B8c9MpjAPQOao3l%2FoTWHAenLlouYhfAO1E%2BlDta1MMUlaT4Yf%2FxunxQwm77zBnWUtNsbNpcK5etV%2FWxSE3yW2%2BRnZ3J7KD7%2FncDtDS%2B%2B0NeuJl3ea4G3\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=86d1b29ab5f011ee8102c6320791c346; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=86d1b29ab5f011ee8102c6320791c34665c33b96fdd26a45047ef95bd42b4d0c8dc1e8f5c0f9fdaf77d513eef16b28de; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=489313edd043864583f510989b87c9b49a3a1ccd-1705575515; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ooLGYGPlTAJ5bLZmqA_JQVsEZT9Ydh7yAbCxU0SLpBY-1705575515485-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575518","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (853, 1, '66db32be-ef73-420b-bad8-78a3eced8114', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #91 add menu thong bao", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705208015423187800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"66db32be-ef73-420b-bad8-78a3eced8114","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"66db32be-ef73-420b-bad8-78a3eced8114","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"66db32be-ef73-420b-bad8-78a3eced8114","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845346ade8a85e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 04:53:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=f4ohHyHNPlzw79tPRTPwWziafPUtSKE3w1jDRx7uzrQxNdhx6%2FplNStUYeayEor3LVg9Wa5y5aXk1gvinVqlmJE4P7rBqEhHLpO4V07cuiE7rRC2xce2gtRJV1At\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=dfb3cdaeb29811ee8b552aa5ff753884; Expires=Fri, 12-Jan-2029 04:53:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=dfb3cdaeb29811ee8b552aa5ff753884f410aab79fad9ebe461884ba69bbf46d30213963578bbab8ce33ff65f45eadcb; Expires=Fri, 12-Jan-2029 04:53:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=df8a196c5a2f8eca5c8a14f29106407153ccef14-1705208015; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7k6S1gbyUtvFhJwvgNHe6_VvyPYY6HVGfC2tMFHkC9w-1705208015404-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705208016","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (851, 1, '1512b925-8d0f-4630-b4df-a5c1d60b1540', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[11ad5c0](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1) add menu thong bao - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705207777131300900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1512b925-8d0f-4630-b4df-a5c1d60b1540","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"1512b925-8d0f-4630-b4df-a5c1d60b1540","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"1512b925-8d0f-4630-b4df-a5c1d60b1540","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845340dcc9e55e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 04:49:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qBZDcJXs7zCFYbreV9OjKkXx2djHf14yXN%2BeAq9PwzxWJ%2BqEbLBMNg%2F0bzZlzkEihYeaRkXzK1%2BWF%2BSNjEvMV7gpYiGcumJ7UEJyT9NRka6r%2BARfKQJoVNxOSUM3\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=51aafcdab29811ee8af692972145665e; Expires=Fri, 12-Jan-2029 04:49:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=51aafcdab29811ee8af692972145665e3df112c91f07c801c1b473b9fbf6be5513e259816ad14fa0612fbcb87a64b1d0; Expires=Fri, 12-Jan-2029 04:49:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1bb06b9c6aa94d308b7d03b15a1ef518ec1b13db-1705207777; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=pjtYoAKpsAL0dQQZsjVBA3TpBojzOADsDVEHbXA88Y8-1705207777112-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705207778","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (907, 1, '5215d015-1484-49fc-aad6-ad605f4f9de6', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[122c6ba](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/122c6ba57907664a26aac6393e0880e02d8d2610) change login - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/122c6ba57907664a26aac6393e0880e02d8d2610", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705369944628445100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5215d015-1484-49fc-aad6-ad605f4f9de6","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"5215d015-1484-49fc-aad6-ad605f4f9de6","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"5215d015-1484-49fc-aad6-ad605f4f9de6","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462b806ff4f5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:52:24 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fBAYSennY1AMG9%2BqiQiw9OSMtWXJ5Cc1LOPb0Rvy9HJ2gCTFSv92xognnMfC0pPRWl8JXvxpuLIP0Bnv0MV0Grh3D0N4JQo8WDjry6J35rXDoxVPB0cnmMeKxTKs\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e506eeceb41111ee965a1ada573ed41d; Expires=Sun, 14-Jan-2029 01:52:24 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e506eeceb41111ee965a1ada573ed41d02e6aca23ff4376f1132ef2977af59f0f8e053cde7dce3cb7581244bb641b87b; Expires=Sun, 14-Jan-2029 01:52:24 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=88334c4adf95c55d1bc6c6672cb09146c054dea7-1705369944; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=wt1c2auADX8OWQYEefQ0qgUHu.geIWLIWeAFiVSOlb8-1705369944605-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705369945","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1012, 1, '0d9f8e91-b4d5-4a8c-b6de-e6ce23af8bcb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[07dd788](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/07dd78834b58c799d0db70d99f863dda643572aa) fĩ loi info nld - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/07dd78834b58c799d0db70d99f863dda643572aa", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705463096619610200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0d9f8e91-b4d5-4a8c-b6de-e6ce23af8bcb","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"0d9f8e91-b4d5-4a8c-b6de-e6ce23af8bcb","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"0d9f8e91-b4d5-4a8c-b6de-e6ce23af8bcb","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b9a3bbf0f5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 03:44:56 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=EBnRiUdsQu5eMQKc2r%2FMxRTZX4RiR3i7hO8lzn%2BlbIDDh5Tv6xTfbmWzrLjprZ346%2FxO83uM%2BVAG4%2B5pFK%2BqH%2BlJ5RhPKdWkIcb8Io%2BizXF8KwA0DEkh7ogFVSep\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c7ef3718b4ea11eebcb9724a245f1f0c; Expires=Mon, 15-Jan-2029 03:44:56 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c7ef3718b4ea11eebcb9724a245f1f0cedd6dbc7a78b1b6bcc49673f91cda9cedfb7e31f0a02c9649d4f2e5c1441d1dd; Expires=Mon, 15-Jan-2029 03:44:56 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1b11ecc136a87023187dc5181ab689cbab2fc7e2-1705463096; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7IP.73vXaKLb.rgLb15WkZe2pWynlg2HtIdz5ZFujy0-1705463096588-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705463097","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1128, 1, 'ec3e59d7-2111-483b-ae81-143eea55fce4', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/27/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/27/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604921223269800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ec3e59d7-2111-483b-ae81-143eea55fce4","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ec3e59d7-2111-483b-ae81-143eea55fce4","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ec3e59d7-2111-483b-ae81-143eea55fce4","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920c2ae815cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:41 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=PaW7vCLSyQYzQUIeTzEqlVPKQJfecwai%2BOZjITqOhSJSCA7nIQ5cLV70dvyjyNvxFEqc%2Fbju8WB4c6xJpyLLaBDVS5F3Is4Asrv3GJOMYHOBZED4EAf8T2anaxiB\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fdfa3ea2b63411ee9ddb5648c341bb60; Expires=Tue, 16-Jan-2029 19:08:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fdfa3ea2b63411ee9ddb5648c341bb605a4ccbc5333dc57a725209d31f9e629851661eb4dfed9540def130af675846f2; Expires=Tue, 16-Jan-2029 19:08:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=468deb9d6b013ea29e22254acc336f4d25dbb39e-1705604921; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=KnNjDcpXTuWztEALbZ11KDJ7Eu5rScMknl8P4dEH6Yg-1705604921178-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604922","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1129, 1, '00c47700-6a50-426e-8669-2bf60e75b00d', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/27/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/27/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604921613643800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"00c47700-6a50-426e-8669-2bf60e75b00d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"00c47700-6a50-426e-8669-2bf60e75b00d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"00c47700-6a50-426e-8669-2bf60e75b00d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920c5d9ad5cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:41 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=GDbD8j0Y4mCaLJnZjF%2FTw5demr8rG0FLOWdK7nEaeAA7YjCXEPSVMVN8xZjqd%2FQ1iRAqZ%2FijTslWhJb5QpTr8VTKgpjCKyChGm0TNJ7tC8d1EWf%2BwqrqaSiPkkD%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fe35e344b63411eeb4e7ea086674d6f0; Expires=Tue, 16-Jan-2029 19:08:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fe35e344b63411eeb4e7ea086674d6f061a4bbc3dd4f7f56668b8c9c564a4094ed05ce382defed0503e06dcdeab0d739; Expires=Tue, 16-Jan-2029 19:08:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=468deb9d6b013ea29e22254acc336f4d25dbb39e-1705604921; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=sACBHD2z.1DDs0KSyiRwcTwJYIOG3lEyr95mPsz_wgI-1705604921568-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604922","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (908, 1, 'c76498a8-6749-4e23-9f95-88b2963ec04c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #99 change login", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705369969773784500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c76498a8-6749-4e23-9f95-88b2963ec04c","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"c76498a8-6749-4e23-9f95-88b2963ec04c","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"c76498a8-6749-4e23-9f95-88b2963ec04c","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462b8a4dbdf5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:52:49 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Uz1yZsvHIOyKgtjm66%2Fl3kKfBZScu1ey03EhprJGDd8B5DOEhB6wo3%2BkOaoOlGNe5bLvQVmEou9FgceV5haB4GPJqMAGfR0E03IMgOnNLLYrNHwilu0Kl0lHbPmg\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f402a580b41111eea97dae81745b42dc; Expires=Sun, 14-Jan-2029 01:52:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f402a580b41111eea97dae81745b42dc986cf44af68ce9d17eedef2a92f5429f7bc3967528d7304bb5a0154e66cb485a; Expires=Sun, 14-Jan-2029 01:52:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=c0c318c7547f791cae39c923687e7f0ae1a86fec-1705369969; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=SFvBU1BpuH1YWoJn2ecJzoAin_XyWdp.LsoSnr4voPM-1705369969750-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705369970","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1013, 1, 'ced1c437-d11f-4460-baea-f05c0ad344f9', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[e3fb0e3](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/e3fb0e313b51381d7d07b910bfed3963036f3119) fix info nld - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/e3fb0e313b51381d7d07b910bfed3963036f3119", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705463113055983200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ced1c437-d11f-4460-baea-f05c0ad344f9","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"ced1c437-d11f-4460-baea-f05c0ad344f9","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"ced1c437-d11f-4460-baea-f05c0ad344f9","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b9aa62db25e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 03:45:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=VSZivZY%2FUytobVJdKBGfnSGNK9f2MjKf38Q1AsgErFcYQ5E33C93AyMCbigik1kbE5eBQRyurNOZ9eVKiNtlwATbr3bOPWcgt2CicD7o2V5nRpq0z%2FbmEoxPW8s%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d1bb38dcb4ea11eebbdb7ee961ac5d4c; Expires=Mon, 15-Jan-2029 03:45:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d1bb38dcb4ea11eebbdb7ee961ac5d4cfe0c12558acc725f24c06a0f1bda452b770e560e49e7778b5c28d1c2718cb538; Expires=Mon, 15-Jan-2029 03:45:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8dccfdf55322340274bee304ac95a3c31935c9d7-1705463113; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=OBTN42lrhxsJT1H.8T9vnONjHMNoUwflUXvaAWlL8kU-1705463113025-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705463114","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (814, 1, '80e0aa71-c65a-4ae3-a86e-6b1f5c5e81f1', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/123/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/123/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705134973198951000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"80e0aa71-c65a-4ae3-a86e-6b1f5c5e81f1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"80e0aa71-c65a-4ae3-a86e-6b1f5c5e81f1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"80e0aa71-c65a-4ae3-a86e-6b1f5c5e81f1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f6b386c5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Ca73S01%2FTk8Uv6lE%2BpC9t%2F7bL0qar2U%2BRrhWPNcaXbdB6ziexF5OpxhVBCJ1WB%2BIQSN8B9JDnoYa4F9BSOLUQaCxZkOTrdK7zWrzDufyceiAwVlBJC8IO%2Fku6%2F2O\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cf2636b6b1ee11ee9633b2f6ae5c622d; Expires=Thu, 11-Jan-2029 08:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cf2636b6b1ee11ee9633b2f6ae5c622d70d3a5b0c0f2c02bb80bb8006308e40d0f34f6c61b33758afb0d2db4d4367a7a; Expires=Thu, 11-Jan-2029 08:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=982f74dca252a8a1f5c5d4130bedcaf9a81135c2-1705134973; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=cZNHLQr.4CKYTJ_EAbGEDCH88cSn7v1u7jfmZeKsrPI-1705134973188-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705134974","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1131, 1, 'da8aa58a-f677-4c1b-ab51-a593d16be7be', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/28/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/28/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604922866228900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"da8aa58a-f677-4c1b-ab51-a593d16be7be","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"da8aa58a-f677-4c1b-ab51-a593d16be7be","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"da8aa58a-f677-4c1b-ab51-a593d16be7be","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920cd09665cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:42 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=atfl7v5%2FxPD%2Bi%2BExM3Wu6DqDbFBsXsZZAIJWCCT8%2FnsKJoDku9SeVZaK1gJmYumf2l%2Fr7C83dxPeccIJHq2EFLJnN60AfpJ40UDQdzcLPxRpestNIZcTDv2O45Oc\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fef4bf58b63411ee9d983e3f533a43e6; Expires=Tue, 16-Jan-2029 19:08:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fef4bf58b63411ee9d983e3f533a43e607b987227b247f153402ec65190a9c8b9c606092f58cbb07e5cb662db528215a; Expires=Tue, 16-Jan-2029 19:08:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1300305a62346cd53ee329e85017c6f2a1badc74-1705604922; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=QSDyDihyW2LC05rGrlbDfEnyeUUrp4i5VHhWwBivb_o-1705604922821-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604923","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1134, 1, '167f6324-4414-461f-b91f-e19d9b42df8f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/30/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/30/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604924356824500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"167f6324-4414-461f-b91f-e19d9b42df8f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"167f6324-4414-461f-b91f-e19d9b42df8f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"167f6324-4414-461f-b91f-e19d9b42df8f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920d64bec5cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:44 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=EdKbPo6EFJsUCX3aC0VaiNLEf4dOZ3cnescatD3M2qLghdl%2FqB8bjhghAX02FzkanU5vAlM2lfuH5ve61X%2Bx0isIf0%2F9Aecjb1NGy0c9g414Y9CU%2B1%2BVjoBB9hRL\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ffd88120b63411eeb1f3eab035d06da5; Expires=Tue, 16-Jan-2029 19:08:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ffd88120b63411eeb1f3eab035d06da5898e5dfd0940486ed118cfb295e65607d83d1dd45e0ffb3ab0f762dc15fbe070; Expires=Tue, 16-Jan-2029 19:08:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=663b3955d49173ba3a80aaa2b099f88748185bfc-1705604924; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=3UR_NKBV3mkcuYBDPE5CykF1IyPlShm0B.GSwwQjFsk-1705604924313-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604925","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1135, 1, '324c702d-580b-46c0-a619-c1a97bd3e38f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/30/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/30/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604924893187700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"324c702d-580b-46c0-a619-c1a97bd3e38f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"324c702d-580b-46c0-a619-c1a97bd3e38f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"324c702d-580b-46c0-a619-c1a97bd3e38f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920d97f625cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:44 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=CKHKxhcp16vAO1QKTKoUibcrwuwm4LDOL8bgyD3lp3ZxReD9OoyllEWygwDhbE3B7AgnR2bWF9UEAr2eS9AS5r7w3tXAtWortwm9dmvM4Iz9O67GMPGvyzbbH1sd\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=0029e7feb63511eeb528e60aab2d176d; Expires=Tue, 16-Jan-2029 19:08:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=0029e7feb63511eeb528e60aab2d176dea4b31c1355f7cc3383287e27a40f9a86e4772744ab71c00b619eae022127adb; Expires=Tue, 16-Jan-2029 19:08:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=663b3955d49173ba3a80aaa2b099f88748185bfc-1705604924; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=.d7AgjUve8OmL2XKU6hVuxVSq.mJeLCyyv0df0zcrYc-1705604924847-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604925","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1118, 1, 'de15a64e-ade2-4540-bd02-049564321a92', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/22/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/22/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604916429587400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"de15a64e-ade2-4540-bd02-049564321a92","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"de15a64e-ade2-4540-bd02-049564321a92","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"de15a64e-ade2-4540-bd02-049564321a92","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920a26bb15cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fNEqUiHtqawovA2yHvLwmvU8Dk%2FU4N%2B%2Bv%2F5aGEvYYhigcb76%2Br6fQDV81oGAKnnKfXehWAL4evhzzRBUcIZn2JuHuP9Rxz%2FOc3ZG1RojciDp%2FO%2BvniZPnEgQ32h%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fb1e8120b63411ee99d3b6209d6b78f1; Expires=Tue, 16-Jan-2029 19:08:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fb1e8120b63411ee99d3b6209d6b78f1792ea89f2a0193356fa0639ee36b7359c95e52596eba05decaa9a2f6ce5e18f9; Expires=Tue, 16-Jan-2029 19:08:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ec3b325b8b37cfd94a9dd345d15a31592aa0a6be-1705604916; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=oSpxvJIQIRr79_tODsshU8A1CrnqLfVRNWiAV6UrqSk-1705604916384-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604917","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1119, 1, '77631600-4fb7-42ca-9f23-0b29afd0ede2', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/22/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/22/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604916941113300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"77631600-4fb7-42ca-9f23-0b29afd0ede2","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"77631600-4fb7-42ca-9f23-0b29afd0ede2","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"77631600-4fb7-42ca-9f23-0b29afd0ede2","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920a7f8ed5cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=yNjynnt2vibe2tRAJYYQ8zo6mYwuCaazxF3mMnZIayVMyYpgJW0D7fie4guFlOanxn7jN6h6HGQpGp%2F61fgn6gnxnIYGPrYVPECFr0s%2BCFCY%2FSLBoBBZenc%2FuPa4\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fb6c8eb0b63411eebf4046b32fad4c9e; Expires=Tue, 16-Jan-2029 19:08:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fb6c8eb0b63411eebf4046b32fad4c9ef7f6209c58f154fbd5eeee76a1716a6f821ca0277d4fc1df885823ece5804c0a; Expires=Tue, 16-Jan-2029 19:08:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ec3b325b8b37cfd94a9dd345d15a31592aa0a6be-1705604916; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=V78TlVm_YCU6STZrj56skTh7zw8xOSYUQ7IsYMVsVYI-1705604916895-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604918","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (852, 1, '3136be74-2c0e-4641-9375-cc687504fee6', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #91 add menu thong bao", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705207984337163400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3136be74-2c0e-4641-9375-cc687504fee6","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"3136be74-2c0e-4641-9375-cc687504fee6","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"3136be74-2c0e-4641-9375-cc687504fee6","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845345eb2a335e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 04:53:04 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=EI1AeEgG2vr4v8Yv%2FeKc9y3o2pzROrAf9B9kAGM2tm%2BS%2FmX6sWQdEurDXQPNQoaiLeqgXlpk5L5Olz7PPpUkkyRNOZDNXog%2BF9sC%2F7R3I3xbzfMFcywLJxECIN8%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cd2c3c5cb29811ee8f6a7e16d0383502; Expires=Fri, 12-Jan-2029 04:53:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cd2c3c5cb29811ee8f6a7e16d03835020052959344088f91838b0c9ea2a422df1043ada3bc7f98d9ef27e67ec8714b48; Expires=Fri, 12-Jan-2029 04:53:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cda29e2190ae903102763aaece81f5bb73e6efbe-1705207984; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=.un_NB0LKjL8yUZVxocinnWVAlkU8ipel.qpuTmBtko-1705207984317-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705207985","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1014, 1, 'd0285db0-6f72-4920-bb5c-9cb853259917', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #109 thinh", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705463152256302200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d0285db0-6f72-4920-bb5c-9cb853259917","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"d0285db0-6f72-4920-bb5c-9cb853259917","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"d0285db0-6f72-4920-bb5c-9cb853259917","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b9b9afc745e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 03:45:52 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=YxVo13jnwPQ3iKzGmLqZCJSUvB%2F5tAM64xdbPMHOTZVI9odWiQ2TCOlaGJNBkBell4QExh8I0s1aEV3Khlc065jRsMaD1f90xZKZTObidzQNSReBWbgfwbGZu3mK\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e91900c2b4ea11ee84792e67be318690; Expires=Mon, 15-Jan-2029 03:45:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e91900c2b4ea11ee84792e67be3186901f58a4f28bef5040f9a42729b2ce3a9ad423f814c60dfbb1267c008ee0d97cf6; Expires=Mon, 15-Jan-2029 03:45:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=51e965bf9a83c345c6aab228c6d21aa9170238b3-1705463152; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=9UCV84dTKJ8CurD3_Zd5olCoDTBto3N0sSdrS7NbJAU-1705463152226-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705463153","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1105, 1, '702b6d65-823c-4400-9696-17c2ed6ff666', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/42/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/42/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575515898656900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"702b6d65-823c-4400-9696-17c2ed6ff666","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"702b6d65-823c-4400-9696-17c2ed6ff666","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"702b6d65-823c-4400-9696-17c2ed6ff666","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652dc0bec5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fkC3JqEy%2FvHofxX7Ay60lF3vDhgz6GR1kzHED%2BXZrf81%2FqZFF9DWehEGSW%2Fd%2BA99iUro2tJEIWRCK9GSj1dNlWThMM6qHWVN8jrHBqftgIo7z%2Bkv%2FZOpCeoHn09O\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=870be6f4b5f011eea798ea7aae3f5f4e; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=870be6f4b5f011eea798ea7aae3f5f4ebb5b661b1d27628f157123eb6d6d3a3917c3402b40ce50820a16c80837483ee5; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=489313edd043864583f510989b87c9b49a3a1ccd-1705575515; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=773je7_8yMJSfFT59DjmuK2H3wdjBcc6OFeqGQeK05U-1705575515869-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575518","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1121, 1, 'c10306c6-616a-4891-b2cb-ee439c9394d1', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/23/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/23/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604917908175900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c10306c6-616a-4891-b2cb-ee439c9394d1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c10306c6-616a-4891-b2cb-ee439c9394d1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c10306c6-616a-4891-b2cb-ee439c9394d1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920ae6fba5cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=J5ZN7MeSWN9QGpNJ%2BWB%2BxckptxI3i4Guq2FXx5M6wd6g06%2Fk4M3aLe0Q3YcrNSZ7x3pTRZWqDkB%2BnzQlzQ%2FVl7xX9YhQ5tv%2Bnyeg0%2FPGyobmxh%2BtDGaZmAiJql3V\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fc00413cb63411eead4552f578155fce; Expires=Tue, 16-Jan-2029 19:08:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fc00413cb63411eead4552f578155fcee4044a95601d1d4456ed5a0f0dfd24bcdcee27d10708e027d50f4659c7267b58; Expires=Tue, 16-Jan-2029 19:08:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0f675e9ee5c6376fa052456d1221ffa35ce572d1-1705604917; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=mbXJ4auctnN6a_PnQc1LDZKAYiY4yY4vKCC4qkAZo7U-1705604917863-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604919","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (910, 1, '8adaa2b8-a439-4963-b4cf-5999e8adc39c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[c94f864](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/c94f86451988d6cf98b90a9f0e74a88515b66f9a) Merge pull request ''change login'' (#99) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99 - hungthinhne\n[122c6ba](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/122c6ba57907664a26aac6393e0880e02d8d2610) change login - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/ddb1e1f9c86e1477341fd41cae9b0350d5807140...c94f86451988d6cf98b90a9f0e74a88515b66f9a", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705369985236081400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"8adaa2b8-a439-4963-b4cf-5999e8adc39c","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"8adaa2b8-a439-4963-b4cf-5999e8adc39c","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"8adaa2b8-a439-4963-b4cf-5999e8adc39c","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462b90508295e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:53:05 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4qz6k6HPIE8aPrMXpH3PeFL7dH3KJEUXubNgL5ftOEfizeO0jgjcZIa6oafGVx6XnhrJPnnIt0sm%2BLZq7z9Nng9a6qIF%2BFxwVWDrCzIZDj8YCpQwxtMgxZxoD2k2\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fd38fb40b41111ee8438b2ea5e1f90bd; Expires=Sun, 14-Jan-2029 01:53:05 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fd38fb40b41111ee8438b2ea5e1f90bd2b598586fb3ad4258af1d327bb8b1c004a521f68bb239dffc4c1bf3189eaa6dc; Expires=Sun, 14-Jan-2029 01:53:05 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=9ac63c7198c9a8ffe00ad9cd0cd9ee295700a828-1705369985; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=UV2BQGTONEdyXwVn_48pOfcABL9FStm64lOlxig2e18-1705369985209-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705369986","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (794, 1, '13746a46-dd69-4bf1-bd3a-290eb78c0476', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[52c909b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63) hidden kehoachdapheduyet - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/52c909b4cf40d9d5147d9aa8b8dcb1fef8bf4b63", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705052702137463200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"13746a46-dd69-4bf1-bd3a-290eb78c0476","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"13746a46-dd69-4bf1-bd3a-290eb78c0476","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"13746a46-dd69-4bf1-bd3a-290eb78c0476","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844476d94ff75e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:45:02 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AUYIVMKfOpba%2BykgZyYsvYe7xoJUrwdDAnHldukiRz0iWHmTnURxAX6dL%2Fc8czEljXFozCBBkqbIGBERLXr1z0c7EE0YjbfTdEFdktDnLFTYd9L8dIlxRdGmzafv\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=41c506b8b12f11ee8fbc5e96e0cb35c1; Expires=Wed, 10-Jan-2029 09:45:02 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=41c506b8b12f11ee8fbc5e96e0cb35c126d43e0a5e20a5093fd3595e1f54fcc1bc1cb214a7e5e019afeb6a5de17f6d51; Expires=Wed, 10-Jan-2029 09:45:02 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=16e4a214ef1a825d5f043100cdbd1ed7cb082937-1705052702; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7HQZUakYlnUg9yCSly70Oe3CjxMlDcW9EmznM51mnU4-1705052702119-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705052703","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (990, 1, '9870e817-db9e-449f-a702-32930d3f9436', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/80/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/80/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458376206691100, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9870e817-db9e-449f-a702-32930d3f9436","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9870e817-db9e-449f-a702-32930d3f9436","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9870e817-db9e-449f-a702-32930d3f9436","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b27015c6a5e3b-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=yUCBFF1f%2BlLLk3grthGbJoeB7u4M6drXjqjV442XXa1F%2BDpNR3f%2FMA9Z68ehWYtpxsIz8FWoK%2FYNBhadT1BKfPho27xQ61UxsbD4wg72u7f%2FLkXq0OR2Q%2FnwDmdd\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2089","Server":"cloudflare","Set-Cookie":"__dcfduid=ca5a7c2ab4df11ee98f52e2a7a6582de; Expires=Mon, 15-Jan-2029 02:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ca5a7c2ab4df11ee98f52e2a7a6582de5dc7ca5f39e9b809f873d68b6a728686539a85ceac27e7fcb34c70fd2466ea99; Expires=Mon, 15-Jan-2029 02:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0857e29f549ca84f5de42c0b917ad1fc8191b910-1705458376; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=T26DLyutLcYwIoatkVhLj.L.FC2vkSqBgbQkhjIwHx0-1705458376184-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458379","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (795, 1, '45259b54-ef90-400e-95cb-3cb66c3a961f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #90 hidden kehoachdapheduyet", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705052729121256700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"45259b54-ef90-400e-95cb-3cb66c3a961f","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"45259b54-ef90-400e-95cb-3cb66c3a961f","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"45259b54-ef90-400e-95cb-3cb66c3a961f","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844477824f905e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:45:29 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=zA%2BjZ0fftVrepC6%2Fpgb30P0JCauhZD%2FT11L9aWx6by%2FdAAgXoFfRuF05p2WQI8Psd5Q66l%2B0sP2kxzuWQ3jS1bQ1DJS%2BXWooAlrVCGNk1DGypR6TyheOUSVQY0Xd\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=51da7b1eb12f11ee919c66eb8e9a6333; Expires=Wed, 10-Jan-2029 09:45:28 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=51da7b1eb12f11ee919c66eb8e9a6333cc019f10afdcb8ed418d6b163de1fefd8d37334d36cbe854795f9fe9896ba3dd; Expires=Wed, 10-Jan-2029 09:45:28 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d6cdfd147024b6c847fbffb87948ca1d5a077ffc-1705052729; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=LUM1qkPllmVjLSKsktfIhcFF9JtxdpMk01gqKrm77Uc-1705052729102-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705052730","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (796, 1, '9b4ee144-773f-4324-aa06-56e7e94c4f1c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #90 hidden kehoachdapheduyet", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/90", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705052744225702200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9b4ee144-773f-4324-aa06-56e7e94c4f1c","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"9b4ee144-773f-4324-aa06-56e7e94c4f1c","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"9b4ee144-773f-4324-aa06-56e7e94c4f1c","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844477e10d775e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:45:44 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=h%2FSUO%2F%2FTuIbxZgVU7OPM4KZRICxCqUM5Nrxos5HRjBUIpVNqlja2ESxGguQlRCgxuHUzPFeIPphq5MlwlOgvx5czEKXwynRaH9Qi5oe1u4m6%2BVXbncbzb3a9CdZb\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5adb6e80b12f11eeaabf367b405f8641; Expires=Wed, 10-Jan-2029 09:45:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5adb6e80b12f11eeaabf367b405f8641bf16cf11b1f9efee293d7ae95f9169415f1e1da469510a2d048442a8cfce8d7a; Expires=Wed, 10-Jan-2029 09:45:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3720796a4dce851f95be33b615bfff0787264a74-1705052744; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=U.UZY_EtdQPexdxAmP5naihIoHyI1avmalnwFRz_9Cg-1705052744207-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705052745","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (815, 1, '6736e12f-9807-4aed-ba55-5e756de23dbf', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/124/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/124/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705134973597988200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6736e12f-9807-4aed-ba55-5e756de23dbf","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6736e12f-9807-4aed-ba55-5e756de23dbf","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6736e12f-9807-4aed-ba55-5e756de23dbf","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f6eb9265e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NOFiPykX2pORDqOOgaKC6FFglUYY4VBjam4G7PKG50aZyrHuZc6eHiRN0EcLU%2Brul5cDn%2BnUdO7anE%2BIJFfUEAw1t9EJgTUU520r%2FQK7O%2F%2Fmhwf3h5KlqKx43D2Z\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cf6338c2b1ee11ee8af78a072c3c2665; Expires=Thu, 11-Jan-2029 08:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cf6338c2b1ee11ee8af78a072c3c266526934f05b18994cd94afbaa969db5737acec4a91055cc7491c1930bb61a4d3dc; Expires=Thu, 11-Jan-2029 08:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=982f74dca252a8a1f5c5d4130bedcaf9a81135c2-1705134973; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1Bas1zq38Hz_OstOUXJ2bFv2w3k_ko.5.ziNPgiE5.I-1705134973588-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705134974","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1122, 1, 'dc1bb239-ac9f-4c8f-8951-ee2a68d8a114', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/24/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/24/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604918394848900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"dc1bb239-ac9f-4c8f-8951-ee2a68d8a114","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"dc1bb239-ac9f-4c8f-8951-ee2a68d8a114","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"dc1bb239-ac9f-4c8f-8951-ee2a68d8a114","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920b13a895cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=JQGefjOmbBJteVm7qslp2u%2Fw56xOtl5m2OCuRI2fXNL5kWJK3%2FKLwNLGR4NdNZvCFdVbkoOoSDYFaK7AOitwmQbch8%2BJqlsCK49QMoROLC2aqjGOrQ4EbWKFPCro\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fc4a7400b63411eebdf8eab035d06da5; Expires=Tue, 16-Jan-2029 19:08:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fc4a7400b63411eebdf8eab035d06da565b10ffbf4aa019d474bfa8c107c23b13d950208177850a15aaab1e39ce8bc6f; Expires=Tue, 16-Jan-2029 19:08:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b0430083c284c3dd0cf80e4b130b9fdcb8bf41b1-1705604918; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=OZN4USC7jn4CBfa7gQhUs0tu1ccqfFGSn9B9aNSwoUo-1705604918350-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604919","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (909, 1, '932e7336-d08b-4857-be83-83555c4b1a7d', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #99 change login", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/99", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705369984787284300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"932e7336-d08b-4857-be83-83555c4b1a7d","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"932e7336-d08b-4857-be83-83555c4b1a7d","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"932e7336-d08b-4857-be83-83555c4b1a7d","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462b9022f1f5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:53:04 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=i4kzgOZB9znN6LaCANx9CrhpG8VvhU61wKfqFRS9jaD7JncwXtaGsOGqq%2BzJPkAILUVmGqM%2BqdjwWJT4fTT1Kr6wSKuFzj0y8FeitskxquTyFfhZQouQf8vukuoN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fcf6b76cb41111ee91571ada573ed41d; Expires=Sun, 14-Jan-2029 01:53:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fcf6b76cb41111ee91571ada573ed41d73fcf9b10e5c1c2bc309531edbae38a39c2b405a07f86480f2136233501b0cdd; Expires=Sun, 14-Jan-2029 01:53:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d0616cef1a0fca2183a0f9fa3863c5595df0b7f2-1705369984; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=pJ3t6E3KVTSR1B2V8mW03byxbOC8VLM78ThxNVmb1SU-1705369984764-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705369985","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (854, 1, 'c6913e59-ecd3-4a8e-8065-c79dd5eb4728', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[7b0e4a3](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7b0e4a3aa34a91347178a93361fc9e193abd595d) Merge pull request ''add menu thong bao'' (#91) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/91 - hungthinhne\n[11ad5c0](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/11ad5c022f0fa4d0849c5e20ecd4a7387c07c6d1) add menu thong bao - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/4733d86e1365317dd25b0c22bb0bcc1cb83c6bc6...7b0e4a3aa34a91347178a93361fc9e193abd595d", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705208016149978400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c6913e59-ecd3-4a8e-8065-c79dd5eb4728","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"c6913e59-ecd3-4a8e-8065-c79dd5eb4728","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"c6913e59-ecd3-4a8e-8065-c79dd5eb4728","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845346b2a9c65e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 04:53:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dLj%2BAI1Iejv6kq3CJGoYM26fKnAXfrt95lh2aIWe0YYvPP8iC44T%2FjMdmZultxZEAiDpMg39gXaJYlkIwIe1tbnLoLAqQIN4RdoqLRyjLlHT3CWWJvtl3UyioUMb\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e0228f32b29811eea2f802445d3d6a7d; Expires=Fri, 12-Jan-2029 04:53:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e0228f32b29811eea2f802445d3d6a7d92dbd796473f8062eaf59014a9ca8457247c6d437f9f2daadfa230c7cc0ff964; Expires=Fri, 12-Jan-2029 04:53:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=60b749b47fafa569536d4b52992a513136c97d44-1705208016; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xR.j7th0cRVKhtJuMk84_JYWgd7orSUsXdWz0iskUHs-1705208016131-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705208017","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (816, 1, '7d0d961c-f84d-4800-b8cc-d0b26ab40d38', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/124/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/124/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705134973996402400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7d0d961c-f84d-4800-b8cc-d0b26ab40d38","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7d0d961c-f84d-4800-b8cc-d0b26ab40d38","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7d0d961c-f84d-4800-b8cc-d0b26ab40d38","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f7129b85e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xwtTkmr6tDXin1BMdTCzaSAciwFIfwkd58mBhF83NCMpR%2Btkd88mjcjQzcJ5IkaPba2F3OlbywJ%2Fveg6NPTqT8guwCdhdXMkAvKMRpbVeqAy37i1vA44ZWyoi0z%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cf9f41beb1ee11ee9a6c465adf3428fb; Expires=Thu, 11-Jan-2029 08:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cf9f41beb1ee11ee9a6c465adf3428fb9de46324a06acfb9d7c4b0917bf025567a817c333aed43897cf5d890804aabee; Expires=Thu, 11-Jan-2029 08:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=982f74dca252a8a1f5c5d4130bedcaf9a81135c2-1705134973; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zML0zH.Jc0XKLAK1IgIEGbKtuMctbyyi1FQpgRkI8fk-1705134973986-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705134975","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1015, 1, '9f2471a0-fd58-4fcd-bf84-7c0e47babf26', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #109 thinh", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705463233439877000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9f2471a0-fd58-4fcd-bf84-7c0e47babf26","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"9f2471a0-fd58-4fcd-bf84-7c0e47babf26","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"9f2471a0-fd58-4fcd-bf84-7c0e47babf26","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b9d966d205e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 03:47:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=vJa%2F%2Flofb23MW7udmkGamS8WnH8bO9pHQ4x%2FCPycz8nSCyud5Jsx6y1dG3H09t3x%2FFuVxTCBwKNU7M4wkJWQSHdVGR0DLM%2FPHeHzvADk1NJH85H6jr3QppLqZkE8\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=197cb6e6b4eb11eea7ee926f935a2c26; Expires=Mon, 15-Jan-2029 03:47:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=197cb6e6b4eb11eea7ee926f935a2c2651e2be42231304b3e6094605a19d9ed462a2a1e82ee4daa26dd9dffdbcce4e55; Expires=Mon, 15-Jan-2029 03:47:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6657c41b98eaebf52bdf017be3c576992853c3fe-1705463233; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ZffflH4EMixD8qI7s01cTWZPcgd.XoSJDKCQquEkSS8-1705463233412-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705463234","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (991, 1, 'fa997a52-4671-474f-8dd7-507fcdbfbeab', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/81/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/81/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458376719437700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"fa997a52-4671-474f-8dd7-507fcdbfbeab","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"fa997a52-4671-474f-8dd7-507fcdbfbeab","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"fa997a52-4671-474f-8dd7-507fcdbfbeab","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b27036daa5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=krEPHhPTmsXw6MSLuzZLCc5H87G72w52obrF%2BJZNvFOjDuywu5GhFyz%2FUu%2FVFzeVPEvCNIXmvXrc9YmoYo6n6rBoZV%2BGLe0Ax%2FK82Hr%2FJhwVoYVaJviiiF59cQnx\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=caa8f38cb4df11eeb7f8aea555614008; Expires=Mon, 15-Jan-2029 02:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=caa8f38cb4df11eeb7f8aea555614008feca93951493f440a9c32ac67d178d0dfc95733ec634b8b77bd373a7c02a2455; Expires=Mon, 15-Jan-2029 02:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0857e29f549ca84f5de42c0b917ad1fc8191b910-1705458376; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=F.WQ08xBqj5grXVFP5Yx9WaDfub0tpP5AmzkXAqjNtc-1705458376697-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458379","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (992, 1, '3a624d26-50f1-40c6-b423-e44d00ab225c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/81/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/81/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458377209674100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3a624d26-50f1-40c6-b423-e44d00ab225c","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3a624d26-50f1-40c6-b423-e44d00ab225c","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3a624d26-50f1-40c6-b423-e44d00ab225c","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b27069f215e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qi5hspN4uyDYHPjFF9AKMidrONfGkQ8sVit415GnEtiDNNYJiM2tZMXY2xAgqpTc%2BKVmxeHUH8bbdMzgJeB5%2FCjAnrN%2FbFUhP0%2BytjvnPO8zeiAZOVst9CHSIKqa\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=caf3bc32b4df11ee85bede2a850d5ce0; Expires=Mon, 15-Jan-2029 02:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=caf3bc32b4df11ee85bede2a850d5ce049507c6c121c7e35b297f4535339624318d028bb80fb38c0d3c471bdac618885; Expires=Mon, 15-Jan-2029 02:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=66e246971898b39cf1c1690abe9435991130522d-1705458377; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=QrTmSQtO4oG9J9sUpF7JGW1UmVHoIZdY6Va3RkUceYE-1705458377187-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458379","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1124, 1, '5358f0b4-012e-4896-a12d-6847cae94e44', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/25/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/25/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604919406530600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5358f0b4-012e-4896-a12d-6847cae94e44","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5358f0b4-012e-4896-a12d-6847cae94e44","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5358f0b4-012e-4896-a12d-6847cae94e44","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920b7498e5cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=vxE85rLYr%2B%2F63oWhJPwTAcxe8y%2BnPrFwvgutYA8ZHhvkjeNwYB7olPhNXd8tNjve%2FRuuv1IQj%2FbWiA30OliCiA5ghelarhtZkspjqsrO9mp00SBcmDfLxF592AGK\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fce4b326b63411eebd253e82259c5009; Expires=Tue, 16-Jan-2029 19:08:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fce4b326b63411eebd253e82259c50090047503a6e1cf31f28bf27f39dcda4d944d511f71671cb3d0428704051ee2885; Expires=Tue, 16-Jan-2029 19:08:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=92f88cd06d48fc01dc6f366af22c117a862310c8-1705604919; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=koi7ANAz2mp7hP4xub1eTkDmlZQq4NE1nml6I1TYKiI-1705604919361-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604920","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (818, 1, '0a3ab23d-ed77-4657-87bd-b05e2908e5d6', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/125/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/125/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705134974843011400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0a3ab23d-ed77-4657-87bd-b05e2908e5d6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"0a3ab23d-ed77-4657-87bd-b05e2908e5d6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"0a3ab23d-ed77-4657-87bd-b05e2908e5d6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f76cb165e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=jKQHzo6ZO5f4xilBuzXRNtQOGUFaV9ZNDRC7WmaxQXUbGG4VmGAML4cKNMXo%2BXs630WZBaYDJyaDbWdhrnByFG10L%2Fv0vj3e%2Bj%2FZFHR6oKw%2FnC7SrMsybD4tu5Oh\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d0213bceb1ee11eebe2bf6b29dbd0d54; Expires=Thu, 11-Jan-2029 08:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d0213bceb1ee11eebe2bf6b29dbd0d54a1da2be838bfcafe5eca1141c30f4d8110a0573db6f63b04652a45bb84d03a9b; Expires=Thu, 11-Jan-2029 08:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5ed7196f0db80872b14c3df87e9920491bd3bf00-1705134974; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zXhS0rf.51IjQwhH5rqUdVNrjklWoR9Fuy0Of4d8EfU-1705134974833-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705134976","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1125, 1, 'c4dfd714-c53d-471b-9180-dbd33dcd02c1', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/25/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/25/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604919835496000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c4dfd714-c53d-471b-9180-dbd33dcd02c1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c4dfd714-c53d-471b-9180-dbd33dcd02c1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c4dfd714-c53d-471b-9180-dbd33dcd02c1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920ba8d285cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=6PWXQetK7WnyVHU02sLI4TW7Uj0uVniAfx2dyBFI9xWAW5j17mqKpLl9L6%2Bqf0ZXPhFUoBNp2UARgCosztDZuumc6dh8LR98JPAvVFUmGElex1VbtUnyxuCxJuld\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fd266b86b63411ee9f9712a1a10ed0a9; Expires=Tue, 16-Jan-2029 19:08:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fd266b86b63411ee9f9712a1a10ed0a903f36aa1ba61c4eff72b4f1197ab1119f5dae32e0562e3e0941d3112d09ccb24; Expires=Tue, 16-Jan-2029 19:08:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=92f88cd06d48fc01dc6f366af22c117a862310c8-1705604919; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Uc69vPg_92E6SrrDuD9sb0qVuULbxe9jYEpm2w46dT8-1705604919790-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604920","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (817, 1, '360e66a4-a6cf-4b9c-b2b5-aa0f56fb0921', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/125/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/125/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705134974495313400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"360e66a4-a6cf-4b9c-b2b5-aa0f56fb0921","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"360e66a4-a6cf-4b9c-b2b5-aa0f56fb0921","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"360e66a4-a6cf-4b9c-b2b5-aa0f56fb0921","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f73aa535e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=yLExaPWa2WAifd5cdw4uyYRF5aZFM4KQwUaovO7j31Offom3SyVo5cfp0Nd9X75IChuErCFGyyFStbINKkObY26S7sQ4XnKwckwWP9eoa0l0bqCz37hQ%2BDfahymS\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cfe9416ab1ee11eea228c2101416ae4d; Expires=Thu, 11-Jan-2029 08:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cfe9416ab1ee11eea228c2101416ae4da8c07556b78d1f6f7ddddeb2dc867be0d79b0e3149020707518da02426a4d79e; Expires=Thu, 11-Jan-2029 08:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5ed7196f0db80872b14c3df87e9920491bd3bf00-1705134974; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=aJfcZTkqFQKzTIoLCIR7aypYODMkZWChR2oEMqAFIq4-1705134974486-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705134975","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (856, 1, 'c1b9bd24-92a1-415e-b461-de55b37d0c0d', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/admin] tag refs/merge-requests/1/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/admin/src/refs/merge-requests/1/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705223176999566900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c1b9bd24-92a1-415e-b461-de55b37d0c0d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c1b9bd24-92a1-415e-b461-de55b37d0c0d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c1b9bd24-92a1-415e-b461-de55b37d0c0d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8454b8d5add45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 09:06:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2BZfVdg2%2BIrwTSUOzvNywRuZZpQiTuCJ95HgFAM7Ir2iL%2FN4bsYCtFs%2BXSFlM%2FMHtJcs5SsCQzcZmk4iIRw7OwJ0JdjW9lEUQ7eCYyltDOLUkjUw%2FbZtDj2xMX1W6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=2cb11a30b2bc11ee94a4deb1b7e0c94e; Expires=Fri, 12-Jan-2029 09:06:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2cb11a30b2bc11ee94a4deb1b7e0c94ef06dac6a883451ecbc4504cc84c248f893d00c6d0cbf8df5e74b687cde1697ac; Expires=Fri, 12-Jan-2029 09:06:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3d207fed4dd1075f6a5fa5b0ab5e8daad592da8d-1705223176; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=VG0QACT0ugoq2FJCq95.RQBCIVEAuW1zvlEShEIvXUY-1705223176980-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705223178","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (855, 1, '99e22207-85b4-4294-bc44-53dd7982f248', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/admin] tag refs/merge-requests/1/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/admin/src/refs/merge-requests/1/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705223176566053000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"99e22207-85b4-4294-bc44-53dd7982f248","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"99e22207-85b4-4294-bc44-53dd7982f248","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"99e22207-85b4-4294-bc44-53dd7982f248","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8454b8d37cc95e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sun, 14 Jan 2024 09:06:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=oF9gYvYP4dTjRUGrox2iBjjan5w9mKZlTBpqfZOKXKvX7dqCADvKGKBs596HEtEEFTYShczn6rPxvWLZLF1WSnFhTvOy6bwdhghGSOZ86t77c8STwzLgXfBSJMLV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=2c7212f4b2bc11ee89cc4a93754fc4d5; Expires=Fri, 12-Jan-2029 09:06:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2c7212f4b2bc11ee89cc4a93754fc4d5d8da7093b9412e1c0049da697f33b97b08292c0bc1aee18bda1153550db36950; Expires=Fri, 12-Jan-2029 09:06:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3d207fed4dd1075f6a5fa5b0ab5e8daad592da8d-1705223176; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jE7VPZjy6TVDcwYti6W4g_VBC0YafKAEmXVIT2Jv0WE-1705223176545-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705223177","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1126, 1, 'd8faa2ce-9df9-4148-86ee-751fdb51938b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/26/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/26/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604920313998100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d8faa2ce-9df9-4148-86ee-751fdb51938b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d8faa2ce-9df9-4148-86ee-751fdb51938b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d8faa2ce-9df9-4148-86ee-751fdb51938b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920bd38c15cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:40 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dQPDGUsqbuFoT8F27m%2Fx5m45lm%2Fgmr9tn6hX%2BhMk6iHwx%2BMRVnzi0UDqyQK1NKLFhQOJqjBdhyKeEppBSHJzbqoXT1Y3kQSGX%2FWJUoFDsnviLF0YUMkgFjb1BxI1\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fd6f6e12b63411eea72052b38bd5b15c; Expires=Tue, 16-Jan-2029 19:08:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fd6f6e12b63411eea72052b38bd5b15c889535ce9ee0f6e9ae75eec4fd554750854bcb932e6f00cb83eeb4d43c637a3d; Expires=Tue, 16-Jan-2029 19:08:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a4eb7449297eebee0dfad37f632e0015dc62af69-1705604920; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=O5CiJeBe2kKMNNYzCi7NFYWtGn5puqMB4tVN4iqZ9IY-1705604920268-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604921","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1127, 1, 'beccf5c2-56f6-4cbc-88df-b5bed30e8edd', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/26/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/26/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604920707812700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"beccf5c2-56f6-4cbc-88df-b5bed30e8edd","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"beccf5c2-56f6-4cbc-88df-b5bed30e8edd","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"beccf5c2-56f6-4cbc-88df-b5bed30e8edd","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920c03c205cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:40 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=o1bkI6NnOsBcR%2BFfyo7yPq%2FRZvS58fEH1QGE2LOp1FR9trBUFSy0OBzxtuuDz9by0jcyj6VBjzpnpKZxg1jK7bNwLxqbik0IH5%2B3YPteDNfsKhaV%2By6Dt4jrItVe\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fdab643ab63411eeb41d2e39c5b39257; Expires=Tue, 16-Jan-2029 19:08:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fdab643ab63411eeb41d2e39c5b39257fe3d60d2449fe4b39ff8c76bf8caf5aa79cfcc79014099436d7e2a0874c6af58; Expires=Tue, 16-Jan-2029 19:08:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a4eb7449297eebee0dfad37f632e0015dc62af69-1705604920; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=qrRO83Xlr0b2qKR9y.SPC319RfJkNAeKv..3EbbAvVc-1705604920662-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604921","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (857, 1, '7d3dceda-552e-4f35-a091-b42ed2d1848f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/admin:main] 1 new commit", "description": "[6eeb316](https://git.gdtsolutions.vn/khieu-nai/admin/commit/6eeb3167459d18da3f7e5738d37354a500b8c3f6) feat: room - organization - jobtitle - vantuan", "url": "https://git.gdtsolutions.vn/khieu-nai/admin/commit/6eeb3167459d18da3f7e5738d37354a500b8c3f6", "color": 1754624, "footer": { "text": "" }, "author": { "name": "tuan", "url": "https://git.gdtsolutions.vn/tuan", "icon_url": "https://git.gdtsolutions.vn/avatars/ef8cb8091e07736d503797a3fd007bb52d58ce27f461213703866d303da8e9a0" }, "fields": null } ] }', 'push', true, 1705285620897078600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7d3dceda-552e-4f35-a091-b42ed2d1848f","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"7d3dceda-552e-4f35-a091-b42ed2d1848f","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"7d3dceda-552e-4f35-a091-b42ed2d1848f","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845aad584e635e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 02:27:00 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qS9JvcU6PTSvblFISV1ArN5UmKrdetjlhJPyNWu9K81dArq4kuGeGvdwmmUXtWwOXd1j0l0qI72tw4MWMWNN5srs1OexIkaLlvl6Tmz6BL8NxYS%2FQeo9UxYIUNak\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=902ac99eb34d11eeab7746d3f7970317; Expires=Sat, 13-Jan-2029 02:27:00 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=902ac99eb34d11eeab7746d3f7970317aa5b693e1088cef92685be7c2b0f4d3ae1eef8d8e5a1783d99f910e18b31bb81; Expires=Sat, 13-Jan-2029 02:27:00 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5629ac51ba36bbc945fc3d553dac79cf53270927-1705285620; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=fk8KJzdEDSe8pVr1b67FsyR6I8MptqwUQhEfhUcbNnQ-1705285620874-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705285622","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (858, 1, '8daa2ed6-e716-49ab-8db1-a6506d3e719c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/admin:dev-hoa] 7 new commits", "description": "[4686dd6](https://git.gdtsolutions.vn/khieu-nai/admin/commit/4686dd6b75c63490b6661f85c0b1c947240ec20f) update userDungDonuserDungDon - Nguyễn Chí Hoà\n[6b8740b](https://git.gdtsolutions.vn/khieu-nai/admin/commit/6b8740b31e995f14081083ba03bd0f1f4c40e3e3) adress - Nguyễn Chí Hoà\n[15e3994](https://git.gdtsolutions.vn/khieu-nai/admin/commit/15e39944f15f208be7ba038d75a2f68911f1d21e) feat: organization 100% - vantuan\n[266e86f](https://git.gdtsolutions.vn/khieu-nai/admin/commit/266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9) list - Nguyễn Chí Hoà\n[94ffd4f](https://git.gdtsolutions.vn/khieu-nai/admin/commit/94ffd4fad7e84bcd1525ff0775450354d753d78a) Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin - vantuan", "url": "https://git.gdtsolutions.vn/khieu-nai/admin/compare/55b2fee3c5a3f5fcb6479fc020c9e5784cc5eb3f...4686dd6b75c63490b6661f85c0b1c947240ec20f", "color": 1754624, "footer": { "text": "" }, "author": { "name": "Hoagdt", "url": "https://git.gdtsolutions.vn/Hoagdt", "icon_url": "https://git.gdtsolutions.vn/avatars/71955e5d26ad26c5d213888a1d650773566d606fea1b0ea0ed6cc85e4b347bcc" }, "fields": null } ] }', 'push', true, 1705291493192547600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"8daa2ed6-e716-49ab-8db1-a6506d3e719c","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"8daa2ed6-e716-49ab-8db1-a6506d3e719c","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"8daa2ed6-e716-49ab-8db1-a6506d3e719c","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845b3cb399fd5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 04:04:53 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4ajLaEY9y8I%2BexzmSpe2YZJRlZuQVSSJ%2BY%2FUWNWHNtO0H3DU0Dltf7oCjndcU4pq%2BONhS82E55xUR15OmJ%2F8S5XpO3x5rJ47VNIhbMwms5jOgxgl56Q2rtvkxcRK\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3c53f0dab35b11eea28c52c1b981c921; Expires=Sat, 13-Jan-2029 04:04:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3c53f0dab35b11eea28c52c1b981c921bb1d1dbfa2bd9f1e892a5479f09617e9309ff470dab9a22271cb28a7fcfac7fb; Expires=Sat, 13-Jan-2029 04:04:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=701d1fc3e07426c9e9a6db0362aca8debf89732c-1705291493; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=GHFf3kcl8_TBpM2B7XaXhgNHhoscNXZ07tuTlN0kjAc-1705291493170-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705291494","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (819, 1, '1eb193af-9950-4967-8ec7-edd5997a9061', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/126/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/126/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705134975317746200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1eb193af-9950-4967-8ec7-edd5997a9061","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1eb193af-9950-4967-8ec7-edd5997a9061","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1eb193af-9950-4967-8ec7-edd5997a9061","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f78fb8a5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=VX2Qa0UtAOXaYQWhhMmTP4KYE%2FdR%2FBnEXM0daLmb6dnFPXlTeDrEZnb3%2Fg5YO0IdzQZjfAn07IpqUem8AvFJITgo3PQQ7gF7KrlIz%2FxwRy589JeL1fcEofhXkMQY\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d0696890b1ee11ee89cc4a93754fc4d5; Expires=Thu, 11-Jan-2029 08:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d0696890b1ee11ee89cc4a93754fc4d513a2ed74db724481023557c3009e0bb47844754c607837c29a7f858bec145aa2; Expires=Thu, 11-Jan-2029 08:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b2e0fa87212ee4bf59cea6813fbf284f87aa352e-1705134975; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=lAbWkflo9FUSZyrRXA4WA7BdFiJfCMuqq3zcS6QZf1k-1705134975308-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705134976","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (820, 1, 'f7afdd79-dc45-4889-b452-609c044d8841', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/126/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/126/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705134975737823000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f7afdd79-dc45-4889-b452-609c044d8841","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f7afdd79-dc45-4889-b452-609c044d8841","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f7afdd79-dc45-4889-b452-609c044d8841","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844c4f7bec515e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 08:36:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=2xSAvV%2FVdLJZEVoTr1ma6b1xYIc7qypm0NbU95ZtFajWy0cZciE0h7b1Et9oy7WUXnotbqsTPHyJzQMHklfGFq0VtTOKsIJh44G9lXLiHMRRqXiD06FnPrvwgkV9\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d0a9453cb1ee11eeb56c465adf3428fb; Expires=Thu, 11-Jan-2029 08:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d0a9453cb1ee11eeb56c465adf3428fb88706accd0b5af9c4be0fc4c71ae07db8c867a6d3642627d41cd179423893ba1; Expires=Thu, 11-Jan-2029 08:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b2e0fa87212ee4bf59cea6813fbf284f87aa352e-1705134975; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Dy9XCHPSjDMtMYz8sHZTq7mSsx49YXBMTiyRRBNdhQc-1705134975729-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705134976","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (859, 1, 'fbc5790c-158e-466f-bfdb-b31c5ddd52b8', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/admin:dev-hoa] 2 new commits", "description": "[b8d0d92](https://git.gdtsolutions.vn/khieu-nai/admin/commit/b8d0d925b42d717dd3206442113f99e827a2ff0f) merge - Nguyễn Chí Hoà\n[6eeb316](https://git.gdtsolutions.vn/khieu-nai/admin/commit/6eeb3167459d18da3f7e5738d37354a500b8c3f6) feat: room - organization - jobtitle - vantuan", "url": "https://git.gdtsolutions.vn/khieu-nai/admin/compare/4686dd6b75c63490b6661f85c0b1c947240ec20f...b8d0d925b42d717dd3206442113f99e827a2ff0f", "color": 1754624, "footer": { "text": "" }, "author": { "name": "Hoagdt", "url": "https://git.gdtsolutions.vn/Hoagdt", "icon_url": "https://git.gdtsolutions.vn/avatars/71955e5d26ad26c5d213888a1d650773566d606fea1b0ea0ed6cc85e4b347bcc" }, "fields": null } ] }', 'push', true, 1705291589819230300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"fbc5790c-158e-466f-bfdb-b31c5ddd52b8","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"fbc5790c-158e-466f-bfdb-b31c5ddd52b8","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"fbc5790c-158e-466f-bfdb-b31c5ddd52b8","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845b3f122ffa5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 04:06:29 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Mz5N0i9eJhHiQvke7gWdVZXCNmm7o8gMy8wB%2Bjnpm4TnrNlXQhbDKfBrO9%2FOB6kE1DaHT08pBKSUOMbGKImJM2u2RqTxF5Agv1uuQNQUuLfFU19UI%2FeWlG2FxOO2\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=75ec2150b35b11ee8bbd629927f5bd50; Expires=Sat, 13-Jan-2029 04:06:29 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=75ec2150b35b11ee8bbd629927f5bd50f21b0b3ef144a694b75c8e139887ea9c7f7c143005d9e9816b49c9e9e2227848; Expires=Sat, 13-Jan-2029 04:06:29 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ef6bc0644ac686b352b4b719cecb3d92c8a88043-1705291589; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=WNoLonVCXg0Z4.Fk3YEDKwKPQFHX_3U8LSeVJpfnNNA-1705291589796-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705291591","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1016, 1, '136514e1-2b68-45e3-962e-f998b529057b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 3 new commits", "description": "[d27bbd1](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/d27bbd1a398cd332a453a4301f2539d4741f4829) Merge pull request ''thinh'' (#109) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/109 - hungthinhne\n[e3fb0e3](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/e3fb0e313b51381d7d07b910bfed3963036f3119) fix info nld - Lê Hùng Thịnh\n[07dd788](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/07dd78834b58c799d0db70d99f863dda643572aa) fĩ loi info nld - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/99934589e07a2e5021fb88d8e95cd0701a3c3d8f...d27bbd1a398cd332a453a4301f2539d4741f4829", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705463235061943100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"136514e1-2b68-45e3-962e-f998b529057b","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"136514e1-2b68-45e3-962e-f998b529057b","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"136514e1-2b68-45e3-962e-f998b529057b","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b9da018975e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 03:47:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=lUenSRvxUXx2XXzxJaSMT3gkcgWLtjeiwwtSgbmGpByHPocEPMRmtWFHbpKhPI60zApGaKPep%2BZLhennra4bwb6vS%2BUjxPJ%2B3WyD0FuqLu6Y%2FhVkk3WgtK9goyAo\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=1a741602b4eb11eeacccb6dda4bc4c92; Expires=Mon, 15-Jan-2029 03:47:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=1a741602b4eb11eeacccb6dda4bc4c925a826fcf2bd99e15b15add172158126a51366cfa718d8e322246bbfaea096242; Expires=Mon, 15-Jan-2029 03:47:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ad57fc4d0a12028310e143a846296e64ce4d3a0d-1705463235; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=cM6nBNrbvv8C58eLz1QwHspYez7fSWWQZsFmQb.Up_g-1705463235034-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705463236","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1130, 1, 'b8941e2b-3a66-49fa-994f-0f0017f91643', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/28/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/28/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604922371964200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b8941e2b-3a66-49fa-994f-0f0017f91643","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b8941e2b-3a66-49fa-994f-0f0017f91643","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b8941e2b-3a66-49fa-994f-0f0017f91643","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920c84c755cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:42 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=l%2BnnWJpcl3BPInJl%2FZ5aURD3KC4kyH8jzA23lYhbVIyGz1SrwwV4GKpaqSrqZxH9r7sd%2BDMIzVEk3hNjIRACcYaN8O%2FD9BBB2lfmPLStaOjOhx0XeuL3gMWxa4Ss\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fea96cd8b63411eebca47ec363a92f08; Expires=Tue, 16-Jan-2029 19:08:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fea96cd8b63411eebca47ec363a92f08455fdc9e521f1ca7f427428549e237f9c4aab28d09178d5aab650bc37f35dbca; Expires=Tue, 16-Jan-2029 19:08:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1300305a62346cd53ee329e85017c6f2a1badc74-1705604922; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ei6FQ1hwtU_cdBGBBA8SnIjvwd90k2X_PwC6dySsORk-1705604922326-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705604923","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1132, 1, '03e7513c-9851-416e-bdfc-c6c320f0a879', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/29/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/29/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604923338477000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"03e7513c-9851-416e-bdfc-c6c320f0a879","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"03e7513c-9851-416e-bdfc-c6c320f0a879","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"03e7513c-9851-416e-bdfc-c6c320f0a879","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920d02e005cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:43 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=CVs7FiEckYXavaN2X%2BabnCK2PJFxg6mDZK5QcGHn8ZZF3j4YhAO72vfBVD%2FKKS041JuzsLOa%2FKZc%2FfeDJgB9JbGORS4UNEMcbmKNlnCnud3UGcI%2FXmcXG5fze2rA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ff3cf1ceb63411eebf09ba9b36c2a54e; Expires=Tue, 16-Jan-2029 19:08:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ff3cf1ceb63411eebf09ba9b36c2a54e29a5094eaf05863d7ed54f4cfc417ffdbec7555fe628259609f3d11459c21b81; Expires=Tue, 16-Jan-2029 19:08:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca1dae7e57e61739857cd1fd2718aeed1e2cbaf7-1705604923; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=dLohCDSM6AXYpfQ_WbRdmehfogSjZ35NMpnulYwPQG0-1705604923293-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604924","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1133, 1, 'ffb5a422-c602-4bd4-8d6d-ad93e341acb9', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/29/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/29/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705604923849341300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ffb5a422-c602-4bd4-8d6d-ad93e341acb9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ffb5a422-c602-4bd4-8d6d-ad93e341acb9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ffb5a422-c602-4bd4-8d6d-ad93e341acb9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847920d319075cde-SIN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 19:08:43 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=mRd9KqsDwdGFsQwxoL6xwwbkD%2F5P8Br5wKToCts0RnTvFw%2Ffbq%2Fc14f5BaLlXs0yMBSwxIinYOB58keWSDYg5jFbOa3MjQhICWFR4FGh3BpiePBmtVLJRePHdBK7\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ff8afab8b63411eebb463eccf601600b; Expires=Tue, 16-Jan-2029 19:08:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ff8afab8b63411eebb463eccf601600b0cf221547579ca96b75aa6fd54dcaeecd6f38bac1c3a52f46ad07a96054e5d51; Expires=Tue, 16-Jan-2029 19:08:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca1dae7e57e61739857cd1fd2718aeed1e2cbaf7-1705604923; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=gJvaqUFw977XMp3dTSwoM6G_jjdfdXeWWoBjOZtX9Z8-1705604923804-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705604924","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (821, 1, 'e3fab108-da93-48f4-9bcc-39536d8d0adb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/112/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/112/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164373511261400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e3fab108-da93-48f4-9bcc-39536d8d0adb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e3fab108-da93-48f4-9bcc-39536d8d0adb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e3fab108-da93-48f4-9bcc-39536d8d0adb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d328cc95e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=hw963xAPsPTtVL03VMUFnHzmoc43yQ1FF0eY95HKGg5eBGUxrWHU4SOfPjiZZSHYmuvSjPWZtpPQb0r4cgxmqUZxFK6RqIyyz7t%2Fo2m%2FEfnWb1Jzm21iC6J92IpV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=4318fa06b23311eeae0712eaec767ce3; Expires=Thu, 11-Jan-2029 16:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=4318fa06b23311eeae0712eaec767ce32e20c0b9ae5f4ac82f51e8a9bed5b74b3650f2f96fa87091d1ae21d82ac3429b; Expires=Thu, 11-Jan-2029 16:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=440f5ddaf878039441a550fc0c10193e8c6aad10-1705164373; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=E80GuoPSd27RZRNkB2agW2HTh2DfAEV3cPvkArcZBB4-1705164373495-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164374","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (916, 1, 'd207ac59-b90a-41d9-8db0-e3ab958d036d', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/102/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/102/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370175200790300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d207ac59-b90a-41d9-8db0-e3ab958d036d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d207ac59-b90a-41d9-8db0-e3ab958d036d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d207ac59-b90a-41d9-8db0-e3ab958d036d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bda889ad5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7H7%2BumZCg9YARuT%2BsTbaIQordIfVwO95%2BTF%2FEQRP8JyPp7pJry%2BQVrUvNTZh7Q5vXYZJL3S6DLq1nVZCbKJ1zIVa3bt8AdUCNHy4NIQ5a%2Bz03ViN%2F3R6%2BN8znCGI\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6e75a6d2b41211eeabd9e2de1b7ded09; Expires=Sun, 14-Jan-2029 01:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6e75a6d2b41211eeabd9e2de1b7ded0922eb21adf696e53864ac88324a42a7121aaeb8ee400d2b551456e8592e913685; Expires=Sun, 14-Jan-2029 01:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e806122d4484df8b3dbb107622fc001a5de61769-1705370175; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=uqp38wP0X68FIN534Wkk6msLyjjBNavoej8909OMUVI-1705370175178-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370176","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (917, 1, '56c26f17-232d-4e3f-992f-64e235a52e4f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/103/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/103/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370175633352700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"56c26f17-232d-4e3f-992f-64e235a52e4f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"56c26f17-232d-4e3f-992f-64e235a52e4f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"56c26f17-232d-4e3f-992f-64e235a52e4f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdab1a865e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=M9%2B%2BwQoioLZEWFk9PW5atOzIZQqFlsO7M3sQWN32xq%2F0aysN0iBYv8G4fq5Lk7QMIyYw0jbJBwqefTKrmc7WFrdZoPw%2Bm8rX3%2BlZbRat7%2BUPg4583xrQYiz1V2hm\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6eb79b8cb41211ee806db226af899a7c; Expires=Sun, 14-Jan-2029 01:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6eb79b8cb41211ee806db226af899a7c09a685929f2906a9b1ddda1cb9af71f9357a0d84afcf31a11ea044511d7e7b29; Expires=Sun, 14-Jan-2029 01:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e806122d4484df8b3dbb107622fc001a5de61769-1705370175; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7g0NF7koDE0wDGya2gDNZEjuhFuqf8hieT.UZppLJ0c-1705370175610-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370176","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (918, 1, 'b6dd1258-fb46-4ea5-a844-8df8cbb6ef00', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/103/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/103/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370176025157400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b6dd1258-fb46-4ea5-a844-8df8cbb6ef00","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b6dd1258-fb46-4ea5-a844-8df8cbb6ef00","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b6dd1258-fb46-4ea5-a844-8df8cbb6ef00","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdadcb885e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Iviy01LpcbiQ%2Fj2LZgQB4mDtKvrHhhx%2FKZYYG2fOUSD99iNu2fMqQoeogAQLxXDzPfNOJ2FNDyevnY95SQMNvuBJfTfnGVdhdKmIXySyy1lOZRgSwsLDW86kPvlE\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6ef275a4b41211eeb6a252836d2a6559; Expires=Sun, 14-Jan-2029 01:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6ef275a4b41211eeb6a252836d2a6559e9bd6d129cacca314dbe7e13c5fd00c7f8f18a819b45f850d2bcbc637d675ff0; Expires=Sun, 14-Jan-2029 01:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5ad7e984a110d86f31ba6b463c5faa38019dc679-1705370176; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=SoRhIoDLAS7xNgR_CsGYExXRKnygYimefvGNLjfzSpw-1705370176002-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370177","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (860, 1, '1bc9ad93-3c98-4b31-a0ee-2929b76c7401', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/admin:main] 4 new commits", "description": "[b8d0d92](https://git.gdtsolutions.vn/khieu-nai/admin/commit/b8d0d925b42d717dd3206442113f99e827a2ff0f) merge - Nguyễn Chí Hoà\n[4686dd6](https://git.gdtsolutions.vn/khieu-nai/admin/commit/4686dd6b75c63490b6661f85c0b1c947240ec20f) update userDungDonuserDungDon - Nguyễn Chí Hoà\n[6b8740b](https://git.gdtsolutions.vn/khieu-nai/admin/commit/6b8740b31e995f14081083ba03bd0f1f4c40e3e3) adress - Nguyễn Chí Hoà\n[266e86f](https://git.gdtsolutions.vn/khieu-nai/admin/commit/266e86f2042a8eaf29d0cec9f439c5f06c8fe4d9) list - Nguyễn Chí Hoà", "url": "https://git.gdtsolutions.vn/khieu-nai/admin/compare/6eeb3167459d18da3f7e5738d37354a500b8c3f6...b8d0d925b42d717dd3206442113f99e827a2ff0f", "color": 1754624, "footer": { "text": "" }, "author": { "name": "Hoagdt", "url": "https://git.gdtsolutions.vn/Hoagdt", "icon_url": "https://git.gdtsolutions.vn/avatars/71955e5d26ad26c5d213888a1d650773566d606fea1b0ea0ed6cc85e4b347bcc" }, "fields": null } ] }', 'push', true, 1705291621239889600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1bc9ad93-3c98-4b31-a0ee-2929b76c7401","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"1bc9ad93-3c98-4b31-a0ee-2929b76c7401","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"1bc9ad93-3c98-4b31-a0ee-2929b76c7401","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845b3fd4fe755e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 04:07:01 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=PV3qwbjWhM%2Bcb77cDyr9vaW86NYc%2FqyOXQpgWXH6MEkqJMBxnULwTXYPeWlQGrvA03G6HiW8P11ydNWEnNwUj9SiKYWilIwfQbvJ33J1gdmvO2z8qoSvqIRDtl9X\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=88a66256b35b11eebfa746547f05e5a0; Expires=Sat, 13-Jan-2029 04:07:01 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=88a66256b35b11eebfa746547f05e5a0fca1056837019ecf500d9f75fd96a77d0df4c362b390a26b7272dbbb19ca0697; Expires=Sat, 13-Jan-2029 04:07:01 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ec4174024525e73cecbe19ed7219f6ed9251d08f-1705291621; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=NIxBmXJEgZ..XF8rHDfpaSU1R.eicI0I8XXzJeCyl0s-1705291621218-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705291622","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (920, 1, '7e5d8267-514e-4964-a152-5629094a6284', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/96/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/96/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370176920563200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7e5d8267-514e-4964-a152-5629094a6284","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7e5d8267-514e-4964-a152-5629094a6284","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7e5d8267-514e-4964-a152-5629094a6284","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdb2ad4f5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WrvoeNh6ARhf%2BGMDO9k0n%2FKxn%2FJWUsdYd0CnT0SkOmIqNnER2dou%2FeCbuzYU6%2FMZmik%2F%2B14SkqCa4pernISElPxi77L%2B7u26vKHxKy3AQzm%2FCbMgSujty6yhoj3%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6f7bbf4eb41211ee97bde2de1b7ded09; Expires=Sun, 14-Jan-2029 01:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6f7bbf4eb41211ee97bde2de1b7ded091d76b8b57a779fb5762bcb86fe4f01c4ebe4c641bee0aa99daf4749acdcff60f; Expires=Sun, 14-Jan-2029 01:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5ad7e984a110d86f31ba6b463c5faa38019dc679-1705370176; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=gwOFQLnnDXOA_D4yG8ggnDw.6wksZGL7GEvbbNaZYIg-1705370176897-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705370178","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (753, 1, '55e32529-bd89-4230-801d-c905f1f085b4', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/136/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/136/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705017371551354000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"55e32529-bd89-4230-801d-c905f1f085b4","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"55e32529-bd89-4230-801d-c905f1f085b4","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"55e32529-bd89-4230-801d-c905f1f085b4","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84411849384c5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 11 Jan 2024 23:56:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=w3gJYDcIdSDbi7WwX8PmrsoxwcQMmNhcYcLc%2FXBJ7ZGw5Y2SugrN3QMtyA9U28%2FPPtYeY7eE%2BKsG1UqMsUSYqpcuiCeNlpM%2FcNOApj5cYwX2x6GGvoLRmaRbtd8g\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ff196716b0dc11ee8bf18e16abe24ee2; Expires=Tue, 09-Jan-2029 23:56:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ff196716b0dc11ee8bf18e16abe24ee2e214ad8319a0304cbedfd28b111418d2686c643597ea43104963342c740e25c8; Expires=Tue, 09-Jan-2029 23:56:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cd8dd4cf80cc79ec1f1cb6437acecc2d8e5c1576-1705017371; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=IQwEETZf0QqwXIdwWHWSarxBl0AOhWx9IsUAXwwp0UM-1705017371530-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705017372","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (755, 1, '4308a006-092b-44eb-a467-ec12bb4ac2d9', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/137/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/137/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705017372366140400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"4308a006-092b-44eb-a467-ec12bb4ac2d9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"4308a006-092b-44eb-a467-ec12bb4ac2d9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"4308a006-092b-44eb-a467-ec12bb4ac2d9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441184ee94a5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 11 Jan 2024 23:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=YiMNGSI9LRAlDWLpLIXUPrFb9Ba4Oo%2F8our%2B7bJ86LaCl972ZowjMiS4hvitpLS2RsdvivXicRdenFQEoAZuOlDzPNKYluNcFRtX2WbsD7T%2BlxEpUNPe4KLzDzqD\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ff95971eb0dc11eea547be5ffd869c31; Expires=Tue, 09-Jan-2029 23:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ff95971eb0dc11eea547be5ffd869c313d00663f6335c0e07163716bed639a6eece2a7cc8e88be731ce02304ef318e9b; Expires=Tue, 09-Jan-2029 23:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=dadfff3282a619be26f1f9a0916675a4a65faf67-1705017372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=CWU4ABxnvtO_y1s7optiQvzgsmYBaUS4BNHdeVR.ZWo-1705017372345-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705017373","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (754, 1, '05fce7b7-41de-460a-8591-484cf0c6de4b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/136/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/136/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705017371971537200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"05fce7b7-41de-460a-8591-484cf0c6de4b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"05fce7b7-41de-460a-8591-484cf0c6de4b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"05fce7b7-41de-460a-8591-484cf0c6de4b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441184c68e95e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 11 Jan 2024 23:56:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=spiwc7s1wft5a4NM2%2Bh1OnKShpnAtipNkDkulfhEyfOzkXLQ9wysBGlyGns8f5ZePGVf6fJiNorPd7ElA36wf%2B%2FFpx6z5L7oUH2l15mJIyc30Pwp15424FusDkA6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ff59540cb0dc11ee81e916488926765d; Expires=Tue, 09-Jan-2029 23:56:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ff59540cb0dc11ee81e916488926765d0cab5be14ef688bdd8298378d3a9ec95b3b16feec7c42eb28f1e36bbf39b5c91; Expires=Tue, 09-Jan-2029 23:56:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cd8dd4cf80cc79ec1f1cb6437acecc2d8e5c1576-1705017371; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1LG.bQdUchwI.9RKyI.Iy0XKozbjNAfWUnxNSfrksvo-1705017371950-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705017373","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (921, 1, '6f87c0c5-bdc8-40cc-a608-973c5f51eba9', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/97/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/97/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370177341573000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6f87c0c5-bdc8-40cc-a608-973c5f51eba9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6f87c0c5-bdc8-40cc-a608-973c5f51eba9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6f87c0c5-bdc8-40cc-a608-973c5f51eba9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdb5ded05e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=wewNGaVM6VKwcK87Z%2FGVKzBCwvgeHaw5Cwcs3v%2B%2FBedwZmFcUgKbnwpNWxXo%2BKbNNEi7%2Fs3I4zfiu24yhfMXxsUw4dEuW6xtZCkcaqTJVSz8v8%2BXHAsZxlAPtFDc\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6fbc1dd2b41211ee956336d042aa6da5; Expires=Sun, 14-Jan-2029 01:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6fbc1dd2b41211ee956336d042aa6da52a46c9040875deb3e828dad8800be33a673ce77a73a7e99b7b964d6b5a130a4d; Expires=Sun, 14-Jan-2029 01:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=c4877b22ea882bff27687245eb767429efa8e202-1705370177; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=YYYl.JvFULSlj4QuLCgiJ89vgLHVt_7uUptdPesNalo-1705370177318-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370178","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (756, 1, '43f795ea-cb4b-42e3-b4ab-f921793b24b3', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/137/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/137/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705017372783107600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"43f795ea-cb4b-42e3-b4ab-f921793b24b3","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"43f795ea-cb4b-42e3-b4ab-f921793b24b3","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"43f795ea-cb4b-42e3-b4ab-f921793b24b3","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441185169f75e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 11 Jan 2024 23:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=uYrJpwdUc47u1xMTmOZUxxXDWbCYhJGj7SEUKN%2BSCwyMTMRMqTBtCiN7DljTshudhEh7PLonCsyD9WnW52urnNfcYKcam040jJPExoNrZFE1psV3ngHPHr4RY1%2F8\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ffd54b48b0dc11eeb85056f32716712c; Expires=Tue, 09-Jan-2029 23:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ffd54b48b0dc11eeb85056f32716712c2bba39c8b143aae2b48b2bd75fcb3d519ead2a5e09d7d7825f5f6a912a8b5d99; Expires=Tue, 09-Jan-2029 23:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=dadfff3282a619be26f1f9a0916675a4a65faf67-1705017372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ZOwd9XzqnmRrZcKB5rullsIjQHIclYcEqaufS3ygcXw-1705017372762-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705017373","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1017, 1, '482a94e9-c26b-4f4b-8143-e337a9102a3a', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/backend:main] 1 new commit", "description": "[33d9644](https://git.gdtsolutions.vn/khieu-nai/backend/commit/33d9644ce9d08b8550b3ee8335c8a3024b60b342) update model - vu nguyen", "url": "https://git.gdtsolutions.vn/khieu-nai/backend/commit/33d9644ce9d08b8550b3ee8335c8a3024b60b342", "color": 1754624, "footer": { "text": "" }, "author": { "name": "git_for_dev", "url": "https://git.gdtsolutions.vn/git_for_dev", "icon_url": "https://git.gdtsolutions.vn/avatars/009e520c8a20ee8d22d0087b59f6496f" }, "fields": null } ] }', 'push', true, 1705466287854304300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"482a94e9-c26b-4f4b-8143-e337a9102a3a","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"482a94e9-c26b-4f4b-8143-e337a9102a3a","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"482a94e9-c26b-4f4b-8143-e337a9102a3a","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846be827ba695e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 04:38:07 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=LpecFoqR5RPnUpVuZY%2FDlJK%2Bpqd4UusZqn%2BblieklllLiaf0DaTDBQ6dPXZcQaCIPbXb5z3eo9CHlaoFsl2xTbaJGXj1vuLo%2BjPgGC5otpKAdTPMoi1zF20lkAJ0\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=360fd322b4f211ee8b05e2972f98ad0e; Expires=Mon, 15-Jan-2029 04:38:07 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=360fd322b4f211ee8b05e2972f98ad0ea33133a62e4f41a5e72f3c81cc0a49ec0c2ee368afb2f8236fb017e1d10484bc; Expires=Mon, 15-Jan-2029 04:38:07 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=de69e9ec133bd790a0a781079769a84c03d6af37-1705466287; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ee6pFrgl2Q0YKJCwpHz86ZQyTXEauWPcYVPvCOnE.n0-1705466287829-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705466288","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (757, 1, 'c3198f80-0366-4397-981d-6335b6e73443', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[7f5f892](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7f5f8927493694fa7b669e9f03f9b7cb95fda38b) fix change so nam - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7f5f8927493694fa7b669e9f03f9b7cb95fda38b", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705024774248332600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c3198f80-0366-4397-981d-6335b6e73443","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"c3198f80-0366-4397-981d-6335b6e73443","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"c3198f80-0366-4397-981d-6335b6e73443","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441cd041a725e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 01:59:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xIAA%2BHOSbrTgUv5kzC5tbhFKflDT9Uv46RgzhBLys3GsuHkeIBg1wxyN7e6EiYhw52An%2FQGuHebVaNBMkxDwbh9eWBqAjGTR63yteTBHjeRqglm9bUmCVxYVmiV0\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3b6e810eb0ee11eea826d2890ffc9a2d; Expires=Wed, 10-Jan-2029 01:59:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3b6e810eb0ee11eea826d2890ffc9a2d9f458ee0e9bf04a9e56a76434b78670aecf489390ee11a981693c616f06e93b1; Expires=Wed, 10-Jan-2029 01:59:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0f871ab1207992dd6d7d198527462e59786c8d58-1705024774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vhUbsGBiZseTOHAcOURHRDmuT4URNNoEiNBSZQERtuI-1705024774226-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705024775","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (822, 1, '285c7159-fec7-4fbf-b474-492f6191fe58', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/112/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/112/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164374047465200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"285c7159-fec7-4fbf-b474-492f6191fe58","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"285c7159-fec7-4fbf-b474-492f6191fe58","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"285c7159-fec7-4fbf-b474-492f6191fe58","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d369bb35e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=m4nFqzZnwkKnXKsa40Y2IbLHiJcccoXGD%2F9rflE4GuvASt1DoXy35D0fXc2wWQpbGl%2FqVg%2FTS2a5vykNRXiCCXXrRRyOcnWtBEfxQ%2BUBgVIPohvhneuOSJ2p46mN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=436ac142b23311ee89930ef8e0e10094; Expires=Thu, 11-Jan-2029 16:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=436ac142b23311ee89930ef8e0e1009458de342886dc1c4860a134b2539e58c2ba10daf59eff9052c2232468dbe6f9af; Expires=Thu, 11-Jan-2029 16:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8e168380d93d5f2447c0d3e1d02f6eac14ab3736-1705164374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=RCML_STDWG7Brmk1eudTXF_gDkive31BHjmt6r2o56E-1705164374031-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705164375","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (861, 1, 'd556a6ff-d71a-40ee-bcb8-c0bfb3e66cf8', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/backend:main] 3 new commits", "description": "[25171a9](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/25171a94c626223b0e72c8a83ce97b2af8680282) f - Nguyễn Khánh Nghĩa\n[6935781](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/6935781437259ef8b4fbc67a932ddf11dafb1899) Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend - Nguyễn Khánh Nghĩa\n[69a1a8c](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/69a1a8ca8f1772e4b925d1acb1f217a85d542292) gửi thông báo khi thao tác với kế hoạch tuyển sinh - Nguyễn Khánh Nghĩa", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/compare/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85...25171a94c626223b0e72c8a83ce97b2af8680282", "color": 1754624, "footer": { "text": "" }, "author": { "name": "giao-duc-nghe-nghiep", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep", "icon_url": "https://git.gdtsolutions.vn/avatars/802cdf8532d94c10cd481e4e3983c194bc5f4fc5742e4a5d699a740361409a4c" }, "fields": null } ] }', 'push', true, 1705301773871064300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d556a6ff-d71a-40ee-bcb8-c0bfb3e66cf8","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"d556a6ff-d71a-40ee-bcb8-c0bfb3e66cf8","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"d556a6ff-d71a-40ee-bcb8-c0bfb3e66cf8","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845c37af7e665e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 06:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Pwag20AYl3B8KBGsxJJhLWvVOutRboXIZHptK%2FH7HdJRgTdzlzoeP5FHoyzAZLlzh7O3ZvPZDiN4PIGkjRQ2B5P5FcUFpAmk6B3k0D89vG4AYbbUnPxsOSIs5CNZ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=2c171c48b37311eea71a3215ea8fca8e; Expires=Sat, 13-Jan-2029 06:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2c171c48b37311eea71a3215ea8fca8e96a32d44f8b1385a00cc4badb51be54d692deca4553fc3186c863863ac04bd72; Expires=Sat, 13-Jan-2029 06:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cd34d69c7b0bbf97cadafd1a0f93ce2580e4e935-1705301773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=h99kzYZczu7x6CY.KEpaEjabR4Vub3ARy7OITDNao8Q-1705301773848-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705301774","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (923, 1, '98a69b1c-479c-45cb-a760-bc8e42bb12e2', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/98/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/98/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370178115050700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"98a69b1c-479c-45cb-a760-bc8e42bb12e2","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"98a69b1c-479c-45cb-a760-bc8e42bb12e2","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"98a69b1c-479c-45cb-a760-bc8e42bb12e2","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdbad8d85e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=eUAa%2BqHFUroWPjdq%2BIJu5xVrYySr0zpf4sL%2FgWgQREZvMx2pUp1nZ8heGwnIQ2R5DzpZk02fUYxYr2huWDkhgKVs2AQuthh20gIPpfW162SjmjIHXK85%2FA7j%2Frsi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=7032232eb41211ee93d82aefc8414a83; Expires=Sun, 14-Jan-2029 01:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=7032232eb41211ee93d82aefc8414a83c46f4443968c8b2864b048853a308527b60eeed38b4460d458208aa1fef4a7da; Expires=Sun, 14-Jan-2029 01:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6343232e0afa809f8f2972c8f9b09e4c138f686c-1705370178; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=qb9owbAcE93TFwbucH2FjCkJy5LvpDxCHXnQzyFpxZE-1705370178091-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705370179","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (924, 1, '73507e62-5183-420b-b2de-1bafefbe982e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/98/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/98/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370178482009200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"73507e62-5183-420b-b2de-1bafefbe982e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"73507e62-5183-420b-b2de-1bafefbe982e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"73507e62-5183-420b-b2de-1bafefbe982e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdbd59dc5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=3L1XLtp6ad6CsHDvdr%2BUmp7nztogl4GjhM1BVMRuhf8Ir%2FiQtHreOg2igCHlUCl74SfAsgdx%2BQuNtLmBdr9IYph6VxB7lQ0pL4jC%2FI5JgX6Np1GBK%2BflBexPFJoZ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=706a7feeb41211eeb15dca8da208398d; Expires=Sun, 14-Jan-2029 01:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=706a7feeb41211eeb15dca8da208398da49aaa9ff53b2ffc72bfb20d3396e0427e47fcefec24ae00da576cab0bb5919b; Expires=Sun, 14-Jan-2029 01:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6343232e0afa809f8f2972c8f9b09e4c138f686c-1705370178; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=pv.baUkbF88_rjaBJyUJBQSLVzrS0u3kMtDnz5eGGhY-1705370178460-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705370179","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (925, 1, '0ecf4b5b-fb98-4309-bd76-50d86a8663c6', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/99/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/99/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370178921507400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0ecf4b5b-fb98-4309-bd76-50d86a8663c6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"0ecf4b5b-fb98-4309-bd76-50d86a8663c6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"0ecf4b5b-fb98-4309-bd76-50d86a8663c6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdbf9aa85e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kQ5UDoAT79fkf3WuN30kghvdNUQ2Z%2BsFX9OWOMnU9LvPoLfdjup8p%2FrAwO05Lf7eO7G3q1KLyto%2B14KqkCkVFrKdIFLQpUj2S%2BiMbJWKy7mQGcbU3SHOQ3yIDFVH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=70ad4c98b41211eeb464c27c7797be79; Expires=Sun, 14-Jan-2029 01:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=70ad4c98b41211eeb464c27c7797be79c4b0043d2b56570cfda811677baeef9922c934b4122d0bb96c8ffbfbd3b5ac9e; Expires=Sun, 14-Jan-2029 01:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6343232e0afa809f8f2972c8f9b09e4c138f686c-1705370178; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Ag9jd90rq5st4IGWOs0ZPD6vOOszjyldvFESw6Nmae0-1705370178898-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705370180","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1136, 1, '257404b8-195e-4abb-885c-987dce928279', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/backend:main] 1 new commit", "description": "[35db819](https://git.gdtsolutions.vn/khieu-nai/backend/commit/35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5) update - vu nguyen", "url": "https://git.gdtsolutions.vn/khieu-nai/backend/commit/35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5", "color": 1754624, "footer": { "text": "" }, "author": { "name": "git_for_dev", "url": "https://git.gdtsolutions.vn/git_for_dev", "icon_url": "https://git.gdtsolutions.vn/avatars/009e520c8a20ee8d22d0087b59f6496f" }, "fields": null } ] }', 'push', true, 1705630615465216500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"257404b8-195e-4abb-885c-987dce928279","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"257404b8-195e-4abb-885c-987dce928279","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"257404b8-195e-4abb-885c-987dce928279","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847b940f4ec15e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 02:16:55 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bVp7T%2BUKL%2F3Qr4dEId3vkLF%2BuAgJXcErveIHGpTK8nNJeZk8sB8O9fN%2BmKvScO3H5kFpjRLZ%2BJiHgBsGt2iRQL4VFArm8FK1armdc7bNRJAWJFb75N5lByNrZPWP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d0f5131eb67011ee8687d6801a3f4226; Expires=Wed, 17-Jan-2029 02:16:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d0f5131eb67011ee8687d6801a3f42262c7fa8413905951747fb09e8e138a95db4941e79c030d92c8b51937082408f23; Expires=Wed, 17-Jan-2029 02:16:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=960405ddce76e42ec79e92a0c812a326a03f6772-1705630615; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=lxLSmrJzmWU5ZN6odKlawy19JM82d1wd9AJycO6RZMs-1705630615451-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705630616","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (760, 1, '732238d1-947f-4dbb-9be9-677807a51c05', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #84 fix change so nam", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705025964017957800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"732238d1-947f-4dbb-9be9-677807a51c05","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"732238d1-947f-4dbb-9be9-677807a51c05","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"732238d1-947f-4dbb-9be9-677807a51c05","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441ea10be535e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 02:19:23 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=EIOAlyRQiHGRcOICmRCp3EfbEVmQ2SrekRksVuH9tjZNN5Ko5Qfuccb48VHYXROqEup1A80bVZvSJ6QeEhP8AQs899Fi74wFybGlT5LXtXEuWyb1nYoDcEMoH6fI\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=009b7e58b0f111ee8e36227065d8f77c; Expires=Wed, 10-Jan-2029 02:19:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=009b7e58b0f111ee8e36227065d8f77cfba7264217b33c4e7816207a64e7a39c894a3cad0277b90373d0207c8a7298f0; Expires=Wed, 10-Jan-2029 02:19:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=53471e3b016f98600ab84080221ac070cf455b6e-1705025963; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ajx7KJsM2QIVDLrzO6UoVKiFn_J7nlIBxd82ALlKHxI-1705025963996-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705025965","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (759, 1, 'f9733e1a-5fa0-42cb-b5bb-af898c96076f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[d727cc3](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/d727cc3cd0303928173eddab019be9d9615d69da) fix loi - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/d727cc3cd0303928173eddab019be9d9615d69da", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705025945194749000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f9733e1a-5fa0-42cb-b5bb-af898c96076f","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"f9733e1a-5fa0-42cb-b5bb-af898c96076f","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"f9733e1a-5fa0-42cb-b5bb-af898c96076f","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441e999eb0e5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 02:19:05 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=FpQcdGj5f301gG%2BrPaizKyimwyh8b15LVjZWR1MXdXdkj7Fls8eM95p7g8VQ5yDSnmmrooiGCrM71p8hQQEaRvEZbJMFMEzgio45w9CXRqN0QjB%2FBXCj7PFCLqQs\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f561ebbcb0f011ee8a3f8a6fde772b1a; Expires=Wed, 10-Jan-2029 02:19:05 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f561ebbcb0f011ee8a3f8a6fde772b1a43651453490835a84a57b549694cd3208e4d11daa3647736ac4241bcfce1b16d; Expires=Wed, 10-Jan-2029 02:19:05 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=86a7d10c7587ca62554aac4bd7841da62d25ff8d-1705025945; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=otgbkb7MQwshPc9Gylv7mWYLxf3u..Ikis5omk0_wTg-1705025945164-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705025946","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (862, 1, '64076443-b94a-4f49-b2a4-5f2bf2744518', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[5562d28](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/5562d2823f0ace47c1fca2f8fe994e65241e8bea) add full action - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/5562d2823f0ace47c1fca2f8fe994e65241e8bea", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705311230839795300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"64076443-b94a-4f49-b2a4-5f2bf2744518","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"64076443-b94a-4f49-b2a4-5f2bf2744518","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"64076443-b94a-4f49-b2a4-5f2bf2744518","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d1e955d5c5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:33:50 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4FuxW5xhDIdYwegf1stbsKO%2Fh61cMSPuDMoD8jnha0U77cZFw6sHDkT1Be7AGq%2FAIF%2B78OomZPADJG8J4ghuf8X%2BUEKH7XIY3T3F00FK7ACoIQCG7pWFj4Uv%2F5QV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=30e178deb38911ee8ad90ef8e0e10094; Expires=Sat, 13-Jan-2029 09:33:50 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=30e178deb38911ee8ad90ef8e0e10094f16c9fc42897f381c0dd5c26d1bc1298b5fcd9743acf88dfbed0a07663519ed0; Expires=Sat, 13-Jan-2029 09:33:50 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ee919ee86b0c9eb0387b71b51b5135fecfa98ae5-1705311230; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Sr7sNKr39wPlpN_CrtqcwY.LfdPIREUuaMkkB_pJTn4-1705311230814-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311231","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (926, 1, '378bb0d9-5ba1-43f1-a285-cdae9d0432d6', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/99/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/99/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370179298360500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"378bb0d9-5ba1-43f1-a285-cdae9d0432d6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"378bb0d9-5ba1-43f1-a285-cdae9d0432d6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"378bb0d9-5ba1-43f1-a285-cdae9d0432d6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdc25b945e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:19 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=A02WyW%2BNavB0l38ysOanMvvMr%2BgbEm9pfVVqu3DzqfK623Mu22zkkufSfSV9jgNBc41berTiSsqHRHq63xU8LP%2FF3zc6H%2F2I4hfkuLegA9U%2FUc0be0NMJXBQGKfP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=70e6439ab41211ee90b0ae81745b42dc; Expires=Sun, 14-Jan-2029 01:56:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=70e6439ab41211ee90b0ae81745b42dce5177e3f88272f986d21c9bc4a581b0806e82c7c11ab05247aca494299d8689a; Expires=Sun, 14-Jan-2029 01:56:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ea9bc430c872836b654be2c3adda9b27a14b3c8f-1705370179; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=XaembEPn7XyM9sDXW7ihn277ehCk5H5ZtzJ343bYNhk-1705370179275-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705370180","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (824, 1, 'a0b0f596-a302-4bb1-b51e-b9d171b3cbc0', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/113/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/113/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164374987025900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a0b0f596-a302-4bb1-b51e-b9d171b3cbc0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a0b0f596-a302-4bb1-b51e-b9d171b3cbc0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a0b0f596-a302-4bb1-b51e-b9d171b3cbc0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d3d3d3a5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0EnksEkaBBHRwqMgrlyMK%2FainmcIaWVN8drUAYZEsvW3wHjo3dUOhVBw6NpVJ522%2BJRw6fT%2Fr39ODFDgahuIyijM9lGG9Zcn3zv6Hmuc6fFimnwdZ2px5jq9xiX%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=43f9e08eb23311ee8b23323056eea780; Expires=Thu, 11-Jan-2029 16:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=43f9e08eb23311ee8b23323056eea78059c2c0a30ff42853acc2df0ff8ab5b9322fcc9c92dbd74a69359fe4eddba9e81; Expires=Thu, 11-Jan-2029 16:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8e168380d93d5f2447c0d3e1d02f6eac14ab3736-1705164374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=0PAQI3wVHGCBhwB8WEO5pfdqCqtEwD7KJk7UWfao4qc-1705164374971-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164376","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (825, 1, '42a34637-d728-4c7c-aa5e-74f35bc31c9a', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/114/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/114/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164375402148100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"42a34637-d728-4c7c-aa5e-74f35bc31c9a","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"42a34637-d728-4c7c-aa5e-74f35bc31c9a","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"42a34637-d728-4c7c-aa5e-74f35bc31c9a","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d3fddad5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=tmF8Q9LK7UQHykftslrfgP5sr9OsNuQ3mKLZcAmrupKd2%2FI9kSU5yK0BHhdr1H%2BzWUy2NO6FyGfUD%2B5fGfijVOWkoFZx1BrE79lnmix8q0mE10Ls4eMT3cQvxieN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=44398e6eb23311ee9176feae4a9c08f0; Expires=Thu, 11-Jan-2029 16:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=44398e6eb23311ee9176feae4a9c08f089bf2770db212f841fd09c3c08a47218c43fe7143ad3ed0c8877a7b6cfbb5701; Expires=Thu, 11-Jan-2029 16:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=79ab1ef4be4d4523e6e35a7c89bce78eb36e6f50-1705164375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=6TU7KiD2HIc9Cjd6gHU7ORO8zncnDoPA6Yx112pZI5k-1705164375387-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705164376","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (758, 1, '14ca8f8f-d665-4041-be36-1a6ff056a03e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/admin:main] 2 new commits", "description": "[94ffd4f](https://git.gdtsolutions.vn/khieu-nai/admin/commit/94ffd4fad7e84bcd1525ff0775450354d753d78a) Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin - vantuan\n[6ddc330](https://git.gdtsolutions.vn/khieu-nai/admin/commit/6ddc3308160e6450d6b7a16081e12973629317a6) fix: component address + oganization - vantuan", "url": "https://git.gdtsolutions.vn/khieu-nai/admin/compare/ec74b0ab70e1e48ddd32ec953e0086264cc0de94...94ffd4fad7e84bcd1525ff0775450354d753d78a", "color": 1754624, "footer": { "text": "" }, "author": { "name": "tuan", "url": "https://git.gdtsolutions.vn/tuan", "icon_url": "https://git.gdtsolutions.vn/avatars/ef8cb8091e07736d503797a3fd007bb52d58ce27f461213703866d303da8e9a0" }, "fields": null } ] }', 'push', true, 1705025089307076200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"14ca8f8f-d665-4041-be36-1a6ff056a03e","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"14ca8f8f-d665-4041-be36-1a6ff056a03e","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"14ca8f8f-d665-4041-be36-1a6ff056a03e","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441d4b5db355e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 02:04:49 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7jrG5fh0gUa85AWI7nnDew7w%2BY0p3Y4WJWOAaG25%2B9x%2FSzsuDgHpyDHlUh0St6Wh3wI%2FDbVL6Ac6Tuge9gnp6a%2Btfiyg0UL7%2BFf2rakhXqwBc0b%2BDqDHD2a0Gfg%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f73c4e0cb0ee11ee972bea1835bc0607; Expires=Wed, 10-Jan-2029 02:04:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f73c4e0cb0ee11ee972bea1835bc0607103a9af2e14333425058ec358d2dcd2eb5b2f6841b8100b046dbfd433c337eff; Expires=Wed, 10-Jan-2029 02:04:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=2c17610a1da6c25cee7628ef843539691e039c20-1705025089; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Y0qnzgUD9CXH9hmYSwCjP6iIY5wmJdQF.Spb_wtwYP4-1705025089284-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705025090","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (911, 1, 'a9690564-6082-4dc6-b844-7183b0b28d01', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/100/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/100/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370172248491400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a9690564-6082-4dc6-b844-7183b0b28d01","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a9690564-6082-4dc6-b844-7183b0b28d01","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a9690564-6082-4dc6-b844-7183b0b28d01","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bd946a3e5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Gfbkbp%2Fdlh4RAyrtdbLQqb%2F4T7yPPAJnZnO%2FdZf8kcYOlED6Ch8bzg5wCCZ3Vlji0QwXQCzsre8XZAoC%2FSaMHAa9LO9SncxXiSmlF5FOE99jxsKXaalGh%2BHUUZ4x\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6cb2db94b41211ee91461ada573ed41d; Expires=Sun, 14-Jan-2029 01:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6cb2db94b41211ee91461ada573ed41d8bead1e1f5b8a535b87e10a91ee60dbe1804309e0ee2b777ed417d0ddafb6d0a; Expires=Sun, 14-Jan-2029 01:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6468c595ba3207773998ffb7e5ca2873d0955bcf-1705370172; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Fpk4f605vsq8SeUNv7f9AG0rZJ_df_PtDyJ6bN2_wBA-1705370172224-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370173","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (761, 1, 'b4b842a4-0d1a-44c1-861e-46829d9c7475', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #84 fix change so nam", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705025979202969900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b4b842a4-0d1a-44c1-861e-46829d9c7475","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"b4b842a4-0d1a-44c1-861e-46829d9c7475","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"b4b842a4-0d1a-44c1-861e-46829d9c7475","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441ea6f7fa65e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 02:19:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=swwgjRdzyGqjvZVW2HjFHb8V4Vxi2tyo3UcuSFaNJrvqxL8398UrBtmhuYfjGs%2FOl3ltjPZDZIV2O%2FIwUSnchPt3CLj4Idpru3a0fsqEcQw4k18CRe6FTqlV2kMQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=09a6ba3ab0f111eeafa0d2890ffc9a2d; Expires=Wed, 10-Jan-2029 02:19:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=09a6ba3ab0f111eeafa0d2890ffc9a2d43e91dcf038c5e0e4d1eaa24391a27a992d5af6ca9fa853ed1d87f9deb5123a1; Expires=Wed, 10-Jan-2029 02:19:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=de9cb41c1cb9296ff4a97bb3689cf93762f6253b-1705025979; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=236D1G0D_DkyJtUGw3oCNdGuhXja7uV8QfN9ZhqrfUQ-1705025979181-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705025980","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (798, 1, 'b325fd87-ee20-4fdc-a6ac-d5f0155b146b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/backend:main] 6 new commits", "description": "[e229e9e](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85) update - lqdat\n[bf76367](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/bf763670dbcd04cf2d62a4351e7bd827afd8c51f) update bao cao - lqdat\n[2c1fcef](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/2c1fcefaef32b97c209b50d4e26b254dfc876ebb) Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend - lqdat\n[2c28f28](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/2c28f28773d5b3c23e888d4e0d18be1aeeeaf91c) Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend - Nguyễn Khánh Nghĩa\n[dc7009d](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/dc7009da3e2ca79ea7f8bc87835aa020280a81fd) fix Nhập số kế hoạch không được nhỏ hơn số đã được phê duyệt - Nguyễn Khánh Nghĩa", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/compare/869268d636fa17b9ae86c4f0ce751839607f6610...e229e9eb5f74d84e9c147d3adfc8e5c06b8a2d85", "color": 1754624, "footer": { "text": "" }, "author": { "name": "giao-duc-nghe-nghiep", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep", "icon_url": "https://git.gdtsolutions.vn/avatars/802cdf8532d94c10cd481e4e3983c194bc5f4fc5742e4a5d699a740361409a4c" }, "fields": null } ] }', 'push', true, 1705066575050242400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b325fd87-ee20-4fdc-a6ac-d5f0155b146b","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"b325fd87-ee20-4fdc-a6ac-d5f0155b146b","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"b325fd87-ee20-4fdc-a6ac-d5f0155b146b","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8445c98a4fa55e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 13:36:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=LSblvgcaTLn4CeODgv8LC2EzAZWiArvbVEBV6aBuBrnJb8rygH4btJDVp7fjMN39zo8Q%2FYrW7VPQOD5pGLg4PXSuqv9s62WgejqIWrhkkE3JDnMqQRXQ%2B2hcEjKl\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8eab13eeb14f11ee8f92b2f1f8ff99d6; Expires=Wed, 10-Jan-2029 13:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8eab13eeb14f11ee8f92b2f1f8ff99d677b4778d245f8a3c3b1a6b1f88a1ef11b7e587e4e2cbdfad765c143e98dc6ea4; Expires=Wed, 10-Jan-2029 13:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5564df5d5dfbc99cba1b62cb4b94ecd67183bdf6-1705066575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5lz8gXcuZbFtGzWjKEH8j.0IwetCQqr.09NBETsuVgU-1705066575027-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705066576","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (863, 1, 'c6094487-546a-4ef0-9b60-e0c85957e0a8', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #92 add full action", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705311363712930600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c6094487-546a-4ef0-9b60-e0c85957e0a8","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"c6094487-546a-4ef0-9b60-e0c85957e0a8","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"c6094487-546a-4ef0-9b60-e0c85957e0a8","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d21d4f9b55e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:03 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=uu8XDq76f3%2BfC9AsmSbwygdynf26sWryuEfAJjSGg8vDqLsnK2Gj6ZG7qGDG9UTZY38SM7nSyqqwZ427Dv6B3o7eZap7dbjx9POEoRKtUVb53oWYWXJnIS6AxsiN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=801442bab38911ee862026f75c34e25e; Expires=Sat, 13-Jan-2029 09:36:03 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=801442bab38911ee862026f75c34e25ee117e091497ca40c46e9a5b45de4556d800b03aa936eb2cf62bf6596cb5ca7ae; Expires=Sat, 13-Jan-2029 09:36:03 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5c8ba93b13f1419474df25a83dbb2df19d563e8c-1705311363; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=kSwYiqCTBMfo.S9Sfmi1GE2ndq3SCFxk265ZQO5umNI-1705311363686-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311364","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (912, 1, '581cec99-005d-42ce-a438-bf402400c4e4', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/100/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/100/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370173520902200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"581cec99-005d-42ce-a438-bf402400c4e4","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"581cec99-005d-42ce-a438-bf402400c4e4","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"581cec99-005d-42ce-a438-bf402400c4e4","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bd98abd95e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Pio7kMNpnsnoqRmCzWXtLhGEVLK7G9vd43C9VxTM4pUoFts1DUH2bc%2BUC5z6sS7TgnhQkVAEBjMxx3ulc3o6wqE2BFfj3EbD3CJJjYcjgfgpqGTy1DJaK%2FVQgloL\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d7512feb41211eeb707cacdc54b0cd4; Expires=Sun, 14-Jan-2029 01:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d7512feb41211eeb707cacdc54b0cd4d2be45c5ef908b7e124256ce8b08201e84ef15d921b955a873569ea980387897; Expires=Sun, 14-Jan-2029 01:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=69f1685ddd2f72342ad4b6d7471205885d458559-1705370173; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xqbk59ZSe6S.XC0N.ofAEmPP45HjwkiJbpJGGKgdoXM-1705370173497-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370174","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1018, 1, '5179980f-090b-4643-83f7-a43310ea196e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/backend:main] 2 new commits", "description": "[fdee172](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/fdee172356b6f9f25ce145921047bafcb1d2e5ca) Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend - lqdat\n[032f565](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/032f5653d1f00c12ee7afa5e20bfed87acf17720) update - lqdat", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/compare/7c37978908457eed35a776de122d752d008605f5...fdee172356b6f9f25ce145921047bafcb1d2e5ca", "color": 1754624, "footer": { "text": "" }, "author": { "name": "giao-duc-nghe-nghiep", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep", "icon_url": "https://git.gdtsolutions.vn/avatars/802cdf8532d94c10cd481e4e3983c194bc5f4fc5742e4a5d699a740361409a4c" }, "fields": null } ] }', 'push', true, 1705478172418749100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5179980f-090b-4643-83f7-a43310ea196e","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"5179980f-090b-4643-83f7-a43310ea196e","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"5179980f-090b-4643-83f7-a43310ea196e","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846d0a4e38ba5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 07:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=mFHpYfTEmnEQD8%2BnbwNdHSYZbJIi6uzvaBJgJ9QtLhp%2FvW3Ao23CqsrbVb4cdTVrYNGuxYPMfEVDr3wtJtH2bWKx28n45rCRiqoyWcljLraaIQ7tfG2efy1oAt6h\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e1ce26d0b50d11eebfa70ed9ba29d9fc; Expires=Mon, 15-Jan-2029 07:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e1ce26d0b50d11eebfa70ed9ba29d9fc8ac6cca63e8c1f7d2c9fb21622bc39140424e51cad218ec8b3a26ae85db89594; Expires=Mon, 15-Jan-2029 07:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b9c382e964e4dec636848bec906aaa0e81d1920a-1705478172; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=E9kUNT4AZFUOuToDZgtdUgrJCjvcK8R9DXDnqGcsS3o-1705478172396-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705478173","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (762, 1, '2d4ec3a3-ba0f-443d-b3fe-7e45686bffbc', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 3 new commits", "description": "[d48e38d](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/d48e38d9a17ce739803e4e98d015c2fc443742ac) Merge pull request ''fix change so nam'' (#84) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/84 - hungthinhne\n[d727cc3](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/d727cc3cd0303928173eddab019be9d9615d69da) fix loi - Lê Hùng Thịnh\n[7f5f892](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7f5f8927493694fa7b669e9f03f9b7cb95fda38b) fix change so nam - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/50815ab17a48609b68bcfab8f7f40e59e7dcb4f3...d48e38d9a17ce739803e4e98d015c2fc443742ac", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705025979586129400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2d4ec3a3-ba0f-443d-b3fe-7e45686bffbc","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"2d4ec3a3-ba0f-443d-b3fe-7e45686bffbc","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"2d4ec3a3-ba0f-443d-b3fe-7e45686bffbc","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8441ea7218515e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 02:19:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0XN1CkxoXZIbQPzyiphT7w0W6BU9%2B%2BYZadECZ6oLGYBvrYj8rj3WcFmZmTR3bu532zi9RpBj%2FBuugobdUFAXSNYy5l3L3xcDC4%2Bkx8t784FLwteV8RTpV%2FazJnQs\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=09e2bd8cb0f111eebfaa5e96e0cb35c1; Expires=Wed, 10-Jan-2029 02:19:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=09e2bd8cb0f111eebfaa5e96e0cb35c1d5fd572cc9e11a05a447d25ed42134ecdbb999eddbfe44756a6b2a9f9ee3a16e; Expires=Wed, 10-Jan-2029 02:19:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=de9cb41c1cb9296ff4a97bb3689cf93762f6253b-1705025979; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jGTy8Zi6dmKwpsQ2OWqKztRQ5JmoaIDBMSkRG5bG4jM-1705025979565-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705025980","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (913, 1, 'ebcc8ff5-e6f2-4c7f-a01d-5822122aa4de', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/101/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/101/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370173971430000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ebcc8ff5-e6f2-4c7f-a01d-5822122aa4de","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ebcc8ff5-e6f2-4c7f-a01d-5822122aa4de","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ebcc8ff5-e6f2-4c7f-a01d-5822122aa4de","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bda09ec95e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xwECbOp8Rgwphpjp7sTgl6knC%2BBm1vLxHthL6rLDuwml9zmzSnEbPFrJBJunFXeqXJ1yV8refRbrP97ekKI4wmBIUJZ%2FwfKNG4bSyccXQSRHRWcDTSmM%2BPKyLc8B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6db9cbe2b41211ee9a4f3ecc425d0a0e; Expires=Sun, 14-Jan-2029 01:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6db9cbe2b41211ee9a4f3ecc425d0a0e7a91bdabe016a96325b27a980336551951625f92c408ddc7df9d788fd98f6247; Expires=Sun, 14-Jan-2029 01:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=69f1685ddd2f72342ad4b6d7471205885d458559-1705370173; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=LqTSq2OL8OtSIJuVYL6LgKd3wialU.tCxc4Q4Xc0X0Q-1705370173948-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370175","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (864, 1, '60646165-0eb7-4057-a4bb-35be767dab86', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/105/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/105/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705311373007691200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"60646165-0eb7-4057-a4bb-35be767dab86","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"60646165-0eb7-4057-a4bb-35be767dab86","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"60646165-0eb7-4057-a4bb-35be767dab86","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d220e49f05e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2BSbcDEFcOYWEdHrXMHEpGAFuSsXXNokJcBUG512KjtrRzKG7Sl%2FwmOxLDZdgfq%2Bx9CU6oJM7aAK0JOEYsrjCMdRDdIwmFTxCgClBBcf6VozaCoPReVEne9zeKtd5\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=859ea2a2b38911eebd846ef5a4795949; Expires=Sat, 13-Jan-2029 09:36:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=859ea2a2b38911eebd846ef5a47959490ba6ffa86311dda72696206f654178a19fa7c14510fc20e225e008a0dc040fda; Expires=Sat, 13-Jan-2029 09:36:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a0c6e23b3c7b993c1f3db16a61bdca7f3e8ec3ff-1705311372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=3S.gXpEX860pChm7dZOZtdQcwxsXNeofkEBy7ZAhqDQ-1705311372982-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311374","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (865, 1, 'b9f21476-a0cf-4210-8b1a-d229e3bd6dec', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/105/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/105/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705311373596581200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b9f21476-a0cf-4210-8b1a-d229e3bd6dec","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b9f21476-a0cf-4210-8b1a-d229e3bd6dec","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b9f21476-a0cf-4210-8b1a-d229e3bd6dec","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d22116bb15e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cMyNKyKgWeo2LPso%2FTHb9FIMTtSjfMUq%2BX%2BVmw2PXJ4yZTXew%2FThs9KEB%2FzZEXYiqK5uIjQ5gh%2BeuyAzXmyqWrbGwWemDPjcl%2F8ahg0ztrnM0rrUgbsij6XrROcn\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=85f89a14b38911eebf39faa855ff95e7; Expires=Sat, 13-Jan-2029 09:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=85f89a14b38911eebf39faa855ff95e7855d7b78d4b7a16dfcd05a2256075d280fe933d3ace823cecb8cd64eafa1bffe; Expires=Sat, 13-Jan-2029 09:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cf1a8476a8df83cff19d7a35921a7097204ef541-1705311373; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Qve6dTY_SuAgwcMdZZSdm6WF24Q_FR0J0PFgi5DmPB0-1705311373571-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311374","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (866, 1, 'a55539c8-0ad1-4fb3-a13a-65ab67cc4a0d', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/106/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/106/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705311374032779600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a55539c8-0ad1-4fb3-a13a-65ab67cc4a0d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a55539c8-0ad1-4fb3-a13a-65ab67cc4a0d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a55539c8-0ad1-4fb3-a13a-65ab67cc4a0d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d22151d675e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=FevNdmm3VXXxifwHKPdLwX0Uam2E06W%2BDLA6S4FLlPldCElgSfGfDIPSr1yss1KEYHN%2Bimb1V5VtHbVgmH%2Bq2ThtB7r%2FWfJTbeyr0CKAEc3Ukamf0JmkZ64rG4f5\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=863b2b7cb38911ee9f53aafc74f5fb1c; Expires=Sat, 13-Jan-2029 09:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=863b2b7cb38911ee9f53aafc74f5fb1c0fb1ecc3a0cff7031d361ceb5a27a5d16f7bf3261ab9f03d861328a6bf3ca8b1; Expires=Sat, 13-Jan-2029 09:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f590149157ae6f731c6d4be3f2660471148bad45-1705311374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=kEVyyL.yCVarDUIb8Pj.BGZdE1lyKHuEkQRPqO_gOd8-1705311374008-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311375","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (914, 1, 'a0163db1-5b90-4d69-9b20-186a54570151', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/101/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/101/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370174397567000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a0163db1-5b90-4d69-9b20-186a54570151","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a0163db1-5b90-4d69-9b20-186a54570151","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a0163db1-5b90-4d69-9b20-186a54570151","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bda36fa65e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=RSnWbo%2BBH6lITlSTojWLIjLmZ4Quu9mN19qJU3ASDDU5a1DXP65I%2BKCf2rs3Ss2ld%2Fm5SSLN%2BVZ206EQSy0duBV30RAPcX6%2FByBDWR8yrpvv%2FokzzBBolANb6jyA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6dfb21f0b41211ee808e1e2d12791016; Expires=Sun, 14-Jan-2029 01:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6dfb21f0b41211ee808e1e2d12791016b1236b7e0bd0ca37b04321e40d1f0b3ca3c866f9e545cb330a40b30a71a69a7e; Expires=Sun, 14-Jan-2029 01:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0e18a1c25fefeaf0f2596f0106d076032278fc0f-1705370174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FBW_t_yhxdEAt3Nohxv6sv4ajRvyJ99jjg1ouv1Du0w-1705370174374-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370175","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (915, 1, '8bcbd9fd-7472-4827-9efd-564a4bf7da75', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/102/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/102/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370174794513100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"8bcbd9fd-7472-4827-9efd-564a4bf7da75","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"8bcbd9fd-7472-4827-9efd-564a4bf7da75","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"8bcbd9fd-7472-4827-9efd-564a4bf7da75","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bda618a95e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Yob2G6gPUjSqO2%2BFKd2QjjyKUWobtPQ2waGftbAnxw5AcJra2uikW6TTBeiZ6sXtIAUaem3y%2FjIWb5aSdUZxj7TPjg%2BlLTVcZm3kaoZC2wTgsU%2BAUdZOI3ISRg0W\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6e377f10b41211eea08646547f05e5a0; Expires=Sun, 14-Jan-2029 01:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6e377f10b41211eea08646547f05e5a0bcae0b5f68f78b1f2259e5e5cdcd6a64e0c12c380f0c647d7e45b8eed9c976f5; Expires=Sun, 14-Jan-2029 01:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0e18a1c25fefeaf0f2596f0106d076032278fc0f-1705370174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=pFP1uIO0b5Ezqt7YHKxYK0n53PrZScDh9wX5HDi4cMg-1705370174771-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370175","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (763, 1, 'bfdf84fb-b8f6-42ed-b53e-e2d5e03d919a', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[c78cbba](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/c78cbbacb228029e2f7904edb91659aa06135be7) add fuc in send gmail - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/c78cbbacb228029e2f7904edb91659aa06135be7", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705030270978065300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"bfdf84fb-b8f6-42ed-b53e-e2d5e03d919a","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"bfdf84fb-b8f6-42ed-b53e-e2d5e03d919a","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"bfdf84fb-b8f6-42ed-b53e-e2d5e03d919a","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84425333fa8f5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 03:31:10 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=hCbzrVZo12pyHAcf%2BQM8eagzHIklkgGVEAaIBK4SQPq%2FW%2BrUsOds%2F9MP8B55BT8cm5zpu%2BppWJ9P0%2Bxzi6tTIxI7Ul3ESog3oDT4jn%2FOQbE7UxTWGodG30zMGq9U\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=07c178b8b0fb11eead25768d246128ae; Expires=Wed, 10-Jan-2029 03:31:10 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=07c178b8b0fb11eead25768d246128aedc37225eb39d321ffa1b3d661276fed29bbd731c3915b2f99f99fde5f82f4b65; Expires=Wed, 10-Jan-2029 03:31:10 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b39d08d7abda7de167c69e3e421c6064789d1e63-1705030270; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ikQjHv_ZpDXpOkD4Dq4sLl4b08xANfUejQ5OQ7uZ0DA-1705030270956-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705030271","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (867, 1, '056b9dc2-3492-4291-8fb1-5792be03eb3f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/106/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/106/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705311374439441600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"056b9dc2-3492-4291-8fb1-5792be03eb3f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"056b9dc2-3492-4291-8fb1-5792be03eb3f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"056b9dc2-3492-4291-8fb1-5792be03eb3f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d2217ceb95e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=6F1F8QwnUyq7WGydAjRIJnSIJPFhhEjVmvjel%2BthfvuofnCKXSRmv6a%2FpKRT0hQdZ2lBJaojuVUZzhyRSuHgaWEAtf5qPIBvSlqaJEbF3IOwWHJthFc7Dtn3n32Z\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=867941e6b38911eebfa746547f05e5a0; Expires=Sat, 13-Jan-2029 09:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=867941e6b38911eebfa746547f05e5a00d8284a29237ee62a11c1dda2f6e75f64a970cbf07b3be844612c8cf8bd9336e; Expires=Sat, 13-Jan-2029 09:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f590149157ae6f731c6d4be3f2660471148bad45-1705311374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=9qz3qbh6vFKZZ9B.ce3ne17EZQoP5yJA6KBU7LaNR8Q-1705311374415-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311375","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (869, 1, '90781d7c-cc28-443a-a0d5-0aa1bd9118f6', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/107/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/107/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705311375327504800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"90781d7c-cc28-443a-a0d5-0aa1bd9118f6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"90781d7c-cc28-443a-a0d5-0aa1bd9118f6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"90781d7c-cc28-443a-a0d5-0aa1bd9118f6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d221d39915e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=nPSMhmDSrYsoHdPs%2BZmpqtR5ChvrmXUfTwIhN85fdiykfZ5BuAwMCzmifSMknxMcaYg6ogbzj4eerbEfG%2B%2FJPdUZQjLIwgrXFhzyiVgDUje3N8wvrHxx%2BDSQ%2BwT8\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=86f9c082b38911ee9fc0ce3d12ff1fe5; Expires=Sat, 13-Jan-2029 09:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=86f9c082b38911ee9fc0ce3d12ff1fe54efc2bf057d9130cf188fedbba2451b3c078ee7a813333a8c0a40f651e9dd541; Expires=Sat, 13-Jan-2029 09:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=488811ceaf6a7bf46abc0dba827ee5335addf86b-1705311375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=bV9fXCeRMTsspP1fBlcmvFxNuDvOLMFJevCfIq1yF08-1705311375301-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311376","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (868, 1, 'edd061cc-8be2-4864-b554-df35c24d895c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/107/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/107/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705311374902147800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"edd061cc-8be2-4864-b554-df35c24d895c","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"edd061cc-8be2-4864-b554-df35c24d895c","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"edd061cc-8be2-4864-b554-df35c24d895c","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d221a58275e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Zq6vxwLnNIM%2F%2FnhUWg9C%2F1G1ojYheE9kXn6tUCezgbFfu39DU6lF3zv89f7snhzc3j3vDy3g6WTdWPz9PiFzhwdbMMAXkqzDqAZvuvpnWqorKvokihTbDLqXZy7s\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=86bfe204b38911ee97c85619581d3564; Expires=Sat, 13-Jan-2029 09:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=86bfe204b38911ee97c85619581d3564541123d610f7dc338376f2c587cb783903ed33396fd72352e6ab076c8514768c; Expires=Sat, 13-Jan-2029 09:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f590149157ae6f731c6d4be3f2660471148bad45-1705311374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=8GHyRmovZ8cTp5r81x67gdEIbRqrSuBYcKUTLPqZkMw-1705311374877-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311376","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (870, 1, 'c34c74f5-07cc-4db5-89fe-3c23522afe1d', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #92 add full action", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705311412208786900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c34c74f5-07cc-4db5-89fe-3c23522afe1d","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"c34c74f5-07cc-4db5-89fe-3c23522afe1d","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"c34c74f5-07cc-4db5-89fe-3c23522afe1d","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d23030adf5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:52 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ZpYd8d2ACKWwtKcIsfw5h3Hf%2FP%2B78CoUPfo2RQXJiJbI5Ko%2FlH46hQJJVhddtcWxt3JuX0Frk7okYjHB%2BFrs81M2cYrdw%2Ba0Eco%2BmmuzwUbcmET5nAMoSxjJp%2FHo\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=9cfc5f70b38911eea1f0ea1b2870da27; Expires=Sat, 13-Jan-2029 09:36:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=9cfc5f70b38911eea1f0ea1b2870da27e39a185fcf4dc58fa24a69f79ec1fafb5c62a6bd9b16d1b175efd048de09b33e; Expires=Sat, 13-Jan-2029 09:36:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b4c426505c73add57cd10a5b3a87311e4743bc84-1705311412; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=bJ53LnwJ3FFAy4gQkuL3u_wtDmoeE9dtp0_7NJ8N58E-1705311412184-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311413","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (871, 1, '7ab93d6d-e967-4257-8427-b6733d12d1fe', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[9b29db6](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/9b29db610b20afcdaeec0f83db697b5c93ff5abf) Merge pull request ''add full action'' (#92) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/92 - hungthinhne\n[5562d28](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/5562d2823f0ace47c1fca2f8fe994e65241e8bea) add full action - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/7b0e4a3aa34a91347178a93361fc9e193abd595d...9b29db610b20afcdaeec0f83db697b5c93ff5abf", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705311412671059000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7ab93d6d-e967-4257-8427-b6733d12d1fe","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"7ab93d6d-e967-4257-8427-b6733d12d1fe","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"7ab93d6d-e967-4257-8427-b6733d12d1fe","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d23065cb35e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:36:52 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=X6o1Vy4SQSJcVt1APBFp%2FzOp6a7ZKdD01uXYoY1%2FMZTrm7lJmxuScb6%2F2wMDCFfyNayB5h9lCtJogfP1VAYAZR6%2F8NNFkdyHstizTP9P%2Fudl5Xb8onneJE0hLJ21\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=9d42dea0b38911eea8e8fa445db29513; Expires=Sat, 13-Jan-2029 09:36:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=9d42dea0b38911eea8e8fa445db295134aed18e851081363468403d9df3c60a03292d57246a0ad2055504e2cf8108a79; Expires=Sat, 13-Jan-2029 09:36:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b4c426505c73add57cd10a5b3a87311e4743bc84-1705311412; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=cGDKKpvvo3Yab.71ka6bZ3ni5afYXT32vBgWN9oudHo-1705311412646-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311413","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (919, 1, 'f6c0b5f7-d9ef-45b1-a150-789ac2c1249d', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/96/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/96/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370176405832800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f6c0b5f7-d9ef-45b1-a150-789ac2c1249d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f6c0b5f7-d9ef-45b1-a150-789ac2c1249d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f6c0b5f7-d9ef-45b1-a150-789ac2c1249d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdb04c485e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5G7a60m2qYNrb2lsuAJUIpgVaE%2FAPZJxwtS8SKcfBp3nm0kwErb%2BKfd0c9ztevf%2Fo2kk8T%2B3a0iy%2BjO6kPIcFi%2BgW5oWfI6FhKc0nJLi%2F0RrO5890J4oCoa%2BCGdc\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6f2ce888b41211ee88bafa3ef0f9c788; Expires=Sun, 14-Jan-2029 01:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6f2ce888b41211ee88bafa3ef0f9c78806d584bea0b7f5cd673c2eb3f6941fc7e81ab27a005a851c44398a5e05aea567; Expires=Sun, 14-Jan-2029 01:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5ad7e984a110d86f31ba6b463c5faa38019dc679-1705370176; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=WjSF17F.hDsW17aNbTpjraQ5cvqL825gRDO4ugvSm6U-1705370176383-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705370177","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (875, 1, 'e9a1002a-0a71-4730-befc-417346421b0d', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[5b4556a](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/5b4556aaf08d874c598d4e9213153ede266d695d) Merge pull request ''fix bug'' (#93) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93 - hungthinhne\n[489a7a7](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/489a7a7fdc58d8144acd13c4cd58f66912cb341c) fix bug - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/9b29db610b20afcdaeec0f83db697b5c93ff5abf...5b4556aaf08d874c598d4e9213153ede266d695d", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705312014552912300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e9a1002a-0a71-4730-befc-417346421b0d","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"e9a1002a-0a71-4730-befc-417346421b0d","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"e9a1002a-0a71-4730-befc-417346421b0d","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d31b8aa045e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:46:54 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bkiWvU2XSUlMOdzmZ0E00dmpdeHsDLzic7S7Bi0o5TnDHPlftkPbbScAfOdq%2FfZ%2BAXX8fKFrLqxLiQQr%2Fl4alL5MTB6bT9EJc0%2FrioaBt%2F6itbbV1G4ypKEjuWlQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=0402aa70b38b11ee9730deb1b7e0c94e; Expires=Sat, 13-Jan-2029 09:46:54 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=0402aa70b38b11ee9730deb1b7e0c94e0236ffcfbdc2386141ec38bf3e74faae10d3f80825fc48c579a2575c4ea21a37; Expires=Sat, 13-Jan-2029 09:46:54 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d30be13d9cf5f06fc5abc64030aaa2d68466d19c-1705312014; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Lz3FpUJHbVFnHLtGdS1F4KyS2FddmmuONpPPD8H9njU-1705312014527-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705312015","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (764, 1, 'd2ed7b2d-d0ab-4d46-a3de-016b25a61291', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #85 add fuc in send gmail", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705030727761869700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d2ed7b2d-d0ab-4d46-a3de-016b25a61291","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"d2ed7b2d-d0ab-4d46-a3de-016b25a61291","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"d2ed7b2d-d0ab-4d46-a3de-016b25a61291","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84425e5e4a495e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 03:38:47 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=HbKRBsqu97hZVxxL9gR6ODN188rLVpmHngQdP4qsVIlpMOlmDWpy2%2FFCsN6uG%2BDwyR3mQPsZN%2FBscbhZbpSLkZfDUuD2RnvcF7hEa7%2FiFcP25WiuDlJPGNZDYWIc\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=180558bab0fc11ee879fa2c9bd3edab6; Expires=Wed, 10-Jan-2029 03:38:47 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=180558bab0fc11ee879fa2c9bd3edab663ae1ced4baf355a9661b80c836891c5c47f6bce84931fe8b1fc2f5de7e97cdf; Expires=Wed, 10-Jan-2029 03:38:47 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=72e1a91ef5334767c77311b5052b14c826fbba6d-1705030727; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Ejb2AkkxJvtCNy3jdxscbjP5XdW9hwTIYFnveK.qatA-1705030727742-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705030728","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (872, 1, 'acc32a4b-2d2d-4de4-90a4-3a69f3ddaddf', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[489a7a7](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/489a7a7fdc58d8144acd13c4cd58f66912cb341c) fix bug - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/489a7a7fdc58d8144acd13c4cd58f66912cb341c", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705311889573808200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"acc32a4b-2d2d-4de4-90a4-3a69f3ddaddf","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"acc32a4b-2d2d-4de4-90a4-3a69f3ddaddf","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"acc32a4b-2d2d-4de4-90a4-3a69f3ddaddf","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d2eab4daa5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:44:49 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=QSpUPpRCZ5xdhGfpNNqww%2FGl9VAUsXARVXdVkQ3KMZEDIsj%2Bw19ZgbjUvSafxQ%2B7RIThvQHLpeON3AeTjFsbHYN7JA%2B1%2F2e1iHRdzrZhxw0lOHPB5r%2FDnLVnkJsP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b983e6d0b38a11ee9c8446d3f7970317; Expires=Sat, 13-Jan-2029 09:44:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b983e6d0b38a11ee9c8446d3f79703178edbdae6f83a79780ec699449a32c42f56052906e21691d3b70be8e789f4fb69; Expires=Sat, 13-Jan-2029 09:44:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e612d4c7c6330ea760ca9febad1e3100d7221faa-1705311889; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=12_okTRkZvU0nvXCVqYtZyoodYiiTHS_b8HkOMxD2uA-1705311889546-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311890","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (799, 1, '9572ba5b-3e71-40b0-aab1-6fc1112d6da0', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/admin] tag refs/merge-requests/3/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/admin/src/refs/merge-requests/3/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705076174421839500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9572ba5b-3e71-40b0-aab1-6fc1112d6da0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9572ba5b-3e71-40b0-aab1-6fc1112d6da0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9572ba5b-3e71-40b0-aab1-6fc1112d6da0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8446b3e7c8a45e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 16:16:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=UsPxabaQLpLQHIWXTXAddUQhwyftKVkpgo%2FwAqbYOeslDVJG9WsbWE2rzPSwtGT6s3xvmneLhYN%2BhLmbTJyAMYgcx97GskvjuCfA2IA4MBsg8S4VnL585YJv5uki\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e856ba90b16511eea251f60d09edbba6; Expires=Wed, 10-Jan-2029 16:16:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e856ba90b16511eea251f60d09edbba63fb5ec637db3dc885628568c435942f82ff75beae4f9eea8206a439e2c0f74d7; Expires=Wed, 10-Jan-2029 16:16:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cc82c848489849ff2b3083958f85be4c924b843c-1705076174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5Fq65ECiirjt7iOZ2CcXC.4lNnlmgDfdVia8d89g26Y-1705076174397-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705076175","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (873, 1, '42019104-7aac-4909-b113-4963a09095bb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #93 fix bug", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705311946576001000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"42019104-7aac-4909-b113-4963a09095bb","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"42019104-7aac-4909-b113-4963a09095bb","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"42019104-7aac-4909-b113-4963a09095bb","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d30100b0f5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:45:46 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fk3wbugdstvcyrok8S1jGz8S9M%2BDMx2UVzmj9NWweeubh15%2BUGi7iMYFVrRh4z%2BY7zs0bS2qCtWk2jmvLwqyPSz4W2Fsxiu%2BIg%2B%2FxTYc0Hff9Hvx2RMhSwDEMFFt\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=db7e3268b38a11eea8c03e914bfcdb9e; Expires=Sat, 13-Jan-2029 09:45:46 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=db7e3268b38a11eea8c03e914bfcdb9e2ba2c93a19d4ffc01df919140d0e3d11e55069953eb074e600023bd6ab28a35f; Expires=Sat, 13-Jan-2029 09:45:46 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4de56c38056f6dfe996653a694b43eb466e088df-1705311946; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=PCeLDoKFK8qLhYpZSfJ6JA6.RLtUI0Aaoz.G45bX6VA-1705311946550-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705311947","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (922, 1, 'c2dd650e-5472-48e5-8b18-d60f24e64403', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/97/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/97/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705370177715891700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c2dd650e-5472-48e5-8b18-d60f24e64403","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c2dd650e-5472-48e5-8b18-d60f24e64403","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c2dd650e-5472-48e5-8b18-d60f24e64403","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8462bdb87fdd5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 01:56:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=zz1BikBBH824RA79%2BRxKWdRkF00yC64vloW1f%2BOjrIV4v5DBBy%2BvXJTyvt5aJ1yLqTvNVvAoim8nqmtczgW9J2esgHzGKeG8zWkuJUFWIHkWz5FwbA%2Fjawu%2FWc9v\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6ff551bab41211ee8a4c2a9498a7652f; Expires=Sun, 14-Jan-2029 01:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6ff551bab41211ee8a4c2a9498a7652f80c9e16e8284e98b8603448263796c3d39711f8c30741314567b22b6794dad8f; Expires=Sun, 14-Jan-2029 01:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=c4877b22ea882bff27687245eb767429efa8e202-1705370177; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=c7sGY39QWA.PmAa3JKAd.qQeoKLThBhcQ6MhXxZuDvY-1705370177693-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705370178","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1137, 1, '76466acc-b229-4f35-9705-59d0537f0af8', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[8fd1ec8](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8fd1ec8092107d71cd610bc15090a66132b89ce0) update phan quyen + filter - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8fd1ec8092107d71cd610bc15090a66132b89ce0", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705630950656409100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"76466acc-b229-4f35-9705-59d0537f0af8","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"76466acc-b229-4f35-9705-59d0537f0af8","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"76466acc-b229-4f35-9705-59d0537f0af8","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847b9c3e09cc5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 02:22:30 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=3pSPPN3W2pFqFCmFcJdIc9jmMTUggCEuKgVKc2BnJUx81CAtgW5z6y6VsDiJhaJa2Mar0%2Bx14fIiS%2FS7eP5dbpfAcLzAug2DfXScbPYjfrFZH%2B%2BRIDtPazLHmzvk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=98bf20e2b67111ee90a8128d374b524d; Expires=Wed, 17-Jan-2029 02:22:30 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=98bf20e2b67111ee90a8128d374b524d1c4349833a5be6340e1421dc6eeaf3ca95b103dae78014f146a81eefafebdd3b; Expires=Wed, 17-Jan-2029 02:22:30 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=afcbeec954d0f58f76ac47e21cd5590c9bef3e1c-1705630950; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=QHWBgsN7OtQYCASMCHZBXTbOJ2bvLs.WRV7_5qiqQQo-1705630950641-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705630951","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (800, 1, 'bf049c40-98b5-43ad-9367-d287c42ac02d', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/admin] tag refs/merge-requests/3/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/admin/src/refs/merge-requests/3/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705076174856792300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"bf049c40-98b5-43ad-9367-d287c42ac02d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"bf049c40-98b5-43ad-9367-d287c42ac02d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"bf049c40-98b5-43ad-9367-d287c42ac02d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8446b3ea49425e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 16:16:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2FXTa2N7sKxhGzMnIto9b10vWUW8aOgTWfI%2BNwBFoxhjY6vZeVFQKv6U%2BADygo3Rszlu%2B1yOenPrawSYD3RFJEaH6Wwph2DW5TJy6gXrAo%2FedrDdUNJAqOqeTMrEX\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e8990684b16511eeae839a565f60d1d1; Expires=Wed, 10-Jan-2029 16:16:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e8990684b16511eeae839a565f60d1d1ce568898a3e0b576c72d488e6389fbbf7ae7f9df457f717a77d4985ac5ccb2ee; Expires=Wed, 10-Jan-2029 16:16:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cc82c848489849ff2b3083958f85be4c924b843c-1705076174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jxDsF9yqWnODqVd472zwsLJ1e6gNy33lNw220bx4Y1c-1705076174832-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705076176","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (765, 1, '39e6ffa7-8e6c-43dd-b4ba-33d5c616e54a', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #85 add fuc in send gmail", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705030760879798000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"39e6ffa7-8e6c-43dd-b4ba-33d5c616e54a","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"39e6ffa7-8e6c-43dd-b4ba-33d5c616e54a","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"39e6ffa7-8e6c-43dd-b4ba-33d5c616e54a","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84425f2cd82e5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 03:39:20 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DJ2p2Vo65RdQU3LfuJEcRWIGR5kaTrJVTBSRJzeGeDkOi7Pe1sAuL43FWLZ3%2FGeJbo6xtV6p0SeRbw6uE%2BFEaK0c4LAWPiEfSw74LyfjrVNk%2FIwTSXKskfMIPRve\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=2bc314b4b0fc11ee943f367b405f8641; Expires=Wed, 10-Jan-2029 03:39:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2bc314b4b0fc11ee943f367b405f86410ebc0d1253456eacfd7f69a37b08216e30f057a446e0869220c9cb6b08bbb77b; Expires=Wed, 10-Jan-2029 03:39:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=c4a63672b58b994fc64bdcd87a3e11cac04346ba-1705030760; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=.OvapUidcUDXP1w5YKy72bJ6n_bo12r2gLbHIGl2mzE-1705030760861-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705030762","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (766, 1, '6771ce9a-eaf9-4077-b1e4-be7fcdc72e50', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[6e16637](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/6e16637a65f7d4d092a3cdbdbd178eb1636964e1) Merge pull request ''add fuc in send gmail'' (#85) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/85 - hungthinhne\n[c78cbba](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/c78cbbacb228029e2f7904edb91659aa06135be7) add fuc in send gmail - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/d48e38d9a17ce739803e4e98d015c2fc443742ac...6e16637a65f7d4d092a3cdbdbd178eb1636964e1", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705030761249598300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6771ce9a-eaf9-4077-b1e4-be7fcdc72e50","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"6771ce9a-eaf9-4077-b1e4-be7fcdc72e50","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"6771ce9a-eaf9-4077-b1e4-be7fcdc72e50","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84425f2fa9285e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 03:39:21 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5vPN851qjGuSrEvl4LBPMVUv8k4ncuEQKRgmSJBSnbqT3HPiBYYzTMpN21qNho6NPcxZYcOTYQ37spuAmLjJk6mMcnSAmotcBW2cnH0pK4ZYb0DlPkt6HNA25tAr\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=2bfb6aeeb0fc11ee8f68deb0fb2add20; Expires=Wed, 10-Jan-2029 03:39:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2bfb6aeeb0fc11ee8f68deb0fb2add20ccd4cec35f2169c923d2fe8fa5487f4a29b67b3e5a81545171dbc3dba7b0a571; Expires=Wed, 10-Jan-2029 03:39:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=390a52dc7f8349f0b04da4be9373fda92ce535ea-1705030761; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=UnjDD1Q4ryNSUr4HVxGGwZM8yBmD.m6YOXYc.3tU8K0-1705030761231-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705030762","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (874, 1, '79b6113e-e099-4d82-9989-7a281a36b560', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #93 fix bug", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/93", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705312013802351800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"79b6113e-e099-4d82-9989-7a281a36b560","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"79b6113e-e099-4d82-9989-7a281a36b560","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"79b6113e-e099-4d82-9989-7a281a36b560","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d31b3e8555e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:46:53 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=IR4rfS0bwUt1usEkGNDoh9BHD4y9CHeTUmQHTsc254EPKfR%2FI7M8sxPA8UBQmNB%2BRgBAfrW1BlYFORs1V9kYpuhGoByYiWCwqYRQfOIN%2FpDUqgvYAJqOBEhbni4j\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=03902d88b38b11ee8bab7a04e244bb22; Expires=Sat, 13-Jan-2029 09:46:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=03902d88b38b11ee8bab7a04e244bb2299492991ed52a5f7fe44975f979d7c7b4b0db980d1680234eaa5a1589fab687c; Expires=Sat, 13-Jan-2029 09:46:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=53b1eff2216a33e00382a0dc3ac444ed232f1eae-1705312013; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zSBgoyIHJHR3VtN3pK1iCFaWbEDqRtVL5WlqVLEZX3k-1705312013777-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705312014","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (829, 1, '4ce8be71-2878-4fa9-a186-0ea679a273fa', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/116/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/116/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164377202399300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"4ce8be71-2878-4fa9-a186-0ea679a273fa","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"4ce8be71-2878-4fa9-a186-0ea679a273fa","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"4ce8be71-2878-4fa9-a186-0ea679a273fa","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d4adfcc5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=S26e84vhZGnyqg1mNZtUQAVI%2BAyKrFbIUldgFOHcC%2Byp0RnaSjr9eJXCPgpJzWy0BSAAFxpPZWk7%2F3Th%2FMHKnGlx1f%2F4l%2FSYuTUaKm9CV2eR5o9dqtq1aB2sOq5%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=454b1f20b23311eebb79daf1e1161cd9; Expires=Thu, 11-Jan-2029 16:46:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=454b1f20b23311eebb79daf1e1161cd95b52a43b5eb3395190010a14edfd3ce8cb5c078afcc30de367d628b1c0ccf31f; Expires=Thu, 11-Jan-2029 16:46:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=04dd2825eb088dcf1890fcdaffd362a27ce975dc-1705164377; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=VXF9FdeFEnut_.W.dUE.WZowyE4awk_Y3ldxjxSK0fY-1705164377186-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164378","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (830, 1, '5eefcf47-34d1-4fba-998a-1d749848a5a0', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/117/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/117/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164377656867600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5eefcf47-34d1-4fba-998a-1d749848a5a0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5eefcf47-34d1-4fba-998a-1d749848a5a0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5eefcf47-34d1-4fba-998a-1d749848a5a0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d4da8645e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=G4mJM3Tn2KNpL6%2BkhXcQmdMRGLIuTqVhPBPxMM%2FRKKrmmy8t2P1PV2s6LftAlPQOqKRCpQ1kq6GQ0RYMNS93Txt%2Fmc%2FvYUf%2F4Wq9kW7SKDav01AreiZMc5oDw2ik\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=45918582b23311eebf511e7a71ddcda8; Expires=Thu, 11-Jan-2029 16:46:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=45918582b23311eebf511e7a71ddcda8708cfd9ac3470fc06e41037768b10327941a10549b8c4e4f086f9c2053f56747; Expires=Thu, 11-Jan-2029 16:46:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=04dd2825eb088dcf1890fcdaffd362a27ce975dc-1705164377; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=w8GQj55cKKkDvX60yhEDuos5lYszPbpY0f30XZLxTaM-1705164377641-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164378","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (831, 1, 'c2876eb1-3808-41f6-8746-481e3f8c175e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/117/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/117/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164378209281200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c2876eb1-3808-41f6-8746-481e3f8c175e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c2876eb1-3808-41f6-8746-481e3f8c175e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c2876eb1-3808-41f6-8746-481e3f8c175e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d5089175e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DuBtRxocr8myTUg3POgd7K0qRu2gA1HEE3rRc7EUjaIHdOtFOED8P%2BJFqw%2FbWXryRuEPtSqGpMCDPSvASWa27CfNXCwFL5kUWFQ2gwIwtgF6Mg%2FyZiYgmgVQFCcd\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=45e5e8c0b23311eeba2ef60d09edbba6; Expires=Thu, 11-Jan-2029 16:46:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=45e5e8c0b23311eeba2ef60d09edbba6750e47f49b8b11b5265a1e7afaf493b5d824c1d9a2778014f8d1d0d3607b25f7; Expires=Thu, 11-Jan-2029 16:46:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=60a89a735aaeccd09754b1f1de8e55819c59fa44-1705164378; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=2PX0pMotRFLqwPOaVDROLguy2n9.LzyQ0XfzdBplr0E-1705164378193-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705164379","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (767, 1, 'b128c739-7645-4910-8c33-6476da4eca56', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/backend:main] 1 new commit", "description": "[d2affd5](https://git.gdtsolutions.vn/khieu-nai/backend/commit/d2affd50bad1017bfbc9d6940c7b79c6b93e7380) update model - vu nguyen", "url": "https://git.gdtsolutions.vn/khieu-nai/backend/commit/d2affd50bad1017bfbc9d6940c7b79c6b93e7380", "color": 1754624, "footer": { "text": "" }, "author": { "name": "git_for_dev", "url": "https://git.gdtsolutions.vn/git_for_dev", "icon_url": "https://git.gdtsolutions.vn/avatars/009e520c8a20ee8d22d0087b59f6496f" }, "fields": null } ] }', 'push', true, 1705033071829513100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b128c739-7645-4910-8c33-6476da4eca56","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"b128c739-7645-4910-8c33-6476da4eca56","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"b128c739-7645-4910-8c33-6476da4eca56","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844297944a095e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 04:17:51 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AOL0G446RndgPa0mCjqhHHCcsMZPmnlfyYKr%2B1xwNorrkcjI6YOhs9oSXCgGOixWNSPw8TISQwy67Oi%2F4OOm6zmfjNfABHSdy1HW4%2FX6F6mF%2FEsMVeggMF53NPer\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8ccd9e46b10111ee8be5567d1d7731ed; Expires=Wed, 10-Jan-2029 04:17:51 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8ccd9e46b10111ee8be5567d1d7731ed74e2f5da54adb4b9c3cef0fc1898fc226a43d4fd7b1056a83d9badbca1677475; Expires=Wed, 10-Jan-2029 04:17:51 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d7aab6a19abcd85fedadaf130ea3e08e83af2edc-1705033071; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ptgmHN7iSvopb1L72fA5Ti2I923o7YuKjYKerLkfkyg-1705033071808-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705033072","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (802, 1, 'abbeb230-5f57-4a18-9d58-dd2c0bc93599', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/127/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/127/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705105572923272100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"abbeb230-5f57-4a18-9d58-dd2c0bc93599","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"abbeb230-5f57-4a18-9d58-dd2c0bc93599","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"abbeb230-5f57-4a18-9d58-dd2c0bc93599","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8449819e1f785e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=KXwf7ld1FKjw9i5YSnwwvQRI%2FcKbpx0tKkMad0LmMTUiXY2gEDCn%2FBtvweKwNj1%2FVGhuW7cxEffUo3PZVWef%2BynLykMFyo6YUykneYY0d%2Fpg4UTvFyGMkS4ABFhQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5b394692b1aa11ee947b4220e35d5d6f; Expires=Thu, 11-Jan-2029 00:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5b394692b1aa11ee947b4220e35d5d6f33a6a2054606fa2ea509781dd576281ab49e7f5383a35c8cced16c7786088790; Expires=Thu, 11-Jan-2029 00:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8fe29ba2d501d819f094ec6add3ede1942d073e7-1705105572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=TlGPp5VZ6Hg9rt7McOOs3EQmL9718EeRpRaA8bgPApE-1705105572920-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705105573","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (876, 1, 'b9662f12-245a-42d9-8a0c-81f28237f01a', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/backend:main] 1 new commit", "description": "[95bd4b8](https://git.gdtsolutions.vn/khieu-nai/backend/commit/95bd4b83164ae2833c3b2f81776fbcd20b064e24) update storage - vu nguyen", "url": "https://git.gdtsolutions.vn/khieu-nai/backend/commit/95bd4b83164ae2833c3b2f81776fbcd20b064e24", "color": 1754624, "footer": { "text": "" }, "author": { "name": "git_for_dev", "url": "https://git.gdtsolutions.vn/git_for_dev", "icon_url": "https://git.gdtsolutions.vn/avatars/009e520c8a20ee8d22d0087b59f6496f" }, "fields": null } ] }', 'push', true, 1705312436054190200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b9662f12-245a-42d9-8a0c-81f28237f01a","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"b9662f12-245a-42d9-8a0c-81f28237f01a","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"b9662f12-245a-42d9-8a0c-81f28237f01a","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d3c02a9925e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 09:53:56 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Nzx6bPlV01a%2Bro6ijB3XHe77U7T6PNOCZarLWFo8I%2FVXW5a4wstL2OMcp9z77VUmavt3v5dEza1b3NWtFlkQNIDGKYiZXDZ0Ge07iWpBwXYcPGNvLUjuqgczOTA5\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ff3a65d6b38b11ee849f9a3461edaed7; Expires=Sat, 13-Jan-2029 09:53:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ff3a65d6b38b11ee849f9a3461edaed7d329295403389c04e10cca7e91fdb59db12b18e9b7b7c73c4be3011169a668be; Expires=Sat, 13-Jan-2029 09:53:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0faa3b76e090b523f99c3842c3e65b021f6f1def-1705312436; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=QgrFaeycBvuzPpwHpf7XPT0UL5XFu0DYn_hI5Lk1Fbw-1705312436003-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705312437","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (927, 1, 'a5bfe149-83ce-420e-90c3-34553bfd528a', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/backend:main] 1 new commit", "description": "[15c3872](https://git.gdtsolutions.vn/khieu-nai/backend/commit/15c3872b78aea42ba7c35fade600ccae5b5b9806) update dm loai van ban - vu nguyen", "url": "https://git.gdtsolutions.vn/khieu-nai/backend/commit/15c3872b78aea42ba7c35fade600ccae5b5b9806", "color": 1754624, "footer": { "text": "" }, "author": { "name": "git_for_dev", "url": "https://git.gdtsolutions.vn/git_for_dev", "icon_url": "https://git.gdtsolutions.vn/avatars/009e520c8a20ee8d22d0087b59f6496f" }, "fields": null } ] }', 'push', true, 1705373967077827400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a5bfe149-83ce-420e-90c3-34553bfd528a","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"a5bfe149-83ce-420e-90c3-34553bfd528a","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"a5bfe149-83ce-420e-90c3-34553bfd528a","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84631a3bcfb95e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 02:59:27 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=j6kjKc4%2F7wLEbTPuKKZr2OTbLB8EZoS750Kize6LQ6fN8DlC2IArWgLIUjEJNzy5p45li47JBr6dXCIhmpfeNl2XA2etBhvOVBXF6bZYWqOJ7NwfcoJiPtEeBPDW\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=4296cf92b41b11eea4b296288be59e6e; Expires=Sun, 14-Jan-2029 02:59:26 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=4296cf92b41b11eea4b296288be59e6e66b8fabdab59fdfb93f0d67853c97688daf50767964b42d8b07e885654dd9616; Expires=Sun, 14-Jan-2029 02:59:26 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ed1fa31d8d005fc085e1a9100c60ab4b0f3555e2-1705373967; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=R5dmYez2XxIEnYKQyQ7Ze8zASIbMneua6dEm93UzHDE-1705373967051-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705373968","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (801, 1, 'ed9117d4-3903-4300-91e7-d16b47567605', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/127/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/127/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705105571482655300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ed9117d4-3903-4300-91e7-d16b47567605","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ed9117d4-3903-4300-91e7-d16b47567605","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ed9117d4-3903-4300-91e7-d16b47567605","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8449819aaf085e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=tssmAx3zyq7%2BNck1s1AjwGiLgqvtYPdi58hcM3Yb4jv4Gh8DAEaMEt0YRsfjYb2j%2Fibt3rhNoFNFpdOVIyILdbp4UkbfyyQhe7%2B9SuKzfLFo%2BAb9O7JtXGzrh3RC\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5a5d41d8b1aa11ee8b9752c1b981c921; Expires=Thu, 11-Jan-2029 00:26:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5a5d41d8b1aa11ee8b9752c1b981c921ea7d9bea8e79d1b953dd57e0ac93599243758d183ee9890583e8ca848e2481a0; Expires=Thu, 11-Jan-2029 00:26:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0d6c1a222625898780716e74f67b14204aacdbde-1705105571; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xY3hgwWEvucT6NTSJfuQGVLA3_bPCXRzHqxCCW9sB.s-1705105571478-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705105572","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (994, 1, '179ec727-0f11-48a3-9841-108b7b347e2e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/82/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/82/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458377962894500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"179ec727-0f11-48a3-9841-108b7b347e2e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"179ec727-0f11-48a3-9841-108b7b347e2e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"179ec727-0f11-48a3-9841-108b7b347e2e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b270c09b45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=D5pODG%2FtZ5hsQUYPMrhf5ox1pS6suQx5mopmlTOB9tlLPI9EYdvzIm%2FfJ3%2FoyeliH5SUCrhaZ671npkMOlezjjGLK2Hyxpd8SBksMLlNjxMW88qzMGiVXgQ3Kchk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cb668744b4df11eea1f9a2dbf69cb58b; Expires=Mon, 15-Jan-2029 02:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cb668744b4df11eea1f9a2dbf69cb58b5c6437bf06dee1a3115df79fe322e75e4c02c357140234f6a153bdcf1641fdc6; Expires=Mon, 15-Jan-2029 02:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=66e246971898b39cf1c1690abe9435991130522d-1705458377; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=duU9vt3SHsupY2OnG6aPQGgjt79g_mOzzyc52eNmSP0-1705458377939-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705458380","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (803, 1, '64ff4e2e-22bf-44d6-84da-b75498af85f9', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/128/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/128/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705105573404640400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"64ff4e2e-22bf-44d6-84da-b75498af85f9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"64ff4e2e-22bf-44d6-84da-b75498af85f9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"64ff4e2e-22bf-44d6-84da-b75498af85f9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981a709215e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fsQuXNiIc3%2BVAVzj5Z003N9rcNeq9WQ5fyvBBM%2B%2BhSUyGyog3gP6%2FOoFaz%2B6u%2Fhppwkp6nIHQHjz%2B6av%2FODyASLuy79wJCuXK6lbHeOcJA%2Fksc6jfD6zKzUpgQ2J\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5b82af12b1aa11eebb3552c1b981c921; Expires=Thu, 11-Jan-2029 00:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5b82af12b1aa11eebb3552c1b981c921d69de0387e880054ccae2d42b15651d1e6440850247d84d43b0ae6f17f196332; Expires=Thu, 11-Jan-2029 00:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=40494552aff1b23ad6ba7715e1887ba37f206461-1705105573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=pt37vgsoIlAxOXwU1uNn4lhz_jVG0t.OYBtmf9k2fXs-1705105573401-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705105574","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (877, 1, 'cc8b5107-249f-4d34-b08e-3399fa4d007c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[7b2383b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7b2383b817c645ebfa98deeb3863743633d3deae) fix bug - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7b2383b817c645ebfa98deeb3863743633d3deae", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705312887601708200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"cc8b5107-249f-4d34-b08e-3399fa4d007c","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"cc8b5107-249f-4d34-b08e-3399fa4d007c","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"cc8b5107-249f-4d34-b08e-3399fa4d007c","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d4707fbff5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 10:01:27 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=hwutNjcNcB1BbTY16sxMymJe3VULj1JS62U%2FITDcNypDlzMzWnhNqDS%2BweYnTUH4oz2lOJd65IRJIlv1dcIZrMmEAya%2Ba0S%2Bd7qKQW4QVfml5XIe768AD%2BfeeVVQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=0c635898b38d11eeb5f98a01b54beb88; Expires=Sat, 13-Jan-2029 10:01:27 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=0c635898b38d11eeb5f98a01b54beb881be718d6e50f04a3544115f7cd71497acd3aba01667ee56ad214c4bf3246e2b8; Expires=Sat, 13-Jan-2029 10:01:27 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4380f72c7c7cf7bf22d29d66c12b1962b21e18df-1705312887; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=GwUjLyGcqYZkVxMwFWI2bRHVHovYXj6ZS3tl7kkxZXc-1705312887576-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705312888","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (878, 1, '1dd89cf6-c487-414b-b459-c987fdd63230', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #94 fix bug", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705312954496528600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1dd89cf6-c487-414b-b459-c987fdd63230","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"1dd89cf6-c487-414b-b459-c987fdd63230","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"1dd89cf6-c487-414b-b459-c987fdd63230","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d48aafe275e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 10:02:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=VI6kgoNcLMxwFDFHucfuha2fqJen6Pel5Op%2Fe%2FJi14ncOFDyiveeNrWMrwLLozgArIJ7PKBtSP6pYavmgWGvYiN8vl1JxZwF%2FIElZFMMDyfnmiQYhlPMfYzyALic\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3442ae86b38d11ee80b32aefc8414a83; Expires=Sat, 13-Jan-2029 10:02:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3442ae86b38d11ee80b32aefc8414a83e576e14f98e332927e0b8c3ff677758b4255d844ecab29d47d04a02271a2bc42; Expires=Sat, 13-Jan-2029 10:02:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=84f1a92ebb45f1f87320fc11a6ece52cd8013193-1705312954; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ihgopxQAyaCBQDJsbFtD6HDGr2niKaMEvhPmmZ4z140-1705312954471-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705312955","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (881, 1, '579ebfa0-2861-473c-808c-b648d1ddaf62', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[8f60ed3](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9) fix giao dien - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705320553589560000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"579ebfa0-2861-473c-808c-b648d1ddaf62","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"579ebfa0-2861-473c-808c-b648d1ddaf62","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"579ebfa0-2861-473c-808c-b648d1ddaf62","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e022fca745e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:09:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ALTMEPAuTphzABjYij6nQPFAKANU4%2B3Vyg9xcqB6Wt0b3%2BdDd5Ee6VwQpFT80djtZfsMhxW%2BR6B9LhhQs7TOKDj1PVg4cbmbCle%2BnBApPRPgE5fyyr0OdKvxON4y\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e5a8b81cb39e11ee985ea66ccfd9e42d; Expires=Sat, 13-Jan-2029 12:09:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e5a8b81cb39e11ee985ea66ccfd9e42dd9496082aedf58e7310382a70adf5b16fc8d4425c27a48375b9b157f1cafabf1; Expires=Sat, 13-Jan-2029 12:09:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cdfeb0e50928c66916bad85677d92ea36661a4c5-1705320553; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7zicpUvxyx.eyoN.kuw1a4OZw1z.VySOEVKxYe4PEUE-1705320553541-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705320554","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (928, 1, '3e829c8c-2daf-4301-8982-5aaf397d10d8', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/backend:main] 1 new commit", "description": "[f94cc2c](https://git.gdtsolutions.vn/khieu-nai/backend/commit/f94cc2c946b186f5829331077bc44f1b62c9901f) update s3 storage - vu nguyen", "url": "https://git.gdtsolutions.vn/khieu-nai/backend/commit/f94cc2c946b186f5829331077bc44f1b62c9901f", "color": 1754624, "footer": { "text": "" }, "author": { "name": "git_for_dev", "url": "https://git.gdtsolutions.vn/git_for_dev", "icon_url": "https://git.gdtsolutions.vn/avatars/009e520c8a20ee8d22d0087b59f6496f" }, "fields": null } ] }', 'push', true, 1705379209191903300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3e829c8c-2daf-4301-8982-5aaf397d10d8","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"3e829c8c-2daf-4301-8982-5aaf397d10d8","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"3e829c8c-2daf-4301-8982-5aaf397d10d8","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84639a33c9d45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 04:26:49 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Ma67TSFZ4HVD28HQcdKwhodPq1MHTyJlaG60CZwke%2Fog1ISWym%2FFFbQ9vVsgn3H5QtF9f%2FXxun3F9JmnF15khJOHUjiONURkGDP4s7J7M4TlL9wbChoeRc3f7BUc\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=77224b2cb42711ee9aa5cacdc54b0cd4; Expires=Sun, 14-Jan-2029 04:26:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=77224b2cb42711ee9aa5cacdc54b0cd4b8bebf7c83789bb4a1956a81bd8d5cf05524a48a30b9793cdf96b6a05878efaf; Expires=Sun, 14-Jan-2029 04:26:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=404be525aeb0c2fbf5ab5661b3598473d07943c0-1705379209; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5bmopRMmw6ExesA2BtLrQy.Qe4rh0aEGWGeqOFXljj0-1705379209167-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705379209","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1138, 1, '7bc61da7-67cd-4b3c-855b-0fcb638f32dd', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #112 update phan quyen + filter", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705631065634321200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7bc61da7-67cd-4b3c-855b-0fcb638f32dd","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"7bc61da7-67cd-4b3c-855b-0fcb638f32dd","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"7bc61da7-67cd-4b3c-855b-0fcb638f32dd","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847b9f0e29305e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 02:24:25 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=YztkTHNrCir1RQUuC9z2yxciF7kUCD6JMeS8IupxNUoMSaHS0FrpRhMds3OCLFYvrlxmrB3V5BDPleWATxHRJQAczX6LbjdX1C1zPd7u60ernI%2Bh1AIfOyfowWRL\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=dd47302eb67111ee9228ba6fc0595349; Expires=Wed, 17-Jan-2029 02:24:25 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=dd47302eb67111ee9228ba6fc059534924dbb867a34253a6af60bad1c4b2fe6629938a1f404d0042a0ea103a48e175d8; Expires=Wed, 17-Jan-2029 02:24:25 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8bbf15da2fc1629281789ac404a530f2ecf7461b-1705631065; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=f7F6nbQGCUPhPKLDBzwj01ZhdcwIozrXzxjUb0WY44Q-1705631065618-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705631066","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (879, 1, 'e511599a-aedd-4585-81cf-cf0e9b589613', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #94 fix bug", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705312969684902300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e511599a-aedd-4585-81cf-cf0e9b589613","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"e511599a-aedd-4585-81cf-cf0e9b589613","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"e511599a-aedd-4585-81cf-cf0e9b589613","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d4909cdbd5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 10:02:49 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MRFpVByY7BJ6ftHvteWKOG24TPyfiLJSrPRgq%2BzdK9tYTEOX1aQnkkUF%2FB5oCyV%2FGvZVkAp2QbirQnwQQoIQjoxtPkCU8x6KXusvzZkN7YS2Jbo%2Fv2epuEek5jxf\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3d4f8468b38d11eea653d6b969ef144a; Expires=Sat, 13-Jan-2029 10:02:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3d4f8468b38d11eea653d6b969ef144acd2405b69b5b126eda60ee1be5c2199ab54fe728875d12c7a9fc2038fc83a840; Expires=Sat, 13-Jan-2029 10:02:49 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=47ce31a59cf781d541ae86d24de0eda477c41686-1705312969; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=YX3XQZiGsxOKR6vRQCFN1m5LQmucT6geFs2Ztq5qAxA-1705312969654-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705312970","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (882, 1, '1103c89e-80b1-4100-8e28-753df48e676a', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #95 fix giao dien", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705320584380615700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1103c89e-80b1-4100-8e28-753df48e676a","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"1103c89e-80b1-4100-8e28-753df48e676a","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"1103c89e-80b1-4100-8e28-753df48e676a","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e02f1ef355e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:09:44 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2BIDFRjG4E6fhYaT5wR0v7hPct1tNbOtQgW0TdFY7rlaAL6EPhUA2nijTHK3O4zM%2Fiw4i0upsBUS2M7nHpUN%2B98o74WRLDuWgvJPiTr0nl7sy%2Fa0qLTTwWbNmk1TK\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f8034004b39e11ee9af5627f5ba0fa82; Expires=Sat, 13-Jan-2029 12:09:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f8034004b39e11ee9af5627f5ba0fa82563483ec51ae977e8b30415252883c7df5d7947283f42594d164d9e0ce99d99d; Expires=Sat, 13-Jan-2029 12:09:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3f91192fcb8d3544e1734c2a913691024dbbdf99-1705320584; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=cGBsK5F7KI8uNO1DcNAuOgX1XeVKhiRKbySojL7DLHk-1705320584333-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705320585","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (995, 1, '8f97f17d-11a5-478b-9cb6-65e5d7cc0538', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/83/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/83/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458378400856500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"8f97f17d-11a5-478b-9cb6-65e5d7cc0538","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"8f97f17d-11a5-478b-9cb6-65e5d7cc0538","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"8f97f17d-11a5-478b-9cb6-65e5d7cc0538","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b270e5a6b5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dbdtBf3p5xb3izabmwPtTf0eqYVstIuALqygDql5GLTaQQcMdMfC%2BCYvsVX5If6RMOu5sQqBiTA%2B7f5E2HJ2X6xw5A9DFb26IrbpkEGSYF62cnNOuZDYwcl35ONO\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cba94480b4df11ee96f6de9aa7554518; Expires=Mon, 15-Jan-2029 02:26:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cba94480b4df11ee96f6de9aa75545186fe44104921e7c400384097d91ed268ffa21f352a36ff49251c09f582224e3fd; Expires=Mon, 15-Jan-2029 02:26:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=425322b008be8bfe4cb32c0a565fd591571781f6-1705458378; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=D8CLc.BJ47EmdtP.m6Yvj1HJDTVjwplOUO_XG7Xeo8g-1705458378377-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705458380","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (880, 1, '9c4b71ae-8e88-4b62-933e-64de58ab7c2c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[c1781de](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/c1781de2627ad32061687b7324e88a13d1040bb1) Merge pull request ''fix bug'' (#94) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/94 - hungthinhne\n[7b2383b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7b2383b817c645ebfa98deeb3863743633d3deae) fix bug - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/5b4556aaf08d874c598d4e9213153ede266d695d...c1781de2627ad32061687b7324e88a13d1040bb1", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705312970438039300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9c4b71ae-8e88-4b62-933e-64de58ab7c2c","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"9c4b71ae-8e88-4b62-933e-64de58ab7c2c","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"9c4b71ae-8e88-4b62-933e-64de58ab7c2c","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845d490e6f1c5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 10:02:50 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=9L4kH5Q3nVVcE3wbWkw8urZzSq27EPpPyQraXm%2F0jYy2CYX9LkVCk20fLuKiDIGzdbn5wOOSuNfW2gQl8xOuA4o0u0IfDec7U14FUZuZIw0pd52wNW9mFbRBD%2BRH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3dc31b1cb38d11eeaefd5619581d3564; Expires=Sat, 13-Jan-2029 10:02:50 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3dc31b1cb38d11eeaefd5619581d35646ff12111f6b7086c7a00055eb475877e674004c6780fe3f6a997beabe894c8cc; Expires=Sat, 13-Jan-2029 10:02:50 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=9b562b5b2b620e15c5352367be57a5125a15f2f9-1705312970; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=6Z1v11bwBUDgl6BoWelMdcMKNsMkEelK55vzdiJhTrA-1705312970412-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705312971","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1019, 1, '689526fe-7463-498c-89b6-ccb8f1a97a07', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/admin:main] 2 new commits", "description": "[b318e95](https://git.gdtsolutions.vn/khieu-nai/admin/commit/b318e95abca38bb86e087afc220a10355787887d) Merge branch ''main'' of https://git.gdtsolutions.vn/Khieu-nai/admin - vantuan\n[8145a6f](https://git.gdtsolutions.vn/khieu-nai/admin/commit/8145a6f0faa5e37075398a1f8f8ba4a0e6e9aa3b) fix: custom size - vantuan", "url": "https://git.gdtsolutions.vn/khieu-nai/admin/compare/b8d0d925b42d717dd3206442113f99e827a2ff0f...b318e95abca38bb86e087afc220a10355787887d", "color": 1754624, "footer": { "text": "" }, "author": { "name": "tuan", "url": "https://git.gdtsolutions.vn/tuan", "icon_url": "https://git.gdtsolutions.vn/avatars/ef8cb8091e07736d503797a3fd007bb52d58ce27f461213703866d303da8e9a0" }, "fields": null } ] }', 'push', true, 1705485460975227900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"689526fe-7463-498c-89b6-ccb8f1a97a07","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"689526fe-7463-498c-89b6-ccb8f1a97a07","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"689526fe-7463-498c-89b6-ccb8f1a97a07","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846dbc3fab1b5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 09:57:40 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2F%2FVdVtzjD%2BbhinSjF%2FOjEbW9QgdF5alsxGRbqktBQiZeirF61NzAlAtbqSGK56c2LTU5JzORVYUm3iDqkO9NnXMDQZOoze2VQkjU8cP2uwFjqV79blWe2uIYtxnA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=da20df8eb51e11eea2033a6fd8d37444; Expires=Mon, 15-Jan-2029 09:57:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=da20df8eb51e11eea2033a6fd8d374445a16a1845aba213b4b094360b01ff17674f1b22c04feec88cbebb7cf02ce35d2; Expires=Mon, 15-Jan-2029 09:57:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b7e35eb9df24022970ef9d0029be50b0c0b4c4b9-1705485460; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=LYcJ1YpwYLgnq1wjS.eBt.yRmzKmvVVkcjiaolP4kdU-1705485460954-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705485461","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (804, 1, '81fa37e8-4d0d-4c4d-a385-8a9a910dfb1b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/128/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/128/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705105573818986500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"81fa37e8-4d0d-4c4d-a385-8a9a910dfb1b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"81fa37e8-4d0d-4c4d-a385-8a9a910dfb1b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"81fa37e8-4d0d-4c4d-a385-8a9a910dfb1b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981aa19ab5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rTm%2FOaJFS9srLJfvZYL8%2FRQKrfUcLZ7F2tan703cV36MW7tf9JPnqCHWYf%2F2IdcLRdBwsgUExu%2BS3gowVgn1sianNmd%2BPiVG8voj9x3Iy1fmaFI%2FebZ4Wim7wlXA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5bc1fb4ab1aa11ee98ea323056eea780; Expires=Thu, 11-Jan-2029 00:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5bc1fb4ab1aa11ee98ea323056eea78066a3b08bca4b208d5c9e02919e3744aec5d887d147c874a434694afb1f9f5f2f; Expires=Thu, 11-Jan-2029 00:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=40494552aff1b23ad6ba7715e1887ba37f206461-1705105573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=WjQTOXTBXvyPsZdTUkQc2JXzrhU16LEE8A6O3heXL0M-1705105573816-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705105575","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (929, 1, 'c457c077-09fc-48c8-b0cc-07c3a775fb3f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/backend:main] 2 new commits", "description": "[3740205](https://git.gdtsolutions.vn/khieu-nai/backend/commit/374020590f53026b266de0bc639429e3a2498848) Merge branch ''main'' of https://git.gdtsolutions.vn/khieu-nai/backend - lqdat\n[43d70a0](https://git.gdtsolutions.vn/khieu-nai/backend/commit/43d70a01865c5a858fa2f42d805564efa8be978d) them template - lqdat", "url": "https://git.gdtsolutions.vn/khieu-nai/backend/compare/f94cc2c946b186f5829331077bc44f1b62c9901f...374020590f53026b266de0bc639429e3a2498848", "color": 1754624, "footer": { "text": "" }, "author": { "name": "lqdat", "url": "https://git.gdtsolutions.vn/lqdat", "icon_url": "https://git.gdtsolutions.vn/avatars/887f94f8c1ddc165ff3f51dd5e1691f71fd981dc5d0a182f7e97ce6070501322" }, "fields": null } ] }', 'push', true, 1705388192336174500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c457c077-09fc-48c8-b0cc-07c3a775fb3f","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"c457c077-09fc-48c8-b0cc-07c3a775fb3f","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"c457c077-09fc-48c8-b0cc-07c3a775fb3f","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846475862e2b5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 06:56:32 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=lns9DEzZZ45c8nJW1puDjqPJOKhUQW0oIU74sbQjpU3NpENsdE707d%2B5DrnMiNBVCJiOQOEu8T14SnzlNJCMkcOraaW26ZBFb5YwUsuKzzMgizzqoeCt0%2Fv6wvQs\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=617e8b40b43c11eea0dfa2f2ff32aaa9; Expires=Sun, 14-Jan-2029 06:56:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=617e8b40b43c11eea0dfa2f2ff32aaa9a9cbf408702c033e4c54914719816a19e977b6930e49b71451171f51a0be1ce0; Expires=Sun, 14-Jan-2029 06:56:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f03a573a179fa07afa8432715b4b6aa8541558a4-1705388192; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=lzjebGivvq35rtgXPIaTVsrrxmGE.WaE1LnBDTHOeoI-1705388192313-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705388193","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (932, 1, '54d7b13d-a823-4b24-b893-05225b020d96', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #100 fix datatable", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705389627953721800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"54d7b13d-a823-4b24-b893-05225b020d96","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"54d7b13d-a823-4b24-b893-05225b020d96","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"54d7b13d-a823-4b24-b893-05225b020d96","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846498947bf15e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 07:20:27 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1NC%2F9fhk6EUucFVS4NOe694%2BTtTxk3duRTdFzj0rO3X0Itnww2WTb2Hu104HI1W9TA1jGCyQt%2FfvI8v5uOqWjXCd4qbPI8YYNTU3dY5fLDx%2B11GTON%2Bq7NbEbxYX\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b933e580b43f11eeb1c0dec40f2a0279; Expires=Sun, 14-Jan-2029 07:20:27 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b933e580b43f11eeb1c0dec40f2a02793d0befa2ff794c15c8839c3049fb931cee6f7a62ab4436b4f06f29e95366cffc; Expires=Sun, 14-Jan-2029 07:20:27 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8b60fa09566ddbdf784f5c5e6e490dcda3b97c8e-1705389627; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=lrT07wT_40LFW.KZz28HHiGa9eN5U1NtsaOth3.LAzk-1705389627931-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705389629","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1113, 1, '074e35e1-4c1f-46d8-84bb-bd53a20bd117', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/46/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/46/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575519426853700, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"074e35e1-4c1f-46d8-84bb-bd53a20bd117","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"074e35e1-4c1f-46d8-84bb-bd53a20bd117","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"074e35e1-4c1f-46d8-84bb-bd53a20bd117","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652f2786b5e38-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=X0UilPzWCAc%2Fse2ALQUfaxUx%2F%2FONZ30iWEnFUkyjdvNT2qjB0%2FloFWEH5fnag9%2FI%2Bk%2Bq2X%2BYYK2XKlgd%2FD%2BknSd4rEIRDUenL4OrBxgv8xnX3wI1ne%2FkvQd%2BoyhF\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2267","Server":"cloudflare","Set-Cookie":"__dcfduid=89261126b5f011eea17ebe8ae9f11b6d; Expires=Tue, 16-Jan-2029 10:58:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=89261126b5f011eea17ebe8ae9f11b6df83489bc142d25f0e58357dffda4fbd0e570ec2e812ffad7ba075373a3677843; Expires=Tue, 16-Jan-2029 10:58:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5b611484b7450f44bd88935639e49cb7c04d7032-1705575519; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ZnWX5Z3aGRaoSsLG8k6M.Bazgcjt8dQoEApEzTCBgiY-1705575519393-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575522","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (883, 1, 'd8c288e8-c6c4-4183-8fe5-b0f125ba109b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #95 fix giao dien", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705320613535194400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d8c288e8-c6c4-4183-8fe5-b0f125ba109b","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"d8c288e8-c6c4-4183-8fe5-b0f125ba109b","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"d8c288e8-c6c4-4183-8fe5-b0f125ba109b","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e03a83f275e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:10:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7GHVXBn5JqtK34433Hvse8oBJKXJZ6X5myCk727Htva2EZ58HWkwJR5QjMgIhUlnG4k8jjbf3mVZxBCNWoHbS1bUFTQR4i%2BCTu6s157TECbHmzw18pmtdoJgTDMA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=096423eab39f11ee86c0e2de1b7ded09; Expires=Sat, 13-Jan-2029 12:10:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=096423eab39f11ee86c0e2de1b7ded09b390ac040f37c546df811fe175b2681a8d42cd481f53563620e7f67d08da6284; Expires=Sat, 13-Jan-2029 12:10:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5131a530eaa0c4ac9be1e77000e5b3803f1e1fc2-1705320613; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=CeEmlg2gzw.cmMiw4cGqiw45w2R9Oai47JOjdxKu5jw-1705320613489-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705320614","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (885, 1, 'b1c5e990-386e-40c1-8a76-3282b4654c24', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[da91d00](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/da91d00953fc86aef94866d081a1d25a46b94d02) fix loi - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/da91d00953fc86aef94866d081a1d25a46b94d02", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705321088998141900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b1c5e990-386e-40c1-8a76-3282b4654c24","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"b1c5e990-386e-40c1-8a76-3282b4654c24","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"b1c5e990-386e-40c1-8a76-3282b4654c24","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e0f43d9c45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:18:08 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WOie57MgzYONeIyfDaSSZElNoi%2FBA%2FkncSe9lXMjTCmNFiltUh3%2B%2F3Xi%2FHrtXfmQqBuHX0B4ZFtHV6SIZ1chfdkOqp5yevEHxzaayQWmqIPGdrYDn2gUjg5JEH4Z\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=24c9ae06b3a011ee83a4daf1e1161cd9; Expires=Sat, 13-Jan-2029 12:18:08 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=24c9ae06b3a011ee83a4daf1e1161cd909ee64a313dab15a464a58f7209b2deefda2d14c9e884cee98566fee0d83605e; Expires=Sat, 13-Jan-2029 12:18:08 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4bb553af1850874f81c381cbbb46ab376eeea87c-1705321088; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=9f7VA3QGYxfL7xjQIYQ0qPmrxia4E1mkiNgXkTqWYoc-1705321088950-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705321090","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (887, 1, '0927e2a3-aa1f-4e68-be20-77c899128f2c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #96 fix loi", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705321151240806700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0927e2a3-aa1f-4e68-be20-77c899128f2c","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"0927e2a3-aa1f-4e68-be20-77c899128f2c","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"0927e2a3-aa1f-4e68-be20-77c899128f2c","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e10c8c8665e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:19:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=I18RFupBtMv58Q%2BDtPO9%2FBU9aa%2FI1Qkudn6aOJm8gPgcHEYFfrafYfT54sxCMYJZvvuA7Vaj5rR%2FTsF%2BWECpJvzHXYIAfAzHLII5WYPQfh0ijJCZVzcThQ9GFuqi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=49e33b3ab3a011ee90baaaaf9c221465; Expires=Sat, 13-Jan-2029 12:19:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=49e33b3ab3a011ee90baaaaf9c221465ac6a1a811cae29722de8ca2d9bbc7d41211f1891423b4e36736175a427ca8700; Expires=Sat, 13-Jan-2029 12:19:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=670b552d6802ced930d73923a90e17acc09fca0d-1705321151; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=KLeQuU0MM1Vdf80jRNwbBNAwlT14yvAP39yFtHL6xNI-1705321151194-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705321152","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (930, 1, '0662d46f-2239-464f-8a18-7b11d23a2f06', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[b4fa710](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/b4fa71025f54e4fa94ba095169119fa40b06d27c) fix datatable - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/b4fa71025f54e4fa94ba095169119fa40b06d27c", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705389270212119800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0662d46f-2239-464f-8a18-7b11d23a2f06","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"0662d46f-2239-464f-8a18-7b11d23a2f06","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"0662d46f-2239-464f-8a18-7b11d23a2f06","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84648fd81d7f5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 07:14:30 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=oxcv34CC8ktG1ZgcHzJFBS5YIe0uHa2DxgoWnyIVpXCepIledYSUMJ0HZAo%2F5xPBBLkvCemXoXB%2FGLvqVlba9n8dWpnzbi6AOG7mmEF%2F0%2FxdGerthrz1JYVP2UdF\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e3f88740b43e11ee803fa277f8d54ed5; Expires=Sun, 14-Jan-2029 07:14:30 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e3f88740b43e11ee803fa277f8d54ed56c48b6355a628a4aa3d84b312ecc6dd1a253fc70366bfcd0450aeddd79f8464e; Expires=Sun, 14-Jan-2029 07:14:30 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3d2e14ecb636c201dcc7da20c022c065d056b0ba-1705389270; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=iRoPESKqv9UF5y8ssb9ZXUSuvmqoPajWJ05ziMNfRTc-1705389270189-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705389271","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (886, 1, '6343d851-358f-4cb2-8415-57a10178af4a', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #96 fix loi", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705321136118471500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6343d851-358f-4cb2-8415-57a10178af4a","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"6343d851-358f-4cb2-8415-57a10178af4a","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"6343d851-358f-4cb2-8415-57a10178af4a","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e106a1c995e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:18:56 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4nt%2F92Xn7QunXTT%2FSKNeANcFPkfeAsO%2F8WF3O14%2Br9%2FT00A2r1I9qrNrVuKUC41VKyr2%2Fycqk7mSr62koNNiS%2F9OF6UI%2Fwo6ZHGELA0N3CfMhGq%2F63VU9g%2Bgz1AC\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=40dfe3dab3a011ee87cba68d905ebfa4; Expires=Sat, 13-Jan-2029 12:18:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=40dfe3dab3a011ee87cba68d905ebfa487f28986e21bc4cebb98efec22e1567e37cfdaa84e9b0136329bf0c51dc0fe05; Expires=Sat, 13-Jan-2029 12:18:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4cea6203b075207374922032f9b665f4a0a75ec9-1705321136; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=QAHhwVf7CVinApOUR_EL8dhkQJ2UVq0Cbjv__8.2qBI-1705321136071-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705321137","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1139, 1, 'd7a8c68f-7c09-496d-94ff-0e677848f28f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #112 update phan quyen + filter", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705631136941317200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d7a8c68f-7c09-496d-94ff-0e677848f28f","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"d7a8c68f-7c09-496d-94ff-0e677848f28f","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"d7a8c68f-7c09-496d-94ff-0e677848f28f","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847ba0cb0b0a5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 02:25:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NKIAshj0BFYKkgoh3YUEcYupiYeefABxf7TeECxQNT2xEIj7VanlJm8JV4yKKff1r2ejXzvhm7BUyx2XWEHmSjZe5qsEWJnKZhT50amrJb6B2%2B3TL02G5UysrA71\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=07c80396b67211eeb2eaa6c69d53f7d5; Expires=Wed, 17-Jan-2029 02:25:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=07c80396b67211eeb2eaa6c69d53f7d5734a8e7ae5427c8855d7e038af29db3ce6bd8adec33f2626395330a4c4e539c1; Expires=Wed, 17-Jan-2029 02:25:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b39045803b95b31f8ad9e9aa58269a7e4bc123c4-1705631136; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jg8PLHHu1g_F6IcD2Gqw03NSEsXXeBnHC1dgMTin._Y-1705631136926-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705631138","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (996, 1, '74b411e1-e3b9-4931-b0e2-4ac16a312acd', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/83/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/83/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458378822998800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"74b411e1-e3b9-4931-b0e2-4ac16a312acd","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"74b411e1-e3b9-4931-b0e2-4ac16a312acd","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"74b411e1-e3b9-4931-b0e2-4ac16a312acd","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b27111b785e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=r9eQxiEijIexeXoO3tnRU3vrr9zBpMGUM1p1v8jwg2FtbDIjKHULVjFnfQlgkt21DiWwPujFfREu2%2Fz7P71hNci2DvlPORTi%2FIavxesPTZKWbMkauT36LW5a4WAY\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cbe9b272b4df11eeb9512aa9ac4ac79c; Expires=Mon, 15-Jan-2029 02:26:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cbe9b272b4df11eeb9512aa9ac4ac79c8ffb85dcfb175f5413f4e8b23ad5f67de9c6967e3ac128bd62115039f45cded9; Expires=Mon, 15-Jan-2029 02:26:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=425322b008be8bfe4cb32c0a565fd591571781f6-1705458378; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=NMWVG0M1oHQQIBjdc4UwfiRAcDfiViEi7GcHnHlI8vo-1705458378800-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705458381","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (997, 1, 'df4393a3-0977-46eb-943f-7a24f5445f35', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/84/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/84/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458379201225600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"df4393a3-0977-46eb-943f-7a24f5445f35","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"df4393a3-0977-46eb-943f-7a24f5445f35","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"df4393a3-0977-46eb-943f-7a24f5445f35","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b2713bc935e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:19 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=gUnARUY1JkaYIbWvdhc4eRIJ0%2Frl8J9NxU253gqcyO%2B0PQEqHkWr2EE%2FXpZsA6S%2FPS%2Fqb0oMELmUxsNHbH4aFVxMYzAShbW%2BiLBpFhXzxT1ZJjJae%2F%2FBnvmIcMTB\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cc22e1fab4df11eeb0161ec9afb677e3; Expires=Mon, 15-Jan-2029 02:26:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cc22e1fab4df11eeb0161ec9afb677e3ed8fe84094735dc46c5efa5be0cb2df0e6bc1bbf26e186b341cb39e4b724b614; Expires=Mon, 15-Jan-2029 02:26:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=86167887d9be5810e595eca653f88926184e98fa-1705458379; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xlra_JuT_Ob4EywhMDp6Qhb3BppwKqSaXZrcYsdWUrc-1705458379174-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705458381","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (884, 1, '96c876ae-220c-46ab-961c-9c5d62f95f47', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[cebbfb9](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518) Merge pull request ''fix giao dien'' (#95) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/95 - hungthinhne\n[8f60ed3](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8f60ed32b2d8d1c029f54144b9426d2b865b6bd9) fix giao dien - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/c1781de2627ad32061687b7324e88a13d1040bb1...cebbfb98f2b56f439f19e5720eb0f1bab9f3b518", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705320614597471100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"96c876ae-220c-46ab-961c-9c5d62f95f47","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"96c876ae-220c-46ab-961c-9c5d62f95f47","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"96c876ae-220c-46ab-961c-9c5d62f95f47","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e03aa9ffb5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:10:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=X9qW1GJvdTDoPrRPdg82csjBU7NUlJnFk%2FXcRkXaMCpjLSAE2kDbiIAoHQ9CUNviNj7m7JhhVSS4lU2CDmBbITiR%2B2dXSnxny%2BSWDBXrquO8TdPAO32r80yu1xbp\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=0a0604b2b39f11eeb48e3afca39ff1dc; Expires=Sat, 13-Jan-2029 12:10:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=0a0604b2b39f11eeb48e3afca39ff1dcf5d4a729fe804513cefa76fbc2bb6c6e04670fafe23316dd2bcd365aadc8695a; Expires=Sat, 13-Jan-2029 12:10:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3b1965604d4989b6e2fb50b9ea81694958f5f29f-1705320614; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ZpTAARSeR4_6KweS2fcR_X0LjrhHhO3AAynjwckmUdU-1705320614550-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705320615","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (805, 1, '2c2d50c0-f764-4aaf-ba83-3b1491072754', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/129/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/129/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705105574372431000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2c2d50c0-f764-4aaf-ba83-3b1491072754","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"2c2d50c0-f764-4aaf-ba83-3b1491072754","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"2c2d50c0-f764-4aaf-ba83-3b1491072754","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981ac9a195e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=S4181kygr5N6tP42LJUqYjSSSQFrvd%2FyKrNAxrOLbeAaRl5BA4QZtMDr44hJL2eX8hC6NROia90VX6l5lB9Dh3qOTmk76cBHq72823%2BwMpuEwN8perlVB1drFTYi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5c1659bab1aa11ee8903fe42a647276a; Expires=Thu, 11-Jan-2029 00:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5c1659bab1aa11ee8903fe42a647276ac2964682f812d7a73d9b6f62935bec2aabd3b03d5045d802a16ce4fe819f01f6; Expires=Thu, 11-Jan-2029 00:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8257e88aa9dd8bd7ef2933ef16e04f21988b5e2e-1705105574; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zHo3G5rfjt6GYkB7Y0MOi_WLQxYWTUNktGuCsFp7T70-1705105574369-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705105575","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (931, 1, 'ae5e35c7-b67d-44e8-87e7-6e9edb6c8846', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #100 fix datatable", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705389574972994100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ae5e35c7-b67d-44e8-87e7-6e9edb6c8846","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"ae5e35c7-b67d-44e8-87e7-6e9edb6c8846","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"ae5e35c7-b67d-44e8-87e7-6e9edb6c8846","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84649748084f5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 07:19:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1EOL397l3bJsGLSgmtyY0jyEZ9AYuHky0zT7gghJ2yJE6jBvbkPxc3q3dxxNlf%2BZ%2FttOLRxLf9AJwtgDQdOYN8zsQhG06nm5yprbA%2F8ab17rVHf7CSX029AUmOiS\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=999f66c2b43f11ee8c954a09ee82c223; Expires=Sun, 14-Jan-2029 07:19:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=999f66c2b43f11ee8c954a09ee82c2236d9a77a6eadd769b045690bdccb556981666de07f1c0f2d8bd3eefad117c58e4; Expires=Sun, 14-Jan-2029 07:19:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3e87420484b1a3f492c52a6a56efb7e90781803c-1705389574; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=fz8m6Evf_TAylZZ5WPAhnnqUaIfKaJT9Ed6ZnMxLhHA-1705389574949-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705389575","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (888, 1, '99bd01f0-5fe8-4fa8-aea4-f7871509f54c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[81ebe9e](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/81ebe9e1ea91c561cfd2d8b2778830a808e2104e) Merge pull request ''fix loi'' (#96) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/96 - hungthinhne\n[da91d00](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/da91d00953fc86aef94866d081a1d25a46b94d02) fix loi - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/cebbfb98f2b56f439f19e5720eb0f1bab9f3b518...81ebe9e1ea91c561cfd2d8b2778830a808e2104e", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705321151771710600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"99bd01f0-5fe8-4fa8-aea4-f7871509f54c","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"99bd01f0-5fe8-4fa8-aea4-f7871509f54c","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"99bd01f0-5fe8-4fa8-aea4-f7871509f54c","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e10cb29385e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:19:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fL%2B9Ji4CGVGd%2BcDz%2Fdjm8QJwdk0LSNCrBMc31CDU1vNGuhqWUZh09dhGLjdP619Ar1Cvxd03Pzc1dE4AFDZCagN%2FdtAiDoOC2jJ9LgNOW3HEF9%2Bs5j9%2FIC5mtB%2Bm\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=4a33a732b3a011ee908cdaf1e1161cd9; Expires=Sat, 13-Jan-2029 12:19:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=4a33a732b3a011ee908cdaf1e1161cd9dea8de38fd55c9b6640e6d1361edef1f7455321008b9cb44187bb8f0b332dac8; Expires=Sat, 13-Jan-2029 12:19:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=670b552d6802ced930d73923a90e17acc09fca0d-1705321151; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FKa379aMtCDtSTVWZ2iYGOqX3pQwJeXCC1HV9hN1DpM-1705321151723-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705321152","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (999, 1, 'e2f59cd8-095d-4787-98ae-d7081ad332ab', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/85/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/85/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458372274408000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e2f59cd8-095d-4787-98ae-d7081ad332ab","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e2f59cd8-095d-4787-98ae-d7081ad332ab","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e2f59cd8-095d-4787-98ae-d7081ad332ab","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26e7b9e15e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=CA4GSKQC2nW9mZHGFt4i8Ei4KyK7TlBLtpJBNrNpOQ5eWnzlR6nIIb4VZOLElaAGe9zJrCffeke3kWquPRcFiR76jACqKZ6tZAFiYeBWqdU%2Bvcr%2FtwshkXH0i4Ys\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c8007696b4df11ee82e20634ea8ae222; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c8007696b4df11ee82e20634ea8ae222b2fb9770d1679a0912f6888e0e76f1c78d6d619860098caf5f313c15d2278267; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd5a5f1ad8d93c86de1dea4d99f89a3fbc5115c8-1705458372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=6eq0xjVxIiadeFjWBBDCmvCkkCkply3pSkk.N74Rzd0-1705458372252-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705458373","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1000, 1, '97a3b6ff-89b4-4bfd-b8bf-b9c03c1425d6', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/85/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/85/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458372711866300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"97a3b6ff-89b4-4bfd-b8bf-b9c03c1425d6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"97a3b6ff-89b4-4bfd-b8bf-b9c03c1425d6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"97a3b6ff-89b4-4bfd-b8bf-b9c03c1425d6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26eadb5c5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=l8M3RRhEx1kFvjdZd3S3cBwLaIP9IKlJesv5F9Mhj%2FJmIitZfW5z82eCvk5n4iCXCE1H6OlV%2BZOBKAKRh6N49OAU5NjujIYY1WI4MZZ5tQK1bEgd%2BU6oKBftOfmx\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c84588eeb4df11eea2077a759910781b; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c84588eeb4df11eea2077a759910781b30dc89f9393ae4597a5cdf0630f66e56c50ff8f774b63d53cee616ee91ce8fba; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd5a5f1ad8d93c86de1dea4d99f89a3fbc5115c8-1705458372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=T5LaMy6YYAbWzmsrgGums88OeuBh9Rbqs6ugVNMCQMk-1705458372690-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458375","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1001, 1, '3823f56f-be6f-4419-b8e1-34749029db12', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/86/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/86/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458373035014000, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3823f56f-be6f-4419-b8e1-34749029db12","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3823f56f-be6f-4419-b8e1-34749029db12","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3823f56f-be6f-4419-b8e1-34749029db12","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26ed8ca65e3b-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=hrUq2FFl%2BKaLibneEGGfteyR15lcON%2FztHda4kJstPGX3hjkRMAtVyT12X4kEb3ZfkRBYQlkaRJ4%2FkIy7tUKjKKfCEbn3neUPbJQziHISy8mhD%2Fs1960idB4z7yi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2054","Server":"cloudflare","Set-Cookie":"__dcfduid=c876a0e6b4df11ee8d427e6f3128f203; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c876a0e6b4df11ee8d427e6f3128f2036d1eb70ec0e637e34f59455f4d2e4524fae14f32911077099b9fbcc6635fc790; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=09dc058170902ab28690be97da7bafeeafef5fc1-1705458373; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ZfXjZLmV1491FpnF1IlwkTF6CJRhNKGdPPQPZJ8BX3c-1705458373012-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458375","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (933, 1, 'c1e03b9f-1308-4f32-8393-ecf2bfc03d03', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[2e4bbd1](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2) Merge pull request ''fix datatable'' (#100) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/100 - hungthinhne\n[b4fa710](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/b4fa71025f54e4fa94ba095169119fa40b06d27c) fix datatable - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/c94f86451988d6cf98b90a9f0e74a88515b66f9a...2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705389628443594400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c1e03b9f-1308-4f32-8393-ecf2bfc03d03","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"c1e03b9f-1308-4f32-8393-ecf2bfc03d03","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"c1e03b9f-1308-4f32-8393-ecf2bfc03d03","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84649896dd635e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 07:20:28 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MexjPSb5TwSdHZWy3yS9DWn3yezlTo6RbBjYyJtd7g274XrcLul5%2BFm3PC1sLh6WLOATQPxWoxxEzEjtkjlqtBaRj8Pu8vb4S2SonRBOBJEe5RMVTUN5%2BT03D70A\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b97d4accb43f11ee864b723ce7eaa014; Expires=Sun, 14-Jan-2029 07:20:28 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b97d4accb43f11ee864b723ce7eaa01489ed4354bf1a6b48450212e490c65065bb92231d7244c012f14cd696f9417702; Expires=Sun, 14-Jan-2029 07:20:28 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=37eaf654f8246645c0cd1fd7e4320d38af10c320-1705389628; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1HqDBp.BT6WI4Q0DUzvL8G2G6_3V7xvQye8phq6hjHo-1705389628421-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705389629","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (934, 1, '980d76e7-028e-4523-b49a-4add1a4c9ada', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[ac54e07](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6) fix odata QLLD_HoSo - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705393289230183000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"980d76e7-028e-4523-b49a-4add1a4c9ada","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"980d76e7-028e-4523-b49a-4add1a4c9ada","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"980d76e7-028e-4523-b49a-4add1a4c9ada","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8464f1f5be8b5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:21:29 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OIgqNoocSXbDQ6SzfFF%2FOJRslILepAGN8SvOFXYGVC1pBQjiY9eXKOxk6EMB4VZ0ZPNfJl5HLVcfLdavO5O8MuPNGG4N1uKdiR9CFNjbudyBGVb%2FnUIfNr3xoUxh\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3f7e267ab44811ee8afa06df9c094639; Expires=Sun, 14-Jan-2029 08:21:29 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3f7e267ab44811ee8afa06df9c0946396b778270d2fc860d51ae62096baf6789c17a5aeea450b459b0f46609084873e2; Expires=Sun, 14-Jan-2029 08:21:29 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=298f231eccdd703b18d52e09429b5a92debbff98-1705393289; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ULH2KpJe_8ZCyTiHWhoh.xMZ6MO2dgTqrqSBr8LT5ho-1705393289207-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705393290","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (935, 1, 'fa62e752-64f7-49d1-a14b-ff36a5f596e8', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #101 fix odata QLLD_HoSo", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705393323981098300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"fa62e752-64f7-49d1-a14b-ff36a5f596e8","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"fa62e752-64f7-49d1-a14b-ff36a5f596e8","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"fa62e752-64f7-49d1-a14b-ff36a5f596e8","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8464f2d0aee55e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:22:03 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MSZ5urzTYbLHBx0yBG3Vyhg1zhw%2FvRIyJAEJc1PEFafx9Z8mvY3P%2F2Lvyhq2OhZiXYOHbrDZ0WJs%2FaZK%2FjJT%2FOxDDt5jNYfS%2FqHYi5EHmUeqR71QhoYrEjDtToeD\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5434a314b44811eeba2d0ec3a1f1c6bb; Expires=Sun, 14-Jan-2029 08:22:03 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5434a314b44811eeba2d0ec3a1f1c6bbed2d3797cb811cb2a825e13074b64b9f64cb655af14a2c5538581a62f07bb359; Expires=Sun, 14-Jan-2029 08:22:03 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=37dcb6fb16fcdbc8da0f022913cfc4b0e89729ef-1705393323; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jRYYKib7_.T.bKCi9o8RULU67fsSt5LjPB8VfGWA86Y-1705393323957-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705393325","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1025, 1, 'd4201835-6f9b-4a84-b976-ed8c9a89fd87', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/70/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/70/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705487775697929000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d4201835-6f9b-4a84-b976-ed8c9a89fd87","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d4201835-6f9b-4a84-b976-ed8c9a89fd87","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d4201835-6f9b-4a84-b976-ed8c9a89fd87","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4c37b9a5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2B7x6Jzjz0azubiU5u0%2F52fp8rZHfkArIWrKOlCxO1y8%2BQWNPpzWJqYtvzhQ8CMbq3PZRgDEUpbHI%2BboCIk01Bg%2FHeh%2BtXYtt1%2B5YueMblDYiPKqJgWNgYRVcpZj%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3dd06d56b52411ee95653e6ff7734c00; Expires=Mon, 15-Jan-2029 10:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3dd06d56b52411ee95653e6ff7734c00e2983fdeea60206b070c5db554aa0d831d85f5324eff0291e735197687974f3f; Expires=Mon, 15-Jan-2029 10:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=9efe3440a514a6bec2ba81a1ea903b69889ee622-1705487775; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=tZ0CGeSm2f9iPsLxA87ldY.UOnCWKq0uXV8wejBdPgA-1705487775670-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487776","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1026, 1, '7cc4afd8-c265-4bfb-aad4-e7330264d1e5', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/71/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/71/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705487776234495200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7cc4afd8-c265-4bfb-aad4-e7330264d1e5","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7cc4afd8-c265-4bfb-aad4-e7330264d1e5","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7cc4afd8-c265-4bfb-aad4-e7330264d1e5","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4c63c945e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=HW46zu%2BFx00Bbh%2FyAMTybBQwoRQ7pmdpi1xvAw3sGjY0WTLVpv69ytRWun0CigwTDdnEBXahNB%2BMyvBz%2FYG4UCinjWHkJ4g%2FpBn%2Fu5jRvnbKrs4GN0lZoXNVgaT2\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3e22388eb52411eeb6579233c3b543aa; Expires=Mon, 15-Jan-2029 10:36:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3e22388eb52411eeb6579233c3b543aa0618281e692bc125f32b095bdbd61d6b30b674da27d51877c8dad13c944dcd9c; Expires=Mon, 15-Jan-2029 10:36:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d7edeca7264d47096c724fb5273d3ca9b34ebf74-1705487776; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=kQ8TAwq.fUO4sfPWz.fT0uDN9IdpNjBCwePcOc2f1u0-1705487776208-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487777","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1027, 1, '758e7030-4035-483a-9919-4bd216f69729', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/71/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/71/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705487776657941800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"758e7030-4035-483a-9919-4bd216f69729","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"758e7030-4035-483a-9919-4bd216f69729","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"758e7030-4035-483a-9919-4bd216f69729","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4c98da35e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=B7M%2B5HC4vkrhbhcZ33fOlnUbZufRUIN97NQpHOJTn6EbQiFwbLMPiNrMX0%2BV5atVuoX9uWjxVIOz1G5Et3yzMYUJgrDZRtiUpbNBdD%2Fo%2BLrAYellqzYvzOREM00T\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3e621652b52411ee8854a67136ec2dcb; Expires=Mon, 15-Jan-2029 10:36:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3e621652b52411ee8854a67136ec2dcb4bd47be946dbf6bba7e1b38e8cab53950bd2a0ba7cd3f7e8ea81a19dadcf131c; Expires=Mon, 15-Jan-2029 10:36:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d7edeca7264d47096c724fb5273d3ca9b34ebf74-1705487776; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=JyehBRnkwHhv.0NOm6n4P5SSA_RH7sPs2SGJZLeZVZw-1705487776627-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487777","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (942, 1, '6e660160-2844-4a60-aae8-0dac943c5fca', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[65e6485](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/65e6485ae4926938a51adf2f31db4aeb6d7e7e41) fix phan quyen - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/65e6485ae4926938a51adf2f31db4aeb6d7e7e41", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705395661372769300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6e660160-2844-4a60-aae8-0dac943c5fca","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"6e660160-2844-4a60-aae8-0dac943c5fca","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"6e660160-2844-4a60-aae8-0dac943c5fca","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84652be0e84a5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:01:01 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=jUSjqegRJ1STQ320XJ04dxfo1x2C%2BInUNwYiJun5lokfkWRJF2MzN7%2BA6F8gHqq26daGRQbxXeh79WG%2FwbyLrPucslbbErfibe8lfALhpQGxgTRep4igKQJTEDxf\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c563144eb44d11ee82e10e966388855e; Expires=Sun, 14-Jan-2029 09:01:01 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c563144eb44d11ee82e10e966388855ee2a326dc65197fb197d3ede1ba75ae5aa5a963b2975cb0c83cd1d8345166ce1f; Expires=Sun, 14-Jan-2029 09:01:01 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b0146ca0bba395a1eb2323c2e14b599817656ed7-1705395661; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7.5W6C0FzZIPlVFyWRqI_a6fXPgZ8OS6bNfU1k4_TeU-1705395661329-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705395662","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (936, 1, '5336c1a2-a3e7-4ee7-a8a7-0751ce297f88', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #101 fix odata QLLD_HoSo", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705393337146741400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5336c1a2-a3e7-4ee7-a8a7-0751ce297f88","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"5336c1a2-a3e7-4ee7-a8a7-0751ce297f88","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"5336c1a2-a3e7-4ee7-a8a7-0751ce297f88","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8464f322ea995e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:22:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OfRsIaq%2BcGkG47dERnB%2FBAr%2FCFjJATfZTltrNncw8ydCKjUnxOL6rI0HnPt0JQwCYnpRnHxBAAKXxzhXjHpk8XVKmruh7GnGcXBhiqPBQZXMXNrsefSiGL6J67BO\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5c0cec9ab44811eeaa15d261dcddec30; Expires=Sun, 14-Jan-2029 08:22:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5c0cec9ab44811eeaa15d261dcddec30237970857c8ba6f0e99bf71185e527a05f0b02641a9ce3b720b284ccde4d6d9c; Expires=Sun, 14-Jan-2029 08:22:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=645c7ddc92afe51034d6182aa400c432965ff810-1705393337; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=2PR80SF8BCB6hK8mz0g5a4KHmCXXKW8vHRaxgVwK8x8-1705393337122-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705393338","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (940, 1, '2e3b0409-a441-4bc2-a8c1-c4c524d2fb84', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #102 fix hidden change year hoso", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705394333194236300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2e3b0409-a441-4bc2-a8c1-c4c524d2fb84","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"2e3b0409-a441-4bc2-a8c1-c4c524d2fb84","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"2e3b0409-a441-4bc2-a8c1-c4c524d2fb84","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84650b737ff95e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:38:53 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OK6pW%2B%2B82N949cR8YhaW6uA2tYREc36zKgmGDG6P2RzAaDFrUJt1nsi02eF%2BBX2gYTCxqMqeM6rvi1ktCyMDQ%2FR2vunNylFSJ4TDdVAJUj1TRZE7NcDgofy96VqT\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=adbe5bbcb44a11eeae45eee78652220f; Expires=Sun, 14-Jan-2029 08:38:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=adbe5bbcb44a11eeae45eee78652220f664be93684e429447087c91544973870b7dd49d0962d83eb54132232a66adf96; Expires=Sun, 14-Jan-2029 08:38:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ab02a3c7659d651a70412f3bb160bfaf84cf9d02-1705394333; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=__pdGE.tgIJna8YGnywWxwcz_ZrvqEGZQ9Pl2h0U86Y-1705394333171-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705394334","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (944, 1, '1223f962-156f-4d9a-888a-20ac20d9ca48', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #103 fix phan quyen", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705395801645061200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1223f962-156f-4d9a-888a-20ac20d9ca48","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"1223f962-156f-4d9a-888a-20ac20d9ca48","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"1223f962-156f-4d9a-888a-20ac20d9ca48","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84652f4d8bab5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:03:21 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=zbKs8jRAyYovrDfgZvbgW8CtL3%2F8LGbqki%2FIDDdV0zuJqJujuCKV9Ld5WEWqP7y1KDaS9ZZZDbdwMNHYQS6BIytH3GXZ2F%2FL9VemRUUd5ORZ%2BXqd19YxaV%2F3Ofw%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=1901956cb44e11ee8e9372504a0565f2; Expires=Sun, 14-Jan-2029 09:03:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=1901956cb44e11ee8e9372504a0565f2010c70373858e48ca219d6a9b62e7691fefcbb8894aaa59953574746a031a711; Expires=Sun, 14-Jan-2029 09:03:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=32c7d860eb576260fc351cbe4d6411af41b92d32-1705395801; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1QQMxOOg3MNdF0m2Im5a3wY93ZTCOYFOkWXVkSAIufY-1705395801621-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705395802","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1031, 1, '4898c4ec-968a-4209-ba02-49f0e53034f5', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/73/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/73/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705487778175097700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"4898c4ec-968a-4209-ba02-49f0e53034f5","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"4898c4ec-968a-4209-ba02-49f0e53034f5","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"4898c4ec-968a-4209-ba02-49f0e53034f5","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4d348d75e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1TTKpS41kM6en2FqofujmeEcWbcu6rcvJNqjb%2FUdVNoKMoSmJRvYOz2AIf0eyC1ImuzvIQ4vFYyZ7tbomJW80fSl0yloMTlsCu8GJZzLIKx7USuJ%2FJZBDoG%2BfYa%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3f4aa96cb52411ee9546b233d0379b24; Expires=Mon, 15-Jan-2029 10:36:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3f4aa96cb52411ee9546b233d0379b2468d24feddbe712827e2a4bc22e20c4fed9e9f4362a1ace34e27dc800c4fa9118; Expires=Mon, 15-Jan-2029 10:36:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=92d751a0796e27456926fba8b5304494926ee90f-1705487778; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FWpF_VCMQWdSEFlDW3ww9Vq7ivebcPR.BagwAtHd.lg-1705487778147-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705487779","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1032, 1, '50834ad4-c0a8-4b33-a963-bfacbf4b2041', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/74/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/74/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705487778600508800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"50834ad4-c0a8-4b33-a963-bfacbf4b2041","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"50834ad4-c0a8-4b33-a963-bfacbf4b2041","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"50834ad4-c0a8-4b33-a963-bfacbf4b2041","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4d5a9a55e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=a7nnp2AP2kxQGtlugKh63T8F5ZauhJ6qyRlI%2B7JjDfTnyHzHd%2FAgvTeXsHIbW0cqtZdkmZ7oevtu9AU4bPYSPAg%2FL%2BwyEajZcLOdBm4zPOfr1xIhLMj%2FY3PSeBgL\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3f8b41f2b52411ee806f1a295101e320; Expires=Mon, 15-Jan-2029 10:36:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3f8b41f2b52411ee806f1a295101e3200e0115ab659ef87183c1eaf19e590d04f1529569850b4fe39d517a23c98757ff; Expires=Mon, 15-Jan-2029 10:36:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=92d751a0796e27456926fba8b5304494926ee90f-1705487778; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=cOZf9k._ctaS4VjB2QEUey1aZG7XilzmGvpd9Kta81E-1705487778572-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705487779","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1005, 1, '9a0ee768-786e-4f44-b932-5806751b953c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/88/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/88/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458374871277600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9a0ee768-786e-4f44-b932-5806751b953c","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9a0ee768-786e-4f44-b932-5806751b953c","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9a0ee768-786e-4f44-b932-5806751b953c","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26f7f8ab5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=hCO4hREMZc75fJN0IInWhQag3%2ButNG3mmlhFlEi3bPFNiel%2F935fn6dQtVuqWcc4jy0yKdu0T03wFD7XOhvTckfuB4KTgUmK05bC6gUcmNmbNnc3fsc%2FhTc13m2S\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c98efcb2b4df11eea1e96a17374275bd; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c98efcb2b4df11eea1e96a17374275bda19f7eb62d73f96b768135b995f39d64e505d2bbb97f4b2a293dd62a6dbf222a; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=46208b8d2b61a76951114a5231d0bdf6b88819f4-1705458374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=mVmv1Kxkzy4YArKPQsYcVEfYebmzSTGCjqCBHVOpUnM-1705458374849-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458377","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (937, 1, '10af494e-fbd3-40a7-b76c-66913ba57f6f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[53d1f72](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/53d1f72211fde4e1c022b04df50724ed8080ad37) Merge pull request ''fix odata QLLD_HoSo'' (#101) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/101 - hungthinhne\n[ac54e07](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/ac54e071d2536e08f1ed6a6c06d4c2b3cde161b6) fix odata QLLD_HoSo - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/2e4bbd14e39b05fb7b97fd1ffaea6a40c23cdad2...53d1f72211fde4e1c022b04df50724ed8080ad37", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705393337614015500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"10af494e-fbd3-40a7-b76c-66913ba57f6f","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"10af494e-fbd3-40a7-b76c-66913ba57f6f","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"10af494e-fbd3-40a7-b76c-66913ba57f6f","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8464f3254b765e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:22:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NiaFaEUl03rUis8xcU7NRbmVSm4PjTHdJaVGOLzdpdIx2S0hHPwNeJ%2B4OXvDGXK7JXzgF79JdNIUQDYP6hIyNHhaMFP7Ua4ODyu%2FXSxGADEQp6R3tWXP7x8ZIsJQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5c54da96b44811ee91ea2a9498a7652f; Expires=Sun, 14-Jan-2029 08:22:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5c54da96b44811ee91ea2a9498a7652f3a7500c8319f282df699ca38a7cc4031c83a168a5da1e944ef751b1e420d7865; Expires=Sun, 14-Jan-2029 08:22:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=645c7ddc92afe51034d6182aa400c432965ff810-1705393337; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=chxf1wp.jwXK0P8Deia1cqsRLabUkr.ttFnGjMxursY-1705393337591-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705393338","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1002, 1, 'dfc3dfe3-ad1d-42de-a9e4-fd12b4fce779', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/86/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/86/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458372274969800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"dfc3dfe3-ad1d-42de-a9e4-fd12b4fce779","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"dfc3dfe3-ad1d-42de-a9e4-fd12b4fce779","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"dfc3dfe3-ad1d-42de-a9e4-fd12b4fce779","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26e579175e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=LOxqO3tqozHGDf%2F7KOQuNytSDls%2B3woTzC8KaKYLNSr5CMhlTWB1wQbqb%2Fjn2eEZIMaGZV9Mm%2BSzvGss6L9f7RqXn5aF7OQmg0V22s%2Fm4DdEo%2BdBTZsZeF0kB6rK\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c8015840b4df11ee9142a2dbf69cb58b; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c8015840b4df11ee9142a2dbf69cb58bd2bc4924622140525060cef6acb66cce50c00aa3fdca444fd20eeb4665956777; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd5a5f1ad8d93c86de1dea4d99f89a3fbc5115c8-1705458372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=6eq0xjVxIiadeFjWBBDCmvCkkCkply3pSkk.N74Rzd0-1705458372252-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705458373","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1004, 1, '313cad19-0e5f-4736-bb60-74fcbbf022b3', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/87/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/87/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458374370679200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"313cad19-0e5f-4736-bb60-74fcbbf022b3","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"313cad19-0e5f-4736-bb60-74fcbbf022b3","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"313cad19-0e5f-4736-bb60-74fcbbf022b3","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26ee7d365e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=HBf5dnn%2F27W2BIjcrcTT%2Fw58URH8neyNUrlhC7DEEf5WVViA%2FIvvrhDHf%2B75sP32ZGaSr8oANjYV4qSGswKbgxCCBd5jChCjz%2FDm7nvkvJvns79hVlV1uYbYCyHd\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c94285eeb4df11eebe6eba83cb99b81e; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c94285eeb4df11eebe6eba83cb99b81eb2c82b407531ada97317f045e63dd7043bee689fba606d5549348ea32210d64e; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=46208b8d2b61a76951114a5231d0bdf6b88819f4-1705458374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=TiwIqd5gMB94F0Z5G_wLCZmyQlLOUrNB_w5Vz.e30CI-1705458374348-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458376","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1003, 1, '031dfef1-db5d-4148-9ebc-4cc5cba0fe27', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/87/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/87/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458372863187200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"031dfef1-db5d-4148-9ebc-4cc5cba0fe27","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"031dfef1-db5d-4148-9ebc-4cc5cba0fe27","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"031dfef1-db5d-4148-9ebc-4cc5cba0fe27","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26ec3beb5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=exSkh1DPzNmjYwP30GTYgr8Ketfl%2F%2FFP%2BdaQuydIR4qQEzVc2pVe4PXgW%2FPjNjdgHngngYmI70%2FV0x60MV33%2BFLhwU7SwL6y9Xoy6PrjfXbGFR2spQcbtQ5sPOOi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c85c3706b4df11eebaaf8a8ffccdf47f; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c85c3706b4df11eebaaf8a8ffccdf47f5136d2b85d1189b424142941d7662decd2b366c1a2049da878f4bf67bbde88cb; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd5a5f1ad8d93c86de1dea4d99f89a3fbc5115c8-1705458372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FofjEWWPBG_lG.78Uxak_S10t2TNPbSEn46vrJPntCU-1705458372839-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458375","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1020, 1, 'e08bac48-a316-49f1-889d-20b1be1e67aa', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/68/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/68/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705487773175310100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e08bac48-a316-49f1-889d-20b1be1e67aa","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e08bac48-a316-49f1-889d-20b1be1e67aa","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e08bac48-a316-49f1-889d-20b1be1e67aa","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4b2ee9e5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rn3NkDKsC%2BhbtAqdscX02th2%2BEfAcdGcgF4IYVn%2B5R%2FXEZ2DJjsViN0zHQnyQygtO4H9zKzjU6IzKHHWhRyZp2ApE9T2y%2FfD2tkjJZg2mG2jaqIqjhKPZOgs1CND\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3c4f90ecb52411ee99202678b8edd28c; Expires=Mon, 15-Jan-2029 10:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3c4f90ecb52411ee99202678b8edd28c7fc2b258b55102c0e1bf483ce26902293fd4d9f020018a9579971216c96595ad; Expires=Mon, 15-Jan-2029 10:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=fb1656dd544894f3c5f855a08048097f541e96f5-1705487773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=TcAdhpS7sLF6Qkg4FhUz4jgpTCuL1vXrfMS5K4mu5.U-1705487773149-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487774","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1033, 1, '91d42868-c626-4e5f-81e3-aa193c69463e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/74/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/74/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705487778964091900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"91d42868-c626-4e5f-81e3-aa193c69463e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"91d42868-c626-4e5f-81e3-aa193c69463e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"91d42868-c626-4e5f-81e3-aa193c69463e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4d85a7f5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=mZfJ%2FKHGzYqN7tTmtL1bc3IGLPpy13G3Yi5%2F4GYinp%2BkG3d7EmOuPzN5skRfPk2i8Tk9MLfc4rl4aiD4LZDINIAA6gYx7%2BjQZ71d794z5MY9NGRJbWc5nOg28TYm\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3fc37414b52411ee93ce0e58d162e08e; Expires=Mon, 15-Jan-2029 10:36:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3fc37414b52411ee93ce0e58d162e08e3cce087940497e6419793f8160e2779a29a8a410251387e64a0d32b061f647b3; Expires=Mon, 15-Jan-2029 10:36:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=92d751a0796e27456926fba8b5304494926ee90f-1705487778; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1Mx0vNYwyL03OVVtU6zYrOHR72PaiSgs7n4KIR8AaY0-1705487778939-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705487780","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (939, 1, 'f9e674a7-f3de-4dad-a27c-f547c1b24a8e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #102 fix hidden change year hoso", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705394273889333700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f9e674a7-f3de-4dad-a27c-f547c1b24a8e","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"f9e674a7-f3de-4dad-a27c-f547c1b24a8e","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"f9e674a7-f3de-4dad-a27c-f547c1b24a8e","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84650a01aa1a5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:37:53 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xKnOjzQcjG6s1XusUmFMZzvzwH9Kl0HK6i2NM2cj6cCVSuQzZft84oR1EAMO7pRhp42xJUCXqGfWK22eIwR463VaLVMFTnr%2F9WAv1W6iJdo6vTQT9TrS48SEc0nx\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8a654950b44a11eeaab33afb09e1874b; Expires=Sun, 14-Jan-2029 08:37:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8a654950b44a11eeaab33afb09e1874b28925824d413c9d1280525bb800845cadc07f9f5c6c16cb440ef1a239e5eaf6f; Expires=Sun, 14-Jan-2029 08:37:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5f2f9802d5c3ccda5d2f29347d4f6999f0e2a117-1705394273; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=WFuEtJdXmunc17BUSMdRSmcAPqqNLiSjxoCgvqU4vLM-1705394273866-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705394275","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (890, 1, 'e7d68f34-4c04-405a-bf57-ce84f9a88238', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #97 add screen", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705321824127203600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e7d68f34-4c04-405a-bf57-ce84f9a88238","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"e7d68f34-4c04-405a-bf57-ce84f9a88238","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"e7d68f34-4c04-405a-bf57-ce84f9a88238","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e2134ad0c5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:30:24 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=zj%2FxuZdkU2HjqwckbgK%2FScwuWJNjnevqv86LQ37BSeuQ7XGZ0KgyAj5U0gQLMVuvxUpKGEJEA4VmcSo8B9%2Fhlc%2B2shIB%2BKVCUQvyx0JR1vV8QLMqxaU4ZpOYYVkm\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=daf57ea2b3a111ee9f16da25aaf1dbea; Expires=Sat, 13-Jan-2029 12:30:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=daf57ea2b3a111ee9f16da25aaf1dbea57ef783a7eef713ef155142fccb553ca65e05cdff888bd46a4cc82bb81651bfb; Expires=Sat, 13-Jan-2029 12:30:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=dc99cbe2db55f734758e943674c1fa3ddfe39c85-1705321824; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zec8bjKHw9YmRI.L4JPjbp5cZQ8lJFKiATNerQQe6T4-1705321824079-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705321825","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (938, 1, 'cf7913d7-7be5-4ef1-9b33-1b7e3aa7084c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[a2d31a4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb) fix hidden change year hoso - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705394252966423700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"cf7913d7-7be5-4ef1-9b33-1b7e3aa7084c","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"cf7913d7-7be5-4ef1-9b33-1b7e3aa7084c","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"cf7913d7-7be5-4ef1-9b33-1b7e3aa7084c","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8465097e19195e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:37:32 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=GLEfWBVRN2Rc6HKb1WiWAYtAbdzOXxSUj9E4eqEwQgCfx16zyCkeGZdZ2fnjx6NiYT5Vzp2B8v%2FfCzmqwVqXBCdDx0ii5s4bcAYAb6JVw%2FID2lunVoMs5sPjEqMZ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=7dec752cb44a11ee9e2d3afb09e1874b; Expires=Sun, 14-Jan-2029 08:37:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=7dec752cb44a11ee9e2d3afb09e1874bda6f682de9b345a89224551ae0dee871490a70dc6277c6a6aa03c27e5ff4ce0d; Expires=Sun, 14-Jan-2029 08:37:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=41ec56c927364305b067c339df11128847e591d2-1705394252; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=_uuTOvKrHHoiN4rk_AZb_pBVcncsCKTWFceoaSeFKd0-1705394252942-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705394254","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (889, 1, '13db0ad7-fc00-42a3-9469-0fd3f207f501', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[a328fa9](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/a328fa9eb323e241b28e295cac0680456d0a1338) add screen - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/a328fa9eb323e241b28e295cac0680456d0a1338", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705321776991099300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"13db0ad7-fc00-42a3-9469-0fd3f207f501","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"13db0ad7-fc00-42a3-9469-0fd3f207f501","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"13db0ad7-fc00-42a3-9469-0fd3f207f501","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e200e9eb95e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:29:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=J0dOGgyVgT2YCXPqBcYOFs4%2FKyobVVGD0xUkbDN9b8n5DVEdvqpt6nlJbxeO5ovdcwdaLWMpZFibOpCwOJLDl8Cj5L%2FE5CxL8dvsX8nRqENSJaSf4D3xduX7P%2FY0\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=bedd3886b3a111ee8bfe16c7d1e4e898; Expires=Sat, 13-Jan-2029 12:29:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=bedd3886b3a111ee8bfe16c7d1e4e89879b5f6cc337b92608320171a4d70d4cf65724b3d94a33bd87cc2f848ad109f23; Expires=Sat, 13-Jan-2029 12:29:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b5381f24161610811b23eb229746756bd67fecee-1705321776; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=bnNegPcSoYN2bR7_Ic9VcPC.BzHuWj21OBIjBrW6TWw-1705321776943-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705321777","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1140, 1, 'a6c3929b-ff1d-42c8-a894-09f090303b09', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[8de6e27](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8de6e2711f638af8b35485c887f3c10229f7fca6) Merge pull request ''update phan quyen + filter'' (#112) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/112 - hungthinhne\n[8fd1ec8](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8fd1ec8092107d71cd610bc15090a66132b89ce0) update phan quyen + filter - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/e3af78fc47531563603cb74b00a581af88476433...8de6e2711f638af8b35485c887f3c10229f7fca6", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705631138399124800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a6c3929b-ff1d-42c8-a894-09f090303b09","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"a6c3929b-ff1d-42c8-a894-09f090303b09","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"a6c3929b-ff1d-42c8-a894-09f090303b09","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847ba0d4bdd45e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 02:25:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Tbp4O75Z6a2CBiMwoMqweJ%2BQR7OzFSQZTX9YpxwTSLW5xLPkw4nDsu8ohSxflMvmGSTP%2FE7C8NNy8I%2Bt6A528yPYH%2FGEKkseCWAjfmlzeHFYHa7n8akrFBHZtDoT\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=08a6a254b67211ee8ade1a3f0e99ee16; Expires=Wed, 17-Jan-2029 02:25:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=08a6a254b67211ee8ade1a3f0e99ee1620f19a86755db889e7c3dd2bc059d8800fb4332a2e350cf4f8253fdd39b14486; Expires=Wed, 17-Jan-2029 02:25:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ce806657460e75666357a45c72ae42086cb385d4-1705631138; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=kKBzSLvHAvAx5Ni9neEibGBXbu4rW7UH6Ymgz_DkSzs-1705631138385-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705631139","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (891, 1, '7e274705-8f4a-457e-9179-8dab622d19f5', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #97 add screen", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705321843006133100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7e274705-8f4a-457e-9179-8dab622d19f5","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"7e274705-8f4a-457e-9179-8dab622d19f5","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"7e274705-8f4a-457e-9179-8dab622d19f5","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e21ac68f35e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:30:42 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=35RN6Vp2dqXx1Bqq0OiDkzrThdNQY1NI5gMafF0kYFxgQorLkhegTtWIusysrNHz894EJrkL3U7QOJlYd7473MhbXzer6wX0p5mLAcha27R27Jg8IZLp%2F%2Bb47Yb%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e636354ab3a111ee819f0655eed2b56d; Expires=Sat, 13-Jan-2029 12:30:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e636354ab3a111ee819f0655eed2b56d593ee9e83ce1ffee9e10c2be509955a09a8420e996d539e564173e12a758bf23; Expires=Sat, 13-Jan-2029 12:30:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=9d887214d103cd62dec326cd28c905ac2805b724-1705321842; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=AYA7tUtkVMvxCXEOE8PVjkB7RN8vooVSk6FymBLn83o-1705321842958-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705321844","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (998, 1, '84e8bad9-e376-4fd7-872d-d1433b3ce047', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/84/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/84/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458371778955800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"84e8bad9-e376-4fd7-872d-d1433b3ce047","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"84e8bad9-e376-4fd7-872d-d1433b3ce047","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"84e8bad9-e376-4fd7-872d-d1433b3ce047","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26e518ef5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=PI%2FOPND6n6dziKJ8sQ5xwcCuIvINEBQp%2FfztonE7M2ybbk7HQQe%2FEBOUjjOTuMeKmlXINGBJR%2Bl3jbqo6%2BemjPmXvoNPjaV9eOcUJKNTg47HEEKSSbTt9QC%2BY1dG\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c7b70d26b4df11eeb7a3a67136ec2dcb; Expires=Mon, 15-Jan-2029 02:26:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c7b70d26b4df11eeb7a3a67136ec2dcb4cbc865996228721539c079f7f2a1874e6df2a4175c452eda346845d31005c51; Expires=Mon, 15-Jan-2029 02:26:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6c51969f63e30c2114ea6fdde5339f04489968e9-1705458371; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=gKRfgO7PIL9yGmtVDQKH4i3tH8BGP2FSHHD8X9l0Urs-1705458371756-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705458373","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1008, 1, 'b1d0bd49-38ed-4584-a220-3e63b8c538b7', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/89/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/89/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458376120998400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b1d0bd49-38ed-4584-a220-3e63b8c538b7","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b1d0bd49-38ed-4584-a220-3e63b8c538b7","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b1d0bd49-38ed-4584-a220-3e63b8c538b7","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26ffdbbc5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bMsP6zNQS%2FqGG6bonBModhlcJ6%2Bd%2FJfmfxIYaXkXRK41zNdMKZQuTqSsEcE0te77cCgUG2w6e2safHU%2BR%2BE4YfRO9Zwd6EAw1oFDRFbpr%2FFuFAEDxFJajZhUthOx\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ca4da252b4df11ee9c9e3a6fd8d37444; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ca4da252b4df11ee9c9e3a6fd8d374447bd3ccbe550e9753bdb3284adce2afa1c07923f50c488102b9466b55a0f5e0b8; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0857e29f549ca84f5de42c0b917ad1fc8191b910-1705458376; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=LkpEsbmSp36g7rmFPdaXmJpS0hP_hWtWpTzIJBpR3sY-1705458376098-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458378","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (941, 1, 'f29a8495-7e47-4fd3-8dcf-43730bfb36cb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[8eece73](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8eece73dc814f23997466b778c570a25145163df) Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102 - hungthinhne\n[a2d31a4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/a2d31a4f4ea5f3e8278eb7a3f446302831381ddb) fix hidden change year hoso - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/53d1f72211fde4e1c022b04df50724ed8080ad37...8eece73dc814f23997466b778c570a25145163df", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705394333546121500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f29a8495-7e47-4fd3-8dcf-43730bfb36cb","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"f29a8495-7e47-4fd3-8dcf-43730bfb36cb","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"f29a8495-7e47-4fd3-8dcf-43730bfb36cb","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84650b7639b55e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 08:38:53 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=r8CYnJkWVm4a6xj9RBRwSqCED78zoQu8XAL%2FwNb1dBDDy9HQIExBVvwBQaXaOW04ZuWlpREUTs8wS92DpqRZGykHh8LeiLypSV0DNvYqpz083sbhd7bvRSA1vDjr\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=adf224e2b44a11ee8aa0ca8da208398d; Expires=Sun, 14-Jan-2029 08:38:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=adf224e2b44a11ee8aa0ca8da208398d4cd6f0c14882acc9ce0a8edaddc518859506275e27176591563218cf382f6460; Expires=Sun, 14-Jan-2029 08:38:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ab02a3c7659d651a70412f3bb160bfaf84cf9d02-1705394333; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=KCawKg8uo5_9T6WPshJbtey7BnyXNLqGrS6uJcWFK_s-1705394333520-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705394334","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1007, 1, '5613eca2-0e77-48a6-95ce-0be97018db34', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/89/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/89/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458375636756800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5613eca2-0e77-48a6-95ce-0be97018db34","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5613eca2-0e77-48a6-95ce-0be97018db34","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5613eca2-0e77-48a6-95ce-0be97018db34","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26fd8b0e5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Qp%2BWliE9%2B1I06bGDcR7tcC7eB2Yx7kh%2Bv6PBcywnnesa7yWwaa9lDDujnnyUzgZ%2BG4iS8nTUXmGpHZ1%2FeVlcTKDlwf48rb6q%2Bs61u%2FLRd9SjbqcXgCJY9AfOAngo\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ca03a490b4df11eea744fab81e5cd2bf; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ca03a490b4df11eea744fab81e5cd2bf7604f69a4e1a3284eac761ac1105e6b1aa0d062d176c46f7e8d07564231868bf; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ee00da139899552a197be1f5a7b8047a86e0a748-1705458375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=XF4WLZGqiJPZGP_uamhTZA6px.Qo7RhXO3t4IupT7pA-1705458375614-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458378","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (943, 1, 'ff9f1ce0-bdf8-4e41-80d5-ecf7d0260f92', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #103 fix phan quyen", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705395694393209900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ff9f1ce0-bdf8-4e41-80d5-ecf7d0260f92","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"ff9f1ce0-bdf8-4e41-80d5-ecf7d0260f92","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"ff9f1ce0-bdf8-4e41-80d5-ecf7d0260f92","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84652caf7da45e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:01:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=aJexeWTZClQvsWXsVV%2Bh8EDP9yFBNLDbZMiIrzCtEHG3rO8w0sSc%2FTBhyQnJiG5oITNsER7JuH5yVPkVsa9GhMrk51HKzU1VzflT%2FBNGcgiBZugWJ9zbLrCIUgMj\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d914b006b44d11eea66642c9ff97cbfd; Expires=Sun, 14-Jan-2029 09:01:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d914b006b44d11eea66642c9ff97cbfdb4e5159d5a0eccbe1b35ce2188f17bb35790e81ee14e4f57f55d54ce27bfb79f; Expires=Sun, 14-Jan-2029 09:01:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=298a00b8fbcbeec02c60c3e4e9d7d0aad7791e0a-1705395694; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=H1Jhwm.w8JreRs542.gmgeGLQR_OPCMKoWfyyodS44M-1705395694369-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705395695","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1006, 1, '84a0cf97-005b-4d0a-92f1-c1566944b00a', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/88/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/88/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458375272599200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"84a0cf97-005b-4d0a-92f1-c1566944b00a","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"84a0cf97-005b-4d0a-92f1-c1566944b00a","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"84a0cf97-005b-4d0a-92f1-c1566944b00a","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26fb09e95e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OBbBcJnJK35bnbzWg0Lpb1%2BKdXwkW05wZqVp0%2Bsk3T1ys%2B83psDQA%2BZ0oQzUss8qsQMguIEJVKWYRMPF0Vh7bx1EVjvrxZ1ECTjs6Pxk8pw%2Brbt1tScaWbX2Mk3%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c9cc288ab4df11ee8c2e9234c1e8a3c2; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c9cc288ab4df11ee8c2e9234c1e8a3c27642643664fb0f9c2ffb21493601df153497c7a4bf8b1db7b60322aa1fd94311; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ee00da139899552a197be1f5a7b8047a86e0a748-1705458375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=bE4M.rvPccg140WYW4bUZCrbDG555_YVt2tdao2WlHA-1705458375250-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458377","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1021, 1, '03eb0a0e-31a1-41c4-9616-76a71fe2e7ca', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/68/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/68/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705487773633552100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"03eb0a0e-31a1-41c4-9616-76a71fe2e7ca","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"03eb0a0e-31a1-41c4-9616-76a71fe2e7ca","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"03eb0a0e-31a1-41c4-9616-76a71fe2e7ca","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4b67fe45e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Hmedq668MLwKo4JSCj6AjnzfwhUgi50IxQwtFj5fwazTEwvTE%2FLW7jOMWANaOsqdgTa5HpSsN4aAPFXamYGqbT0esO%2FRqTllvc7EoqKqxGqx2H9pz24aunxaxT6b\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3c95ca30b52411eeafda9eddbf71ef79; Expires=Mon, 15-Jan-2029 10:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3c95ca30b52411eeafda9eddbf71ef799adf661a6d58542513796cae679e1773a30b122a20b16edd5d8f597d5d2fdef4; Expires=Mon, 15-Jan-2029 10:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=fb1656dd544894f3c5f855a08048097f541e96f5-1705487773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=wYuF3sVzFAiAjS3yMprYPoetI.eAkxiEFIhk2lwdd5I-1705487773607-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487774","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1022, 1, '3af20d85-b3cf-4be4-ba18-77387e8cf019', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/69/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/69/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705487774114436700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3af20d85-b3cf-4be4-ba18-77387e8cf019","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3af20d85-b3cf-4be4-ba18-77387e8cf019","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3af20d85-b3cf-4be4-ba18-77387e8cf019","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4b948be5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7TPLwSzCSPZf21tMYL6k4MceTKZEMhFOPfEg4HU%2F0LpXpTfjhgUi0xujsgDvsz3IEhTDdXTChJCVm%2F%2FCIyKYi2CgLzcnVjbUj6Ic9jIMuReahaOOLnBD%2BHQrt23I\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3cdee666b52411ee9f5a9ead7ba824a6; Expires=Mon, 15-Jan-2029 10:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3cdee666b52411ee9f5a9ead7ba824a6c23a522b942a66e12639bcf37e28fd730cea0ebc8283c65458a3db95d0a4859e; Expires=Mon, 15-Jan-2029 10:36:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=40ceccc4061e317d617b3e41722e5ec0eacc9a50-1705487774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=AjAzZVhZv0XoArx9hkEkksCIDyPEjh2CdF.XTkz6nJw-1705487774086-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487775","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1142, 1, 'cf7dab4e-5c85-4217-8d1d-431656755212', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/14/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/14/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634314223368300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"cf7dab4e-5c85-4217-8d1d-431656755212","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"cf7dab4e-5c85-4217-8d1d-431656755212","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"cf7dab4e-5c85-4217-8d1d-431656755212","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee5dab955e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NGb8M%2BYnDn3MuPaC5qNIAggm3tRrvk031AjjmjltKuiYNUf1UupoE9BO5L4DEsKMqfAg%2FJ6v1BslqFc%2FCAax3keyi2uUsGRxXecqXSYafVhatQGCjRz1beZqy6NL\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d939562b67911eeba0d6e2617c6ef69; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d939562b67911eeba0d6e2617c6ef692beaedb8ee67c89687cf5bdca0ec85c4051e81db64cc8dce556f5f08718d2f84; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a89671599320554b03e98fe4aa326edcd33b0d36-1705634314; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=P7IjIkI6W7hp9dlK8iRcgW317YaopVhfQy0v_cp3RDU-1705634314209-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634316","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1023, 1, '1bbe0b2b-6d83-4433-b123-5c3ade76bffe', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/69/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/69/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705487774544269200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1bbe0b2b-6d83-4433-b123-5c3ade76bffe","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1bbe0b2b-6d83-4433-b123-5c3ade76bffe","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1bbe0b2b-6d83-4433-b123-5c3ade76bffe","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4bc49865e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=XXgvh8xy%2BAOGVg23mRZdIO%2BFvDBTyD%2BSZztBUePuokeQ389vuoudn1OJpSSFqYfOnCNv4Oonsnj1YCb0Q2jFnkYpxN19x1IxrRyI8DlHQ%2BWMGtDDRajvU6cop5hH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3d20736ab52411ee9e48f2b244d65091; Expires=Mon, 15-Jan-2029 10:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3d20736ab52411ee9e48f2b244d650913427817af1737860fc447105de3d078fd237e96e797b879fe1eeba09526a818f; Expires=Mon, 15-Jan-2029 10:36:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=40ceccc4061e317d617b3e41722e5ec0eacc9a50-1705487774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FPT68f.gHfAhavZVnvWDO2Eoms8Jw4XvhaisJmniGwg-1705487774515-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705487775","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (945, 1, '427da8e4-d6bb-4e0b-af2c-c3368324fffb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[cf47151](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/cf4715110a114ad27e4779af22c58cfb819d78c9) Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103 - hungthinhne\n[65e6485](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/65e6485ae4926938a51adf2f31db4aeb6d7e7e41) fix phan quyen - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/8eece73dc814f23997466b778c570a25145163df...cf4715110a114ad27e4779af22c58cfb819d78c9", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705395803789531500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"427da8e4-d6bb-4e0b-af2c-c3368324fffb","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"427da8e4-d6bb-4e0b-af2c-c3368324fffb","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"427da8e4-d6bb-4e0b-af2c-c3368324fffb","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84652f573fd45e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:03:23 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=unMsof9Twgvpp%2BZuDPFsZVhCpYs3TuRiXtvYllmx%2BU9Yfbv1WM2pdQXbVXMbRswnzPPB4cLYJrLm2TbNLLh%2BPgdWWwn1xtv%2BRPMrK8atXWwFct8pxa65N%2B6b1Fyv\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=1a494a00b44e11ee9e3a8231d09e3c17; Expires=Sun, 14-Jan-2029 09:03:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=1a494a00b44e11ee9e3a8231d09e3c179a1d43a04a4805f28d0c2956b39cb030bf49bf22b99c02f053895d2a0525b7ee; Expires=Sun, 14-Jan-2029 09:03:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d7390ad49990987d77bdacb066c60a56c36c4cb3-1705395803; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=yu1Bk2RNgnzNhKrWCsA_59Ff1f_G51HNsULW4Y4q5Y0-1705395803765-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705395804","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (946, 1, '08743293-4407-45ca-a39a-6cad34e4f939', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[6b059fd](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/6b059fd277af151a3e10327be3a8be3e4ba084a2) fix change page - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/6b059fd277af151a3e10327be3a8be3e4ba084a2", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705396546858307900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"08743293-4407-45ca-a39a-6cad34e4f939","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"08743293-4407-45ca-a39a-6cad34e4f939","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"08743293-4407-45ca-a39a-6cad34e4f939","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8465417ea8335e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:15:46 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MLNsczyqLcLMFW9iyC%2B%2FPifPm7VWjqloyOOyw7Z1R0%2BlIq2g%2BMxBXbJR31nKTro8PUY7q2VaxdX42zI6TBYPz6Eka2F%2Fx6mJYclWrOM9rT1hZkUjr8826PWRz3nk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=d5302c8eb44f11ee963f8e996d667f8a; Expires=Sun, 14-Jan-2029 09:15:46 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=d5302c8eb44f11ee963f8e996d667f8a2ae94a0aa61eadd25560a0c03b0392292aa2d5fa245bc6ae5b4fa39f1ada84de; Expires=Sun, 14-Jan-2029 09:15:46 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=51c73c547473ced584bfe2f9153cddc940f4d168-1705396546; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=SgDCJfg_yh3W4xMrBbm8gurlBcQkjZKTOPtL6QtY2hg-1705396546833-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396547","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (978, 1, '5f43fba7-eb7a-4696-a182-32f7c88158f1', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/75/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/75/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458371780837100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5f43fba7-eb7a-4696-a182-32f7c88158f1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5f43fba7-eb7a-4696-a182-32f7c88158f1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5f43fba7-eb7a-4696-a182-32f7c88158f1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26e4188c5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Y320dsNXgVokOSjB1W05XxxWqlpiuYd43cMH23XOMBzvzN6QBDH4%2Ben0b9GdzcueuclYMSTeXSE59U0kWGO0wlfrCuKVgVr5Ar65AYvRbljZZsB91Ls8DyD4NRH5\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c7b76294b4df11ee89d02ae31a3acd98; Expires=Mon, 15-Jan-2029 02:26:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c7b76294b4df11ee89d02ae31a3acd981883fffc90dc6a9efbb7e02181d86d6c231b03ff75121d8b0f6e2b8c5bd8eeea; Expires=Mon, 15-Jan-2029 02:26:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6c51969f63e30c2114ea6fdde5339f04489968e9-1705458371; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5n6iZ4fsx8_EOZQU9zC71dDNI5XEePpEU5JSfp1vO_s-1705458371759-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705458372","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1024, 1, '243d7ebf-c90a-4ab7-b336-8fb62fcfd8af', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/70/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/70/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705487775263115100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"243d7ebf-c90a-4ab7-b336-8fb62fcfd8af","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"243d7ebf-c90a-4ab7-b336-8fb62fcfd8af","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"243d7ebf-c90a-4ab7-b336-8fb62fcfd8af","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4c08aba5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rtFtCAhthFmaA5ipO4HeYyBqPwLu48dp8jLXZ9%2BlE1SJHnGi2Tb3W1zFfbfTtj4vqUEGFvNRQ5CI3AePoh87gLB9MpEoiYgx%2F2h34aCmr%2Fa4P5WMULB2w0x3M5K5\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3d8d23f2b52411ee932f2a05e9bd6524; Expires=Mon, 15-Jan-2029 10:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3d8d23f2b52411ee932f2a05e9bd652491b6b90619782bb6033243f2c6172907b014af45c21295fa551d682c51eb7739; Expires=Mon, 15-Jan-2029 10:36:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=9efe3440a514a6bec2ba81a1ea903b69889ee622-1705487775; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=W_OY.rPlXxQApshYEzLCOtYkOKM6zl7.9jd7rqQuXOE-1705487775231-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487776","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1144, 1, '62af45e1-fffb-4a5c-9769-279142523dc4', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/15/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/15/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634314972754000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"62af45e1-fffb-4a5c-9769-279142523dc4","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"62af45e1-fffb-4a5c-9769-279142523dc4","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"62af45e1-fffb-4a5c-9769-279142523dc4","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee627f755e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cN%2BFC0cZBUcuQHN2M%2BgfnC4nEryT0mCKklzR0KaUe7XauCV64bqddz575uDOlFL%2B90Lt30OtdFEVTFjqRB4vsh126ZAcNvsZqjNNxPqDWQFv9LIwuziCyyYjSj5F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6e0911e8b67911ee978b426cfa02c273; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6e0911e8b67911ee978b426cfa02c273423e0f48578459b804d6463991c7af43980fefef7cb0c966ed7dfa5e34e6345f; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a89671599320554b03e98fe4aa326edcd33b0d36-1705634314; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=cj0NvPOI_TDmvkt.ykwSaEfHR_QVt_ZroZL_W6QGzqc-1705634314958-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634317","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1145, 1, 'bfdcaa6e-384e-4494-b47a-8f52caa63238', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/16/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/16/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634315507187600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"bfdcaa6e-384e-4494-b47a-8f52caa63238","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"bfdcaa6e-384e-4494-b47a-8f52caa63238","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"bfdcaa6e-384e-4494-b47a-8f52caa63238","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee64c8e45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xhAVOWZT%2B3FoDHhjTdWE7KouAyQ6JPZJWsKcpyuaYynyvsEFgcoyVhwYu%2BuLSpA3FVVpP%2BvkJZJZ%2B4imROBSvklUQqmFpaxTjDzp8rn4zYYlD9HSqEnaW8mCpR0W\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6e5ac0bab67911eea58db23833843642; Expires=Wed, 17-Jan-2029 03:18:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6e5ac0bab67911eea58db23833843642e64f373a94394e3b85c15856d83e3e6d9cbd4d0260d8443525c305e3c6a60660; Expires=Wed, 17-Jan-2029 03:18:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=30421bde8cd26aef6f13886be7fc3ffe8587b7d9-1705634315; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=EpBE0uyA1WGJ3y26JN.fYk6EMtMnWJUt5XLqIBuzO28-1705634315493-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634318","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (979, 1, '7153bfba-16fa-4848-8c7e-f9ff372740f8', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/75/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/75/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458372273242500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7153bfba-16fa-4848-8c7e-f9ff372740f8","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7153bfba-16fa-4848-8c7e-f9ff372740f8","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7153bfba-16fa-4848-8c7e-f9ff372740f8","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26e7b9e45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=gMSqaRvMdbCsRI8Txw%2Bb9SwVQUmgGcjW5fYc7%2BPvzu8JFRcZYXCd44n8xMkJQNcdc2fMe9hHdzsNlPQYLqHoWuf1RJBwczkXTz%2BFYci4CT%2B%2BkAkm%2B98tLOLive%2BV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c8012b68b4df11eeafd59e297551b993; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c8012b68b4df11eeafd59e297551b993a4fe68b8a0f9f2d2c9ec9d29096f02b4d754a620857079d60a55fe7fe54d6b4f; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd5a5f1ad8d93c86de1dea4d99f89a3fbc5115c8-1705458372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=sMSToqxZKBzAo2ngBbbwlq8_mR5ib80h_HgCYDcN54c-1705458372250-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705458374","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (947, 1, '47c394a7-e4b5-458e-b051-c9f7131f3444', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #104 fix change page", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705396613939107200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"47c394a7-e4b5-458e-b051-c9f7131f3444","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"47c394a7-e4b5-458e-b051-c9f7131f3444","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"47c394a7-e4b5-458e-b051-c9f7131f3444","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84654321f8f25e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:16:53 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xu%2FL4nsUtO2LqjPVmFfQECFMEeCWxywHPQbJsVhW4qp6YvHpWu7oQFcZK2J9k4DTUKm%2F6ECUd2sw4zP%2Bi5jnBhGsAQNSxBPYoF%2FihXHZDHzqoYlqyI5z4b%2FlZBgP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fd1eb256b44f11ee9eccc27c7797be79; Expires=Sun, 14-Jan-2029 09:16:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fd1eb256b44f11ee9eccc27c7797be790e4d64c71d3a58d9e7ac88859e701f25d5883702c7d54320b46539002c1525b1; Expires=Sun, 14-Jan-2029 09:16:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=0a27ca34b09015b408bd2f939be5b96b4b54fad9-1705396613; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=AHjBp6XPDfcaisNgToMD2Q9OzfwMjlTfG3JhMFgSrrk-1705396613825-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396615","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (948, 1, '506cd0fe-1ac6-4ca5-9321-a014a4114754', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #104 fix change page", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705396643041439500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"506cd0fe-1ac6-4ca5-9321-a014a4114754","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"506cd0fe-1ac6-4ca5-9321-a014a4114754","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"506cd0fe-1ac6-4ca5-9321-a014a4114754","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846543d82b9d5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:17:23 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=3tfDE%2BnhW0RIddbvQol8g1hXJzHarY9PQibn7yEXHD0WCG9CFpt7pP0W0CpO3lbp3fM%2FMceuNlaeDh2oWioN1fx5ZK2NvxN2mH4UbLC2HuNXManVG%2FKriR5HODQW\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=0e819bdab45011eea89fb6acc0b24d65; Expires=Sun, 14-Jan-2029 09:17:22 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=0e819bdab45011eea89fb6acc0b24d65f0da66049f7dccf30302ac241e39ed9bcdc362c2df5e224920417e0547ba7bd2; Expires=Sun, 14-Jan-2029 09:17:22 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=dfba080d7b2f6aed25777d2aefaab8bb4a49efde-1705396643; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=HZrMDj7AMQyIYPm4QFT_X4GKeP52PX5NFcE_5_ilorQ-1705396643014-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396644","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (980, 1, '7bc5bdc6-7ece-4897-a001-0c07b7b8ecbf', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/76/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/76/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458372684306100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7bc5bdc6-7ece-4897-a001-0c07b7b8ecbf","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7bc5bdc6-7ece-4897-a001-0c07b7b8ecbf","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7bc5bdc6-7ece-4897-a001-0c07b7b8ecbf","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26eacb5b5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=8f2NPocFPRLtIDwLV5tFe0uzRtjPWk6acWeBKH1gAK3j3wmDmUdXMPr2drsdEeB8PcFGdXsc9%2Fvd3UaghJqZUVdFexB8WFl7bpEK5qpJ7hyykTl2jS4AK8yC90en\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c841515cb4df11ee86f5f6e5aaa6e048; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c841515cb4df11ee86f5f6e5aaa6e048916152652a6088ff0b6a421846497fcb296433c256e417ec4b1c95e51e1d5fc2; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd5a5f1ad8d93c86de1dea4d99f89a3fbc5115c8-1705458372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=_LNGllyc..hkrZ0GggKoBkmIOxYB2p3pxD7TcB7QfaQ-1705458372663-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705458374","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1028, 1, '0eb1e8bd-be1f-4c22-a421-265ccdae0d3e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/72/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/72/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705487777059643700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0eb1e8bd-be1f-4c22-a421-265ccdae0d3e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"0eb1e8bd-be1f-4c22-a421-265ccdae0d3e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"0eb1e8bd-be1f-4c22-a421-265ccdae0d3e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4cc3edb5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=BYcVtQmQ7g5AXB0cRp80tYKHiwZd%2Bnq9Cu3POH56qGR%2FAnb83d9HJF7hsmESI9IrH1VTnJln4NTEBkhGwCi1cjwJNDyKwGImNylx93UlpuzT67TED6o3MhYvoSnN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3ea0e440b52411ee8fb12e67be318690; Expires=Mon, 15-Jan-2029 10:36:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3ea0e440b52411ee8fb12e67be3186902d6cc7e891be2cb03a0b2234199df60d310ae5f696183fb6718f9625398a31ae; Expires=Mon, 15-Jan-2029 10:36:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b64d326c70686d648d6e53136bf4fe61d22cc855-1705487777; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=V8wUEdoDQ9b2zP7s98ExZ1yG2oIiwY3X9E4Zw0Bz2Eg-1705487777035-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705487778","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1149, 1, 'ea850323-d1b0-4aec-95f3-5df3fbd020fb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/18/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/18/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634317225590100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ea850323-d1b0-4aec-95f3-5df3fbd020fb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ea850323-d1b0-4aec-95f3-5df3fbd020fb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ea850323-d1b0-4aec-95f3-5df3fbd020fb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee6ffc685e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=07ezi9YsWm94YGGsiVuNFEMyLajYp1zIq8vUw6g%2F74TtkIYtmXPTw%2Fus4GmM4PthZhtuComRvrQIZjnSf3MeSZExcXDTEpMsOk88k62KWBEUN7odPqUM936P07KD\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6f60c6dab67911ee8b6f669a4a706839; Expires=Wed, 17-Jan-2029 03:18:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6f60c6dab67911ee8b6f669a4a706839cc62f42d5d7a769791dc0deaf448da34551140c3a08aeb1e73edf67a322a7604; Expires=Wed, 17-Jan-2029 03:18:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=204725e8364e5c21b9bd4109ce6919793439dae7-1705634317; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=25G8_Cwm4C0ch_zwUhj4zTWMF1NnJjAXodx9pM0cmII-1705634317210-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634319","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1029, 1, '8a7f259b-e371-4661-b2d5-e4c04c4f60b9', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/72/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/72/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705487777420018000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"8a7f259b-e371-4661-b2d5-e4c04c4f60b9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"8a7f259b-e371-4661-b2d5-e4c04c4f60b9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"8a7f259b-e371-4661-b2d5-e4c04c4f60b9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4cebfa05e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NQa%2FghPAjBpTGcU%2FSL%2FFoT%2FQrH5IcPz3Dhv8ZVVJxpnU4scilsOwoTvTr%2BDCmGOLR13Wc2gReQKW76515drbY%2F5TbyE4IMUsobefx7pELDCA6EjUHeeiFqI5j%2FvX\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3ed7a6f6b52411ee81b972b9691a0c4c; Expires=Mon, 15-Jan-2029 10:36:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3ed7a6f6b52411ee81b972b9691a0c4c47f35e5c85f5074171a5b83efbee10711f58bcb69a7b1bf16d7a68c7135dbede; Expires=Mon, 15-Jan-2029 10:36:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b64d326c70686d648d6e53136bf4fe61d22cc855-1705487777; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=96GexSuMaa7CTUQQAq_B4nqVjVKEupApId_LJFj4dIc-1705487777394-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705487778","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (949, 1, 'e3e8a5a8-3dbb-44b5-85ce-9204bce51f5b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[645b7c2](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2) Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104 - hungthinhne\n[6b059fd](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/6b059fd277af151a3e10327be3a8be3e4ba084a2) fix change page - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/cf4715110a114ad27e4779af22c58cfb819d78c9...645b7c2b051a49e16e1ba1d5dd9af1918230b2c2", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705396643420125900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e3e8a5a8-3dbb-44b5-85ce-9204bce51f5b","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"e3e8a5a8-3dbb-44b5-85ce-9204bce51f5b","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"e3e8a5a8-3dbb-44b5-85ce-9204bce51f5b","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846543daec8f5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:17:23 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=X%2FreDOjxxZlPJ5ZQHGIJbQfztpdUZJ1Yfo8SMiVxut1wHwAXiOfB3MpDRjyDELB7RZXyznmeWJJEx7xA3fp4GiAL3EolwaSljK1Uu8vlXO0BzNOFiMXquHl7HH2T\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=0ebf0ac4b45011ee932d46547f05e5a0; Expires=Sun, 14-Jan-2029 09:17:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=0ebf0ac4b45011ee932d46547f05e5a00efe8de841ed4cd855e9240fcf09ee3a41a5461899dfd146329337c580345692; Expires=Sun, 14-Jan-2029 09:17:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=dfba080d7b2f6aed25777d2aefaab8bb4a49efde-1705396643; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=l.9VXD3ViJEvGdmQUFB6bv_rSzAmqEcXvu5fEDZCiwY-1705396643397-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396644","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1030, 1, 'c55a9f71-4cb3-4cc2-8846-5e1a4c77eefb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/73/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/73/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705487777792890200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c55a9f71-4cb3-4cc2-8846-5e1a4c77eefb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c55a9f71-4cb3-4cc2-8846-5e1a4c77eefb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c55a9f71-4cb3-4cc2-8846-5e1a4c77eefb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846df4d0f8425e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 10:36:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=JjZqETpKb%2FFzwbkDPYmCA0gEog7atcF76cJ14pBpONePawxZzTjDbJ%2BptWn7H0zbFX0gXv8W5EYCQiw8AH8%2FIn56JeXiAUZhVLD2e8DZyptJ471gGMNFffrX%2FeFQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3f108502b52411ee965d1a295101e320; Expires=Mon, 15-Jan-2029 10:36:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3f108502b52411ee965d1a295101e320c05776ed5f27cc21847965f149b67516eed23e7b8943215a863fda97c2ad8091; Expires=Mon, 15-Jan-2029 10:36:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b64d326c70686d648d6e53136bf4fe61d22cc855-1705487777; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=nNyDKhXsNxh.1qSIjGrdKdyVVfbOLawOFODaTxqpd.o-1705487777766-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705487779","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1082, 1, 'dd98c303-65cf-41e7-bfc8-4e72d6892f1b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/31/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/31/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575514741519600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"dd98c303-65cf-41e7-bfc8-4e72d6892f1b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"dd98c303-65cf-41e7-bfc8-4e72d6892f1b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"dd98c303-65cf-41e7-bfc8-4e72d6892f1b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652d3ac9f5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=KS44ws2qnNGNAAoxUWi6IPtFkvXl9x6gJJbdZNH8B9I2tJN5zrZa6HNGdmk1l1AQ4r2EcPqvCHm8BbXhhyL6btYnEchGoy7cTkZRDF8hfd2hmfN%2FkUQPcbT7CIcN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=865ae570b5f011eeb85fb21ce3eda698; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=865ae570b5f011eeb85fb21ce3eda698ccf280d4a136b97d1389c652fe8bf60be8bec018fa6bea676c4d61e00b9fb500; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca423c3252c1691b4410cdb36bc56c9775c55e7d-1705575514; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=6fbw0Y0brCXcS3lvLjCoIMC8ZK3zOxlJrc78dZNbKbY-1705575514712-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705575515","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1153, 1, '77b4b2e3-1282-4a98-8bfc-5ae12cbf4921', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/20/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/20/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634313770483100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"77b4b2e3-1282-4a98-8bfc-5ae12cbf4921","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"77b4b2e3-1282-4a98-8bfc-5ae12cbf4921","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"77b4b2e3-1282-4a98-8bfc-5ae12cbf4921","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee5aed1c5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:33 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Xi8LggX7zDNeGwW%2BW47%2F%2B5V4BNi3KU%2Bp7ubBmYWAA7cBxtE3%2B5qnhH72SXj1QztCt0itkCGbgyI%2Fk0IqKdcEiKJHkN7Gn4re2gioeoUaIMN0%2BgIzFE9ZgpBwlJ0y\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d513be0b67911eebe113651b66a10a6; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d513be0b67911eebe113651b66a10a6a1d7a8be5af31c3e7d6b4c439f631f0396dc8f5c5079e6e82a305dad53b5dcbe; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=00f105666c48a8ede0894f91a771a8da70ed8a9e-1705634313; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=3rA49OlCGS82MX3mF0ygN0AePTGbfRMGMkSYxxt.J5M-1705634313755-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705634315","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1150, 1, '830c6dff-4690-43c6-bf67-8f89fc0b4039', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/18/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/18/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634317840161800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"830c6dff-4690-43c6-bf67-8f89fc0b4039","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"830c6dff-4690-43c6-bf67-8f89fc0b4039","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"830c6dff-4690-43c6-bf67-8f89fc0b4039","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee72cd265e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=QSpUIOb%2BniK3abX9AzEuW3%2B9SU6z0u7QqpdTdOdYBXX5SnTDHQ7qEH1M0hLJRSj%2FZQkKz%2BH2%2Fxd6qTLW%2BHcV24w3ZssKrs7DUtv5TW%2Bh58%2BVcW%2B7OCbhg9PSNJ8T\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6fbe9896b67911ee8d5f6a9ca49d77b5; Expires=Wed, 17-Jan-2029 03:18:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6fbe9896b67911ee8d5f6a9ca49d77b5a4e764be3695dabbfaaec58e8e3bc353b9379d1087f84b8212e90b407ac5c1d2; Expires=Wed, 17-Jan-2029 03:18:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=204725e8364e5c21b9bd4109ce6919793439dae7-1705634317; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=tIEutl4OwypiSRHdAFyps0UzFSBxt27uAnpnbs7huRk-1705634317825-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634320","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1151, 1, '1bea1a73-3419-4537-90ae-2adc10ce0577', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/19/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/19/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634318214411000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1bea1a73-3419-4537-90ae-2adc10ce0577","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1bea1a73-3419-4537-90ae-2adc10ce0577","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1bea1a73-3419-4537-90ae-2adc10ce0577","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee76adca5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kKjlJA6UVSiTNnDr%2Br8N55kMRXjvg3JEWWxMq3djlhSznrHo5jft2ihQMmc0Ecc2%2FUYpsdg1eMUZoAxg7UpSlgxfbZsrCqd0jMN%2BBE1gakss7Vfh8K8AQ%2B6zhMTa\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6ff7e9f2b67911eeb62cb2a9a40c5b16; Expires=Wed, 17-Jan-2029 03:18:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6ff7e9f2b67911eeb62cb2a9a40c5b163cbc81d7b0c6582f69aef1ff9b7e333738288c04a735b58dcd577efdcbe2b35d; Expires=Wed, 17-Jan-2029 03:18:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1bffab90c3e6dba4b2d73adabf06026818608738-1705634318; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=9BH9roy2WgIKCYduP4iJlkrA3FCzFIO5XYfIA.kvwBs-1705634318200-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705634320","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (950, 1, 'a1bf7810-77c5-40b2-b073-b49bc7cab750', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[3b26819](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/3b268198277e3decd8a39c797a71e1379fc01f38) hidden file login - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/3b268198277e3decd8a39c797a71e1379fc01f38", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705396658557004500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a1bf7810-77c5-40b2-b073-b49bc7cab750","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"a1bf7810-77c5-40b2-b073-b49bc7cab750","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"a1bf7810-77c5-40b2-b073-b49bc7cab750","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846544392cbf5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:17:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1U1G5j1cLLFvH4W2SdA93nirSiXw%2BH8qt6DIL4vBZxjqGnnJi4%2FBTQbZ3hXUVDFzJoHODHaU%2Flp%2FK1gqYBXs1RxLSyk4VeLyS33389afgqNGpljbG0VvG680rkji\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=17c4a160b45011ee859426f75c34e25e; Expires=Sun, 14-Jan-2029 09:17:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=17c4a160b45011ee859426f75c34e25ee8790fb7007f0a51b045caa033591811fcee09368022bd8b0f76d97560688ae0; Expires=Sun, 14-Jan-2029 09:17:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e47b93eea8448854fbd8ba80fdc0a3d8037947ef-1705396658; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=AoXx9KRec.vVBQAPxcAWnhLc1ip3eTZXh59Q7cZ40LA-1705396658533-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396659","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (951, 1, '63a3ad61-54f4-4d5e-8519-08f51c384b5b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[340a9c4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/340a9c47ca2f986c9fc50a1471a84a66c36eec01) hidden login - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/340a9c47ca2f986c9fc50a1471a84a66c36eec01", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705396713697525700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"63a3ad61-54f4-4d5e-8519-08f51c384b5b","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"63a3ad61-54f4-4d5e-8519-08f51c384b5b","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"63a3ad61-54f4-4d5e-8519-08f51c384b5b","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846545920be35e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:18:33 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2Bk4axjDO3yhKJAJoWyqvLQISGvPTnrvvZW%2Bz3jlSDFelC%2BxTJQ%2BA86biAAj6aNyzVz6xyaQkAvnpkyQs3SYhuzhbsLu5eB%2FC%2Bd5RxpuS7t37noUbD%2FXJPqlJrYuQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=38a24ee6b45011ee8d21e2e184415874; Expires=Sun, 14-Jan-2029 09:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=38a24ee6b45011ee8d21e2e1844158742a0f8b6b4d5afc4d1cd96ec621b3f36a99db50fdc886d85e5637d7a963cf9e43; Expires=Sun, 14-Jan-2029 09:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ea7e2d4be2956cdfab6affd1f9fdaf4d42a29305-1705396713; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7uYwqSyoOzMcepoGKDPtYmNouVYQYLEK.FS9qvxI84E-1705396713674-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396714","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1141, 1, 'b0bded64-9f41-4bc7-8532-9d18970d329f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/14/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/14/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634313835571200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b0bded64-9f41-4bc7-8532-9d18970d329f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b0bded64-9f41-4bc7-8532-9d18970d329f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b0bded64-9f41-4bc7-8532-9d18970d329f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee5779e75e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:33 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=znkFPYN0UKuBolutSp1DPtcJvKgap6RJO88ZJhpvAlE4%2BAg5QljkDdfRKu3wpkSXjlf7ouQjKj0xzgO3DYagBMYt0N125hrS1D44DBiAdyCevt%2FqXCLE8bOiV6fp\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d5b83a2b67911eeba3c6a99a9080b65; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d5b83a2b67911eeba3c6a99a9080b65d3b72f0cf8f38b7dd63f78dcf66fd56f94bd81af70a009e8ce36247199705efc; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=00f105666c48a8ede0894f91a771a8da70ed8a9e-1705634313; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=K82HpWdxCvogVc4q3kervSrzJQvfMbHo_ZCvE6zQA1s-1705634313821-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705634315","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1034, 1, 'f219d8a8-1b9b-471e-81f1-c6ec2e755bee', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/62/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/62/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705517171855492900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f219d8a8-1b9b-471e-81f1-c6ec2e755bee","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f219d8a8-1b9b-471e-81f1-c6ec2e755bee","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f219d8a8-1b9b-471e-81f1-c6ec2e755bee","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c2708ce85e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2BMlYrTCWfYRdiPRlzrMeGLIlEaLXGk8pQLaawnuAFlT4oCgmOtTuA22KZ0l4YUDOYaYY53cbj1xVS2xuZJhSXcOEzz%2BCklBhVt113G1oYcuvNBKKmGqBW1gOE60V\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=af4ae22eb56811eea153c2239e8f3031; Expires=Mon, 15-Jan-2029 18:46:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=af4ae22eb56811eea153c2239e8f3031d4aeaa8641e03e669e3bf5188baed64c0faa2b703a46869cc2535c8f6b3bb67c; Expires=Mon, 15-Jan-2029 18:46:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=43df4d516252b79a622e1d3fbda27c1bc87f2aa8-1705517171; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=NnfZ9hjjy_UZpTfHR6lXPNU9BbaaeU9TcdSXZ8NYoIY-1705517171831-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705517172","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1035, 1, '458bbd54-b821-4a10-8a2c-af07701943c4', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/62/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/62/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705517172336303000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"458bbd54-b821-4a10-8a2c-af07701943c4","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"458bbd54-b821-4a10-8a2c-af07701943c4","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"458bbd54-b821-4a10-8a2c-af07701943c4","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c2743d7e5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=22B4W4%2Fxcb%2FtGp3Bv%2FioiQS6C5Juca8SQkzegsgzv4xDUfF4RW9eUpB2IfAe%2FZGTSzaDY%2BwYw9EojiuydBC2Ja49KE%2BgqmZtuj4AT%2BRQSL7q5YU5OPFv2l5jMrmS\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=af943d66b56811ee8373523b6d8dcf74; Expires=Mon, 15-Jan-2029 18:46:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=af943d66b56811ee8373523b6d8dcf74f842456b2ce92558ce9c715779452f7dc1f54516cd46d466dc528a1c36ecd55c; Expires=Mon, 15-Jan-2029 18:46:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=718b8055051c43f4b62a83fb5b90091e129668e2-1705517172; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xGxwczUbEKRKq2KHfnPDALD.hOtvH7qydH9zm7b7H98-1705517172312-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705517173","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1037, 1, 'a3723e2c-da06-4fe4-8669-88af8a884d38', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/63/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/63/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705517173145363200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a3723e2c-da06-4fe4-8669-88af8a884d38","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a3723e2c-da06-4fe4-8669-88af8a884d38","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a3723e2c-da06-4fe4-8669-88af8a884d38","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c2799e405e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=brEpwyScifxd%2BmvWCEtlnK%2BLB%2FiUxCxCZ00VH70FyiI5u60Zl0NjwrUoKgk0fmrnkWN7W07%2FAF%2BsgH0%2FOLSCvKOPjo13rjKURRnb6Hj4LRTbEOmeOWK%2B2gvr9yFZ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b00fc882b56811ee88d682329442766b; Expires=Mon, 15-Jan-2029 18:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b00fc882b56811ee88d682329442766b987d73640efb265a6978fe4a24dbd2c705ef03678b34663eed4565731d1cf483; Expires=Mon, 15-Jan-2029 18:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=14f64afd62d57a99dbcb1ce277d6f1ba37b5d699-1705517173; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=XZpX3LE5s8XNLG3XbIOWpnMMbK0HPovdMgSdX8PJ4FA-1705517173121-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705517174","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1038, 1, 'b374c164-19df-4ca5-ab0e-6472e0dacc12', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/64/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/64/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705517173514483300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b374c164-19df-4ca5-ab0e-6472e0dacc12","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b374c164-19df-4ca5-ab0e-6472e0dacc12","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b374c164-19df-4ca5-ab0e-6472e0dacc12","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c27c3ea45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WAnGSbFh3BVRsP%2FjbY8I5uJfAU8Lx32TMur5GBZ8vWfqYs6SV0iLDmHMNblkwLbJygozG5bZumRCEIEil82NOFGSbr2iolrNHiCPqTcrsFsC473WgYCvrwXNGx7d\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b048293eb56811ee8e435e5e4920c9c5; Expires=Mon, 15-Jan-2029 18:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b048293eb56811ee8e435e5e4920c9c5b4159673c454b10e45d600582a4be045e7f66b64e3c229ddd1dceb9071dfe795; Expires=Mon, 15-Jan-2029 18:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=14f64afd62d57a99dbcb1ce277d6f1ba37b5d699-1705517173; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=65bxT.zZU1Up3xkTDgva8gTwNxHqSeCgnk9wzcuVv8A-1705517173491-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705517174","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (952, 1, '1f888547-74f0-4536-9df8-73288258ed29', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[5d51a3e](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f) hiddenLogin - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705396820966004800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1f888547-74f0-4536-9df8-73288258ed29","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"1f888547-74f0-4536-9df8-73288258ed29","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"1f888547-74f0-4536-9df8-73288258ed29","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846548302a3c5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:20:20 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=HkZM5ODkwAPxXODHdPAGdQ4qZ8HmPFPbJRNuilODy6nRFF%2F9mz1ULLZiJMm0q8Id%2Begz%2BJbRsIwy89GN6yrNPySRsehzDtJ%2F1gnLMv7Zr6c7%2FteYaaC2ukZYM5we\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=7891e3f4b45011eeb0bc62d2e79627d7; Expires=Sun, 14-Jan-2029 09:20:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=7891e3f4b45011eeb0bc62d2e79627d79c54e3a2e6453873aaae8dfa015225718c17afd003ccd04f4bdf7c53e8db0eb6; Expires=Sun, 14-Jan-2029 09:20:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3e87579cabc7df3826698593d725f2a797d73137-1705396820; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=9hMn.hA..6YAI4THXEddae8.vk9yR323a5OHOxBdpbo-1705396820943-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396822","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (953, 1, 'f4735578-19e6-4b11-80f3-98207a84b1d2', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #105 thinh", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705396848042220900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f4735578-19e6-4b11-80f3-98207a84b1d2","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"f4735578-19e6-4b11-80f3-98207a84b1d2","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"f4735578-19e6-4b11-80f3-98207a84b1d2","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846548d9fd765e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:20:48 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=CYMn5xc5n4mc8mA15ID0vrYF03zN7n6Html36nnl1Fnp9Yc%2FtAAwAtg6g7o%2FZj0VI3oV4ZxUx%2FsJPOLMuk5CSgaZqTS1jOPBbdgoM9yrhbtDSdyqHNZ36B6CcpHv\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=88b5a874b45011eea20fe2e184415874; Expires=Sun, 14-Jan-2029 09:20:47 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=88b5a874b45011eea20fe2e18441587452cd84f4bb90f156fee0ba060e240caf202a38898ac04fdec2732cf14042e8d8; Expires=Sun, 14-Jan-2029 09:20:47 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=eba76b630a961612166160ec521da09cd02f1756-1705396848; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=3xj5c98BF7oirQT53dRjYHwRs6aJReGZKmD89Mc7UYQ-1705396848018-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396849","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (954, 1, '7aee527c-509c-496f-aff6-fcac53499a49', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #105 thinh", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705396865257342700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7aee527c-509c-496f-aff6-fcac53499a49","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"7aee527c-509c-496f-aff6-fcac53499a49","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"7aee527c-509c-496f-aff6-fcac53499a49","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846549454cb35e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:21:05 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sskG5JCkyPl%2B6dR5NKjasBMKjmnXcW%2BtB%2BGB9RRO8dCLyXOnDbnj7jDGpaPiDDZ7dtBwN0PP1uuu0bsNE2Kbk7F84berP4EI5RH7qCLvFZQaCjJAh18sAIc%2FeLTm\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=92f89f1cb45011eea08646547f05e5a0; Expires=Sun, 14-Jan-2029 09:21:05 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=92f89f1cb45011eea08646547f05e5a0aa62260e8c79ad4899030fba5fd3d146473ea3d78633ce8e598b48d1a0324856; Expires=Sun, 14-Jan-2029 09:21:05 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=781366f3a1d095e8aadb9871255a9906db5e87ed-1705396865; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=neMPSQpWZFNHbdqZcjgZcg8YjrFumfLwZnuy_STy6Zk-1705396865234-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705396866","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1040, 1, 'de09da91-b1b7-4879-ba82-3847757bb16b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/65/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/65/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705517174347923300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"de09da91-b1b7-4879-ba82-3847757bb16b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"de09da91-b1b7-4879-ba82-3847757bb16b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"de09da91-b1b7-4879-ba82-3847757bb16b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c2814f545e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bLJUu7Lvth0etDxlULdS1GcZwiFlAaGdPTdxHPqszyzo2zmV5J9tMxUPuQkYEbQJPCvuOFLVONgMvtIZFw51VRNhiPwLEnQZaTnFX3%2B3jsxvvmmjwiY32taUWjiP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b0c73c7eb56811ee92c7ae7425d96d51; Expires=Mon, 15-Jan-2029 18:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b0c73c7eb56811ee92c7ae7425d96d51df440f6487df2499e4a165a892bce4e6b25fcc5b6baf31042d455cfc9e2eccd9; Expires=Mon, 15-Jan-2029 18:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cb0a4764b099394a6dfd9bc37d9bc5fa369464ac-1705517174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=SQNasTJcACjqiOqK9cR_aCHhsZdpHLBcmRG0fDORfOM-1705517174324-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705517175","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1041, 1, 'f036a788-68ac-4d23-bb4d-9730a788a756', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/65/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/65/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705517174793678400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f036a788-68ac-4d23-bb4d-9730a788a756","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f036a788-68ac-4d23-bb4d-9730a788a756","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f036a788-68ac-4d23-bb4d-9730a788a756","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c283cf955e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=vdqqCSDxODetJVx8yuDu8DKxhkGzVemB79ZCKmww7eztrhdg6bx77k%2BhpIMk%2F2K2z9kK29NsuDaZjxlhdKGhUb5Unq5QYfPyd1Vo%2B36aE%2BDvAWaQzqKGkmJUIFgi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b10b3e42b56811ee92c7ae7425d96d51; Expires=Mon, 15-Jan-2029 18:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b10b3e42b56811ee92c7ae7425d96d51e0d1b261b4fb239f41b826da87c557b1132aef53a042c2cc444b5a0e3693e876; Expires=Mon, 15-Jan-2029 18:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cb0a4764b099394a6dfd9bc37d9bc5fa369464ac-1705517174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xpTv7SVlUmCyotB.c2VvIFarzcb7K.vPU_eFuuUasc8-1705517174770-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705517175","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1043, 1, '6391693b-dbe9-434e-bd86-a08477767a3a', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/66/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/66/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705517175551944500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6391693b-dbe9-434e-bd86-a08477767a3a","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6391693b-dbe9-434e-bd86-a08477767a3a","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6391693b-dbe9-434e-bd86-a08477767a3a","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c288e83e5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AI%2Bi6l1aYhfzTYCV6c40R1D5iPTBKCYWexYCPXNdJctrG5yM2vBJvA3LCbwslQBCrIbREnAVLevJi%2F63DCZCZmILgPYWgmNbx9QLxJhdNuuysuklP7w1Ljo0o3z4\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b17f0ab6b56811eea32b22180435f247; Expires=Mon, 15-Jan-2029 18:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b17f0ab6b56811eea32b22180435f2479d0a64ebfa88bf03a5fed508f36c17bc1269630a2b0bdd086b23b960c32258c6; Expires=Mon, 15-Jan-2029 18:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f8d1f22042a8cb755254153999f8108d76954fe5-1705517175; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=yOB_O9zQ0s6ukCQcWYTabfwe.1Hgtg13ZFPgyuBZmFk-1705517175528-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705517176","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1044, 1, 'a9853367-1f34-45fa-9c06-93cbc3cd34f1', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/67/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/67/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705517175935029400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a9853367-1f34-45fa-9c06-93cbc3cd34f1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a9853367-1f34-45fa-9c06-93cbc3cd34f1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a9853367-1f34-45fa-9c06-93cbc3cd34f1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c28b48d05e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=nk9wC%2BeqDVB1s9Q9d%2FRUxXPT5d3%2BQ63UFqSlmhlGa6a3tlI2k7zjFyMv3yFtnaX3MqS1I66BZNcDWPscvWdyfUl20TqWucw2L4rCOOhR6F7sugEN9kO%2B5rkGIIER\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b1b9697cb56811eeb6e8f2bfbd1a820a; Expires=Mon, 15-Jan-2029 18:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b1b9697cb56811eeb6e8f2bfbd1a820a476e20ca1d36279c7e481f0b5e6df3ef44930e4bba071f6696d76e198557622d; Expires=Mon, 15-Jan-2029 18:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f8d1f22042a8cb755254153999f8108d76954fe5-1705517175; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=8eQ3C03QiU1Lz73dWhnMbaafNkT2rTdK6396OEyXskQ-1705517175911-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705517177","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (955, 1, 'a0bd0df0-3e2e-438d-8206-0c6e12822967', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 4 new commits", "description": "[d268ef0](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/d268ef005af0e0adcc49b9b4100f0479116d31d4) Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105 - hungthinhne\n[5d51a3e](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f) hiddenLogin - Lê Hùng Thịnh\n[340a9c4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/340a9c47ca2f986c9fc50a1471a84a66c36eec01) hidden login - Lê Hùng Thịnh\n[3b26819](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/3b268198277e3decd8a39c797a71e1379fc01f38) hidden file login - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2...d268ef005af0e0adcc49b9b4100f0479116d31d4", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705396866769388200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a0bd0df0-3e2e-438d-8206-0c6e12822967","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"a0bd0df0-3e2e-438d-8206-0c6e12822967","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"a0bd0df0-3e2e-438d-8206-0c6e12822967","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8465494ee97f5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:21:06 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7urete7OcRMuZealtf6cpukaBHN841RaRCrHsm9DWOYrlqSp6FNVLDlbSmrJlngfohXOsWKFpVeBNxY7nN9nNBTgj%2BDxZ6JKOJoBJyu7JO%2B6BM2tzDSU1xwX%2FJZn\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=93de9b0cb45011eebd2f36d042aa6da5; Expires=Sun, 14-Jan-2029 09:21:06 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=93de9b0cb45011eebd2f36d042aa6da53a33a951c69aa08e06fee0c8410936e8babb5d876f854444a6ee14d2fd1d4ebd; Expires=Sun, 14-Jan-2029 09:21:06 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4fa65d32e9ae07c7bb532189000810b045170d55-1705396866; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=krPGx0jTBeHGWX1QkFn0IVmNQcA.eXgOxudFj3gjjOo-1705396866746-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705396867","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (981, 1, 'b0579944-3e30-4754-8ce5-de1262801016', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[8f0bc90](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8) fix gdnn - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8f0bc9034a986611a2daa505c2f3e7f3cb2f71b8", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705458372980419900, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b0579944-3e30-4754-8ce5-de1262801016","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"b0579944-3e30-4754-8ce5-de1262801016","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"b0579944-3e30-4754-8ce5-de1262801016","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26ed5c9d5e3b-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WQeZ2ctLlrAuJT%2BLkKD20EjLbvh8hmlvrhnL5zse5euLHNNhlij0QWq7d2tIlhUVoW7okTjal0WkwY9BQ%2BtKCy1Ha2a0Q3xN%2BzPwwsZkpHN4qg8K6S%2FNGWFMPCjo\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2107","Server":"cloudflare","Set-Cookie":"__dcfduid=c86e844cb4df11ee91bd1ec9afb677e3; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c86e844cb4df11ee91bd1ec9afb677e338b16ce0925c38e90cb54fc1c85c5f76a29ec67ef6f9b89dfa88b2f092bdc29c; Expires=Mon, 15-Jan-2029 02:26:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd5a5f1ad8d93c86de1dea4d99f89a3fbc5115c8-1705458372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=RIgGf4vXdFfdysvG0E2wxbaghLEqM2w.RH3bqxLpFjk-1705458372959-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458375","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (1036, 1, 'd0456ef3-e66d-4636-baa9-7eeb230f5311', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/63/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/63/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705517172719987400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d0456ef3-e66d-4636-baa9-7eeb230f5311","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d0456ef3-e66d-4636-baa9-7eeb230f5311","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d0456ef3-e66d-4636-baa9-7eeb230f5311","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c2772dec5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=QVDdfUa2YmZ3h7fVRbAUmp%2FTihYjexRPvACrVW27U4RWhoLaGFwjqKupuiUQUovKsFqIYm6rV34Pk2dqIXp8SVdvzajjHbQ56DVcZSxCp8wN%2BWvQ5hBZ7sBD6tag\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=afcecc10b56811ee84d986cb4622b2d4; Expires=Mon, 15-Jan-2029 18:46:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=afcecc10b56811ee84d986cb4622b2d427bbe1dfd5adb7e3a0995c986696b687bb5c9b5a6acdaae819e76f24d4f628a5; Expires=Mon, 15-Jan-2029 18:46:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=718b8055051c43f4b62a83fb5b90091e129668e2-1705517172; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=YNOecYoGXL5uzbOB.fGv0MgsNEoreX4Jhi6hp8WcfYM-1705517172695-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705517173","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (768, 1, '5d017ff1-ea95-445f-bbf3-7e649a466c62', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/backend:main] 7 new commits", "description": "[869268d](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/869268d636fa17b9ae86c4f0ce751839607f6610) . - lqdat\n[4529416](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/452941640be0fe4ba9d7a470d65a2dd2298f1ec7) Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend - lqdat\n[b335b4c](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/b335b4c4867af438f52809be0436486e090bc4c5) update baocao TS dia phuong - lqdat\n[c1242c0](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/c1242c0cc36db357f358465b19daf6661c5a5604) check xóa ngành nghề trong kế hoạch đã gửi - Nguyễn Khánh Nghĩa\n[d60353f](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/d60353fc6e819e577c1d0a1e119257bc185fb22b) Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend - Nguyễn Khánh Nghĩa", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/compare/2b39a2404c8800424e13d56f5702c07c9261c67b...869268d636fa17b9ae86c4f0ce751839607f6610", "color": 1754624, "footer": { "text": "" }, "author": { "name": "giao-duc-nghe-nghiep", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep", "icon_url": "https://git.gdtsolutions.vn/avatars/802cdf8532d94c10cd481e4e3983c194bc5f4fc5742e4a5d699a740361409a4c" }, "fields": null } ] }', 'push', true, 1705037174591255900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5d017ff1-ea95-445f-bbf3-7e649a466c62","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"5d017ff1-ea95-445f-bbf3-7e649a466c62","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"5d017ff1-ea95-445f-bbf3-7e649a466c62","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8442fbc2bf481e53-FRA","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 05:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fpvd81DKpBNgTEWefFlKTj3zE7g2MLZEbdLPIPIFr1KtMPTavmLRtLzJeBgIHyYkUK%2FYm6mFnpTHOcVdsoKYm22w6%2B8Kn3%2FR%2FT%2F64TPvL5%2BK6ahA2QGVQ3z3GI%2BJ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=1aa058b8b10b11eea9b3365101b1105b; Expires=Wed, 10-Jan-2029 05:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=1aa058b8b10b11eea9b3365101b1105bce38614f49271fec208d0a81a911edda0369341751f2d67e441a36410744bfec; Expires=Wed, 10-Jan-2029 05:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b4387101c96f2aaf8c4efd460c84eeaa18941498-1705037174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=6bGkOboDxjzof3QFb3McomGAbxwXvzatapGVOq31adA-1705037174506-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705037175","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1039, 1, '463cb2a5-d4eb-4e96-a1e4-79ccd06977cb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/64/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/64/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705517173954701000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"463cb2a5-d4eb-4e96-a1e4-79ccd06977cb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"463cb2a5-d4eb-4e96-a1e4-79ccd06977cb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"463cb2a5-d4eb-4e96-a1e4-79ccd06977cb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c27e8eeb5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=14R%2B2sgaQCjLOYS%2FshsLE6k6ysFQP8bhIHNUlDwWiiVYE3pse7DoZX4B5AcEht7%2BZs3hx5%2FuJZ0CX6vPX0DzYbozLvMLbxuO90GYkN4reNMqZiM8LoSz2ai4gqhA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b08b467eb56811ee9538663ebc741ef3; Expires=Mon, 15-Jan-2029 18:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b08b467eb56811ee9538663ebc741ef330ec5311e4985840370a33ffe6a1dc21b85a94ed09236ffadcc52bdec4dfcabc; Expires=Mon, 15-Jan-2029 18:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=14f64afd62d57a99dbcb1ce277d6f1ba37b5d699-1705517173; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=yZNmWABrGNC1chShF7fYnle4Qb649bordeyZIQddbqk-1705517173931-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705517175","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1045, 1, 'eef6ce09-ce66-4ef7-b308-c46db54af303', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/67/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/67/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705517176414654100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"eef6ce09-ce66-4ef7-b308-c46db54af303","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"eef6ce09-ce66-4ef7-b308-c46db54af303","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"eef6ce09-ce66-4ef7-b308-c46db54af303","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c28da9215e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=HosneTcAKKAEekcdqEAGVIjZ%2B%2B2Lh1%2BBjhFktlXwbd35A1YHudka1rvDBmJG1X6fU5n890d1yElvDh5nGHhAwYHncio4ARNPpoOvt3K8SE1lg6387aw8aygQjQek\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b20283f0b56811eeb8d7523b6d8dcf74; Expires=Mon, 15-Jan-2029 18:46:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b20283f0b56811eeb8d7523b6d8dcf743691a232aa5970636dd6a8572611ece0a107266be1fc22f72adebf021cbdc6a0; Expires=Mon, 15-Jan-2029 18:46:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bd3af02578662ba133d3a10d5028a029f478a6a5-1705517176; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=hMxk7s4AcWPKSGEkY34B_u_NwllTTneLHIejd5ubfxA-1705517176390-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705517177","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (957, 1, '0b6c4865-cf7f-4320-ada0-ceac2512c9e7', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[7650c10](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7650c10f1a92cffc96d99f4f9923dc49763c69c7) hidenn - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7650c10f1a92cffc96d99f4f9923dc49763c69c7", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705397231349850200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0b6c4865-cf7f-4320-ada0-ceac2512c9e7","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"0b6c4865-cf7f-4320-ada0-ceac2512c9e7","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"0b6c4865-cf7f-4320-ada0-ceac2512c9e7","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846552356ed45e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:27:11 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ucH70ZixnwLwINMnzQh%2FNhSCEy6UNZxl7EXziEzRq6m5uvI0CUxuyeYnUo1XKy9eRvOiQUmDr32GtEDLes%2FPK03RgTi5vYp4g7ykzTiCmJGZ6xGeus%2BPWRDxeWtq\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d2d9282b45111ee97c85619581d3564; Expires=Sun, 14-Jan-2029 09:27:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d2d9282b45111ee97c85619581d3564ce00a271d2884a82344d1871d0725cb4d3afeb1c0abb1eea27a20f5305b838b3; Expires=Sun, 14-Jan-2029 09:27:11 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=928520f9652ea0c3ae7e2a133b50dc2d1fb2c141-1705397231; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=QSOCM.SpDJxFsHBnTaTnUdQsB7QNS7a7kH2c9Qj3UD0-1705397231326-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705397232","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (956, 1, '896c78a7-5fc3-4bb6-b29f-a3b622630134', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 106 new commits", "description": "[8e3640b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7) hidden login - Lê Hùng Thịnh\n[d268ef0](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/d268ef005af0e0adcc49b9b4100f0479116d31d4) Merge pull request ''thinh'' (#105) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/105 - hungthinhne\n[645b7c2](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/645b7c2b051a49e16e1ba1d5dd9af1918230b2c2) Merge pull request ''fix change page'' (#104) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/104 - hungthinhne\n[cf47151](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/cf4715110a114ad27e4779af22c58cfb819d78c9) Merge pull request ''fix phan quyen'' (#103) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/103 - hungthinhne\n[8eece73](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8eece73dc814f23997466b778c570a25145163df) Merge pull request ''fix hidden change year hoso'' (#102) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/102 - hungthinhne", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/5d51a3eeca0a3483d8d440d61ce1e9cb6750f88f...8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705397198349302700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"896c78a7-5fc3-4bb6-b29f-a3b622630134","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"896c78a7-5fc3-4bb6-b29f-a3b622630134","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"896c78a7-5fc3-4bb6-b29f-a3b622630134","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8465516628045e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:26:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fS7qKdSAQD%2B8U44b6ctdv6lflJMzidFqVSllM2Yh22WWWJxGYpyh1Lw9D7JaR7yQgG21IQXPjlvsJkud4SvtUcVBvoWYyVOn8P7N883LvZA7%2FNAe7rUVZW3rxaYk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=59824c3cb45111ee88a6d261dcddec30; Expires=Sun, 14-Jan-2029 09:26:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=59824c3cb45111ee88a6d261dcddec3093008d1d8d722fd70d51996dfa7992d3d97ed30711b2ee7f0753ea3edb06e70e; Expires=Sun, 14-Jan-2029 09:26:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ceb59b5eddb190cb1efc1087767af46d91eef1a5-1705397198; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=nHK.QXBKWzQjKoMpTz14mvnBz4QIiQQye2MVL_ZqjdU-1705397198326-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705397199","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1042, 1, '299dd4a9-5161-4865-a8b6-977d0931e924', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/66/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/66/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705517175171657500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"299dd4a9-5161-4865-a8b6-977d0931e924","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"299dd4a9-5161-4865-a8b6-977d0931e924","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"299dd4a9-5161-4865-a8b6-977d0931e924","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8470c2868ffc5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 18:46:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=86fHJGWuxnHAHdtnDDvyuD9%2B0IFKCVM4Aq3dL%2FqIbPD4h8De7k7ZPLiyFzsjHfBVTnEyrmCtLFFaaSlMXZA6NEX4uRVfwdg2AVraXK%2FYFNCjDSN%2FDEgt6XRz%2F9AR\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b14338e2b56811eeac471e98c9c7a94a; Expires=Mon, 15-Jan-2029 18:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b14338e2b56811eeac471e98c9c7a94a56e1492c0e2a3e287913eafb6146a1bf63c5fb94d5f6f61fc0470fc707806117; Expires=Mon, 15-Jan-2029 18:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f8d1f22042a8cb755254153999f8108d76954fe5-1705517175; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=2K0hsGMK6GjKDmDPhA5_VHpJ7TgtxOAkWrP7oGsGQyg-1705517175147-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705517176","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (958, 1, 'd76bdf03-d20a-4b05-b92a-2c82b91eb678', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #106 thinh", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705397257703075000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d76bdf03-d20a-4b05-b92a-2c82b91eb678","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"d76bdf03-d20a-4b05-b92a-2c82b91eb678","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"d76bdf03-d20a-4b05-b92a-2c82b91eb678","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846552d2baf95e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:27:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=46yQlkdjdsHtriZrnBey8dJXksaxs5ufdIzerygarXjQrxmY%2BliWDU9cj6DWfyIR4jpWW7qmmiGoNGnAIux5%2BxUPsxozKnVujCcXAoKgTiJlNicIcAVZ6SMhlRT%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=7cdf5508b45111ee9f2602f4a08a5271; Expires=Sun, 14-Jan-2029 09:27:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=7cdf5508b45111ee9f2602f4a08a5271a05aafb77474c5bb1b493ce68a6d03bce0915aa1c694633813d2243af6e71fe7; Expires=Sun, 14-Jan-2029 09:27:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=edda4582097c0b707a7294608d72244d185efb5d-1705397257; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jEQ0Pf4FIKFfGV4959Upr3SbEOokJKjAFxYE7lE2IiQ-1705397257679-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705397258","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1116, 1, 'd7aece2e-9bc1-472f-9607-62db9e6715ed', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/48/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/48/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575514700102800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d7aece2e-9bc1-472f-9607-62db9e6715ed","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d7aece2e-9bc1-472f-9607-62db9e6715ed","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d7aece2e-9bc1-472f-9607-62db9e6715ed","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652d3ea375e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=wxNRy61kObjUtr6tPzOpzFW59ee8FU1s0aUR%2FP5LaK20Ahn34Tlby6nkCU60NFrfXDAeJuexVSQs9rOMQT0tEZmORE6OI0Rd7n0IvUGmjvHKQcc0PyAXHk%2FjVZo7\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=86552c2ab5f011ee95c42ef1960fe1ba; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=86552c2ab5f011ee95c42ef1960fe1ba8543649f39e795cc57fde1c7bb341514e947e065b5f5a52230e0d56065e406e3; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca423c3252c1691b4410cdb36bc56c9775c55e7d-1705575514; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=EchfrizBnm_DSNxnqwHzmBmRhVqQpuJGriosUNgxMg0-1705575514669-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705575516","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1115, 1, 'b4e861eb-633d-4d1d-9486-0be909ede29c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/47/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/47/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575520291736800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b4e861eb-633d-4d1d-9486-0be909ede29c","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b4e861eb-633d-4d1d-9486-0be909ede29c","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b4e861eb-633d-4d1d-9486-0be909ede29c","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652f6d9515e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:40 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1TykbFBcByxcaQJ8d9xtl8RG9KnbZnTAi7rCjFq7Ns%2FSvK%2B%2BY8%2B%2BXye4f%2F9SCrTegFQlxm6M5MMwW3ay3S4RH4IonZPti6dbPKa%2BQhUyLyZrZ4qk4mkegqOOaEnm\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=89a9fec8b5f011eeb9ef0a2c805842b8; Expires=Tue, 16-Jan-2029 10:58:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=89a9fec8b5f011eeb9ef0a2c805842b8198e084305247403bd79f84bca67b7a9268a458b979a2c7daa8f8719a413c6ca; Expires=Tue, 16-Jan-2029 10:58:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=60f1d629456b607e0e01ba464460e82b3d90026e-1705575520; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Pdfi3qn07xviy0GjZrK.dA13OEql15u98c2KkiL3Lyk-1705575520261-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575522","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1156, 1, 'a94aa61a-2ea2-4d08-9827-e9f40a837568', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/21/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/21/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634314010986300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a94aa61a-2ea2-4d08-9827-e9f40a837568","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a94aa61a-2ea2-4d08-9827-e9f40a837568","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a94aa61a-2ea2-4d08-9827-e9f40a837568","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee5c29fe5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:33 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=U2zQAIqIwOkE%2FfZvQvV%2B8SGx6v%2FTRl3X0DTrQ7y7r%2BkA9LUxyD%2FD0tXxXW0u1IMnZix%2B6bnazwSVua1VMoFJ3%2BivhARsdIhl6FAcAdoKb15HAmkBO7nbAXGuGwes\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d752b5eb67911eea9ed22aeaa99ccf4; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d752b5eb67911eea9ed22aeaa99ccf4f496c6eec0769e733516c638d14bb308e529d27d26b5b1b4686fe837665cbb5f; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=00f105666c48a8ede0894f91a771a8da70ed8a9e-1705634313; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=UYcDHRtcb18Rkwetq2MAfzxPu_2rjGGi5dluSxAl9ZM-1705634313996-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705634316","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1152, 1, '90ed8ad7-97cd-4e28-be2a-9ec73553f512', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/19/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/19/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634313389792800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"90ed8ad7-97cd-4e28-be2a-9ec73553f512","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"90ed8ad7-97cd-4e28-be2a-9ec73553f512","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"90ed8ad7-97cd-4e28-be2a-9ec73553f512","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee577c285e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:33 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WhRcirmvhG7zpM9YIqegjiw6gL50WTF88679bcuQx%2Fx%2F2fc%2Ffu29b3hrDVI3jrdFB11B%2BXDhte%2BtFXBD3aVJvCXPFvIlFzpG12f%2FT1MhHhxco7SAjQ4ukrqAlxOV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d171618b67911ee8abd96a52dc9509a; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d171618b67911ee8abd96a52dc9509a8df5913090db115d0c298a217668ed05629bfe8c57aef502efd60d2313bee142; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=00f105666c48a8ede0894f91a771a8da70ed8a9e-1705634313; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vq9D__ObUmnXqOCyWDDdLv25NbPFf0VrWgfzAfpJau0-1705634313374-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705634314","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (959, 1, '419a7fc7-017f-4513-ad08-71ecd8d97220', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #106 thinh", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705397271821313500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"419a7fc7-017f-4513-ad08-71ecd8d97220","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"419a7fc7-017f-4513-ad08-71ecd8d97220","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"419a7fc7-017f-4513-ad08-71ecd8d97220","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84655331782c5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:27:51 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=psn1%2FcxsKBzWtQKumfbLP4TCgK%2BuOMOwgg11Icwm8QpWcZW7ua33qQkWsz4YrgQYI4FVNG4%2FX0O4RwE7hg75u2BhP%2FbJDxKGGWt2anVJSiRnaznL7mLdCZIdjYd3\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=854cd490b45111ee898442c9ff97cbfd; Expires=Sun, 14-Jan-2029 09:27:51 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=854cd490b45111ee898442c9ff97cbfd3cac0354aae686076d9b154b7ff832698797380268103068cf77369e310a5bd4; Expires=Sun, 14-Jan-2029 09:27:51 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=86188356e3305dc3d4e0b3590c3480e118336a15-1705397271; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=rG3RJgPIn0k9NOHyEOr1fjfkhJoRY5mUlE8L2zNcfKU-1705397271798-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705397272","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (984, 1, '29c41cc0-1d91-48ba-a02d-9bcfd7d52544', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/77/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/77/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458374203413800, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"29c41cc0-1d91-48ba-a02d-9bcfd7d52544","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"29c41cc0-1d91-48ba-a02d-9bcfd7d52544","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"29c41cc0-1d91-48ba-a02d-9bcfd7d52544","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26f4cfa95e3b-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2B62tq0I5%2FBq7EpgbtaQ342EFNGPvUF7wR4aNtaAws9ZJzvLytcHtD8DXgwejM1Of51TBmH0puKVTT01opaifIU1idORWWyD8uBuEOyk7yMsiye0bQLDrhFlS1RKF\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2094","Server":"cloudflare","Set-Cookie":"__dcfduid=c929025eb4df11eeb77fbe224d97a722; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c929025eb4df11eeb77fbe224d97a722f9728202cdacc5ce20f8454426d5a59cfd65080ef35db1a8cbe596139a032702; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=46208b8d2b61a76951114a5231d0bdf6b88819f4-1705458374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=i8PYHva3MwVjVPkeXZGrPafYblzaM3Q3ymH7JKoTQgM-1705458374181-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458377","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (985, 1, '6229e7bb-d347-4117-9973-35cb2792e6fb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/78/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/78/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458374659271400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6229e7bb-d347-4117-9973-35cb2792e6fb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6229e7bb-d347-4117-9973-35cb2792e6fb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6229e7bb-d347-4117-9973-35cb2792e6fb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26f6e85b5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=UagZ%2FnfE%2FNXamAMnO%2F0j7ZxDE16Rd6zbFMxzPvoxsfWNKiI0b2pFJXUyFfcpPRWns0BRVPmdbjccNeOhjvbPekdQKyDqVsvOoClCGYzX01sELD%2B3eogzNgDJlu5f\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c96e7fb4b4df11eebfc5da7e1965fa36; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c96e7fb4b4df11eebfc5da7e1965fa36d8a2a92b1a26b120711f7afdd7b6511bd96d09e0c4473e5a34ab5dd9a29e3a3d; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=46208b8d2b61a76951114a5231d0bdf6b88819f4-1705458374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=28vQvGRHcJhJVwU_sm7W6ewT25rHbA_q.Yxxcb53p9U-1705458374636-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458377","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1046, 1, '9c63396c-8952-4cae-806a-8f236d7b54d8', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/49/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/49/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546572552377500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9c63396c-8952-4cae-806a-8f236d7b54d8","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9c63396c-8952-4cae-806a-8f236d7b54d8","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9c63396c-8952-4cae-806a-8f236d7b54d8","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473903a98285e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sewyjdGaOwpJu7MuIO3BmyzdJlLcR4wrOuqahlzxTIzEyCYZLqCDEWF17BCAa%2BFY0M7I34BLHevd5a1jBixruT9Mgxz5obwXk3HcipHPSsJQbTjaMPFObZ2%2Br6wy\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=2379de7cb5ad11ee89e912438b7fc607; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2379de7cb5ad11ee89e912438b7fc607aa521f488fec567beba5dc3f445ed3f4c3dee8aad1258aacd1132a69426fc646; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d33ec70d4b0a6ce0210d6697c1a7cc0ab27b5660-1705546572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=RueIK0GwwMlTRt5ZoTTXuk.SDglg4bWc6Srhs6HXfak-1705546572549-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705546573","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1047, 1, '5d568487-2b5c-402e-8c54-5b71dd42758b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/49/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/49/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546573121825000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5d568487-2b5c-402e-8c54-5b71dd42758b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5d568487-2b5c-402e-8c54-5b71dd42758b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5d568487-2b5c-402e-8c54-5b71dd42758b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473903ebd905e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WHflhBiwhyTPTxQb1vAApW0vO0Y1vNG0HWLk4E6fJXpy%2FIxLwcu3rfgvI%2BNr2p0FrOY8xlvaIXOLb%2FJFAnJfz9MwXN15AymHUTYnif%2BUavygWBILWlHctLttTFpC\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=23d33774b5ad11eea95f92f6d3391228; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=23d33774b5ad11eea95f92f6d33912283f5e66552d7fd7432fc960839ab8a26a286beb74269743136bc8868a5fdf736b; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=330cd3a417f747ee9b5818c4fbb5755cc4a86e76-1705546573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=sVyW.B_qnQzRyCDxqFv8ubzJpZ3PuUVMHz6Ox6dymoY-1705546573126-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546574","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (806, 1, '21e689a6-bd45-45c5-873a-02cd64d62558', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/129/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/129/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705105574765118000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"21e689a6-bd45-45c5-873a-02cd64d62558","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"21e689a6-bd45-45c5-873a-02cd64d62558","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"21e689a6-bd45-45c5-873a-02cd64d62558","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981b01abb5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sVOJduf5THjxrzgpmYMEdzlP9nCk8WuJaCKt66T0MrEGqM0ZIIhd%2FCCN6OhOPx9hQuqCm57%2FsOyA20VvJ%2FrIG4X%2F2I5kwQCI5cgStNzeCgYxvtKlN83cnYf50E5i\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5c527896b1aa11ee90ef7eb3793fecbf; Expires=Thu, 11-Jan-2029 00:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5c527896b1aa11ee90ef7eb3793fecbfb0113a99d6829e1a7f4e8325e48ddea997204666effa1af3f0e4b7f5fb49228a; Expires=Thu, 11-Jan-2029 00:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8257e88aa9dd8bd7ef2933ef16e04f21988b5e2e-1705105574; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=M3ymYfbSHLeP35hqYSe_ICFILr7kyDMfGJONGnqqCkk-1705105574763-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705105575","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (769, 1, '14c6df24-0ad6-43b3-a78b-fa2deaf3a2bf', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/admin:main] 1 new commit", "description": "[15e3994](https://git.gdtsolutions.vn/khieu-nai/admin/commit/15e39944f15f208be7ba038d75a2f68911f1d21e) feat: organization 100% - vantuan", "url": "https://git.gdtsolutions.vn/khieu-nai/admin/commit/15e39944f15f208be7ba038d75a2f68911f1d21e", "color": 1754624, "footer": { "text": "" }, "author": { "name": "tuan", "url": "https://git.gdtsolutions.vn/tuan", "icon_url": "https://git.gdtsolutions.vn/avatars/ef8cb8091e07736d503797a3fd007bb52d58ce27f461213703866d303da8e9a0" }, "fields": null } ] }', 'push', true, 1705042668327388500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"14c6df24-0ad6-43b3-a78b-fa2deaf3a2bf","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"14c6df24-0ad6-43b3-a78b-fa2deaf3a2bf","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"14c6df24-0ad6-43b3-a78b-fa2deaf3a2bf","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844381e25c23371c-FRA","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 06:57:48 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bDuBxmRUQ3jzN6kezfTDzQOfJCU7O%2F7lZUeAxKbSE2WwsXQAzRLbY81SI0tZjTPbfDdkffbTaBcJmLHt6j%2BTzK1BcyLFg%2BAlrPC5t1Y9dH5iIWdlQrIv2lWMXi%2Bu\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e525ec9ab11711eea85316488926765d; Expires=Wed, 10-Jan-2029 06:57:48 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e525ec9ab11711eea85316488926765d9c38e9c92e745a31f1af6141c8b7ac88c0e908fe61af618aeff568daa3b7c9f8; Expires=Wed, 10-Jan-2029 06:57:48 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=92dacd4a3bb73daf17b82662d067baf7c32ed6ff-1705042668; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=8xhrrNmlempaKXw_NFEOVsoDcnplzVm.1C3GaznqCtI-1705042668241-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705042669","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1155, 1, 'e0aa5e05-2c81-4bfe-8a01-547035234aee', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/21/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/21/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634313602906500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e0aa5e05-2c81-4bfe-8a01-547035234aee","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e0aa5e05-2c81-4bfe-8a01-547035234aee","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e0aa5e05-2c81-4bfe-8a01-547035234aee","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee5979855e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:33 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rqn46KN8USH8NLU0dzFQm2Fc5bIs42EWdL966IRxj5tTOe6mWnF8oFH7H31CKC6xhMbqDPMtkXCxfbQwsq%2BMuXAcMIFz6iRv9iGCxfIQhiJGjURJa7yrc8Y6fD4a\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d383352b67911eeade8e628930e5cdb; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d383352b67911eeade8e628930e5cdb9561f8b625d18de8a001563992ed48cbadd15a544f1fd638e61212cb73a0b4e0; Expires=Wed, 17-Jan-2029 03:18:33 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=00f105666c48a8ede0894f91a771a8da70ed8a9e-1705634313; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1Y1QVNuOz1Vva7eolNGGW56nXtiUFXtA4NaR1HhBSX0-1705634313588-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705634314","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (960, 1, '97e8c896-622c-4b5e-bdda-e3e5cbe19893', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 3 new commits", "description": "[f0f201f](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/f0f201ffadd72a9c710659316fad0c14ed6d69c1) Merge pull request ''thinh'' (#106) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/106 - hungthinhne\n[7650c10](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/7650c10f1a92cffc96d99f4f9923dc49763c69c7) hidenn - Lê Hùng Thịnh\n[8e3640b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8e3640ba5e06a258fe403c2c2f9ca4d18ea2e1d7) hidden login - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/d268ef005af0e0adcc49b9b4100f0479116d31d4...f0f201ffadd72a9c710659316fad0c14ed6d69c1", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705397272247341100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"97e8c896-622c-4b5e-bdda-e3e5cbe19893","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"97e8c896-622c-4b5e-bdda-e3e5cbe19893","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"97e8c896-622c-4b5e-bdda-e3e5cbe19893","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846553330b065e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 09:27:52 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cf6Xgkrgj7VXvzO%2BubfmwuiOFjbvG8ee7gYvvfCuLdX9TGYQkZQVNUDRAZv4V2CBCbgixLFw1xpXAoNb8eqrPRrHPbPtGnqDZjjF%2FDSx%2FxF8Z%2FjtyvAFhV5j2OQ4\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=858e0582b45111eebab816756648c95a; Expires=Sun, 14-Jan-2029 09:27:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=858e0582b45111eebab816756648c95a79045664c6c581e53d6dcd35b2cc257723870eb8290c93f51e8d48201b25d22c; Expires=Sun, 14-Jan-2029 09:27:52 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=f3611b3a87947832b19c6316bd94525189f0d2e2-1705397272; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=g.0EJqGvh5KaAWGrjeu95nK7IyaXkqZlIkLQyRbVVbs-1705397272224-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705397273","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (961, 1, '159f04f0-e196-45f4-a1cc-e019a5d5d14c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/92/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/92/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705399572254590600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"159f04f0-e196-45f4-a1cc-e019a5d5d14c","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"159f04f0-e196-45f4-a1cc-e019a5d5d14c","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"159f04f0-e196-45f4-a1cc-e019a5d5d14c","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b5b0f355e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ZvgfPTJQ5rRloFx%2FEdq%2Fvsx%2BKW2ShLJtlh2Ja%2F41Q5zBcPQ43v7xCgF7%2FABhao6qupZddkiYtiHrR5alHAPHiR8SKPsQCuALGMSoQ9U6pkgonGMjkrtcTt7mmZmk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e0773a5eb45611ee984e0aa24d88ea9e; Expires=Sun, 14-Jan-2029 10:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e0773a5eb45611ee984e0aa24d88ea9ef19d9fafb5e725cf4bed812d9968957984838a91b2617cfe594efa502ddcf427; Expires=Sun, 14-Jan-2029 10:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=69da9e3a8d38bf7b4ae806ec215b723707e02daa-1705399572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Q09HwJakP.Z1LkuYzXyElNb3f4mVpGD0t.xyk.lFqq8-1705399572230-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705399573","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1048, 1, 'e6c856a1-a622-405d-8d97-41846f2f64fb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/50/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/50/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546573505711000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e6c856a1-a622-405d-8d97-41846f2f64fb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e6c856a1-a622-405d-8d97-41846f2f64fb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e6c856a1-a622-405d-8d97-41846f2f64fb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847390424efe5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=6DPC8wIuvKHaE7rh8zyqDcMb%2F4zZ8zw3YmXQTZjiz%2Fg47ixHW0ElkFllKQycrIT%2BeeAarFjn3viCManRMLJNxQdSV3EE5K16djxg7mQ%2BhBPXPYUd5AXKiNB94TB6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=240e2c80b5ad11eebaeb7a34482fb976; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=240e2c80b5ad11eebaeb7a34482fb9768377fd54c631c8d9070996cf0cd2ed97cb3939b6b4d95d7ab911c86579417f03; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=330cd3a417f747ee9b5818c4fbb5755cc4a86e76-1705546573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=U_1AI2aYaLWvpCRxUe44EJGCR6YECqHAqjqNiEo2u6A-1705546573510-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705546576","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1154, 1, 'da26ce45-245b-4bf8-81f5-8b5c2ea1d3bb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/20/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/20/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634314187737500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"da26ce45-245b-4bf8-81f5-8b5c2ea1d3bb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"da26ce45-245b-4bf8-81f5-8b5c2ea1d3bb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"da26ce45-245b-4bf8-81f5-8b5c2ea1d3bb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee5d3e0e5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DydF6HcKPOmTX%2FlRm6jY1G7PM3%2FD%2BW3LhDQKO8t4J0w6i%2FOueq1D1gPPGr83L%2BXn5y4cSGdrvxxUIFdUNBlSVhAF3GEIkrxEnXwtAdv3xAoapvl7GGaZ7ecJc6Xt\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6d8e2bc2b67911ee9db0b2a9a40c5b16; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6d8e2bc2b67911ee9db0b2a9a40c5b16fcabf4ebd60249ffb88ea6d05e33cd4db232b97838e2ea8ead65f3e845f65989; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a89671599320554b03e98fe4aa326edcd33b0d36-1705634314; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=nEHgrD3_qqEEFuSAyC59RUGUCVljxnzOtUTR54yfk.M-1705634314173-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705634316","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1050, 1, 'feac3b0f-37d7-468c-8864-e9fa1dd4c66f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/51/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/51/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546574205120200, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"feac3b0f-37d7-468c-8864-e9fa1dd4c66f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"feac3b0f-37d7-468c-8864-e9fa1dd4c66f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"feac3b0f-37d7-468c-8864-e9fa1dd4c66f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847390470eeb5e36-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 02:56:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OP7CPG6yHa14jusMefcrIGKDudvJfv08p6q3wBQoqxoQ6fjkQBpeXfv23W6XuqwfUdPCXV5tUf7IQOv9bgVhduFr%2FbufQFisGlqGHP6Mkij5TpFe7kwa7U59BSQv\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2021","Server":"cloudflare","Set-Cookie":"__dcfduid=2478cf18b5ad11eea1770a271164bc0e; Expires=Tue, 16-Jan-2029 02:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2478cf18b5ad11eea1770a271164bc0e8a59cdf17c74f1b615b1d9e20793bbf9314eae2bbc3312d07ab9ffcf42eb2db4; Expires=Tue, 16-Jan-2029 02:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=976f352afc996ae6d9bb34d9359e3962448bbb36-1705546574; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=PeysOQHqRdIbtdD1XQsEviiTE2f1HfyGxt8UCWMTe5Q-1705546574209-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705546577","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (1143, 1, '3e485058-0e0c-4a5e-aab8-d08e95842302', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/15/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/15/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634314610140900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3e485058-0e0c-4a5e-aab8-d08e95842302","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3e485058-0e0c-4a5e-aab8-d08e95842302","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3e485058-0e0c-4a5e-aab8-d08e95842302","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee600ec95e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Qn%2FHNDXBvhc9fvp2EQT2%2BS%2BIVc%2FoNvWERkO8VlKtEle6BonJY28OSJG1YLEP2rl57FjO9eDBJhOh2LA1dp%2FsY0eeIt%2BSJLqrzfrxMtPbMrJziXyuAEgto81Knj8U\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6dd1bbd0b67911eebddaf2f90f29a615; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6dd1bbd0b67911eebddaf2f90f29a615290d66e452b093e5a293e72ce6347d16b1a808bc4029cfa24874a3098414b857; Expires=Wed, 17-Jan-2029 03:18:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a89671599320554b03e98fe4aa326edcd33b0d36-1705634314; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=RS29Mfw_nJDcLn.P_8BPvziEX0Aea_kgiltqz8kJlg0-1705634314595-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634317","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1146, 1, 'a8819fa0-1b9b-428b-8c37-46cfa16b76ac', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/16/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/16/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634316000664800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a8819fa0-1b9b-428b-8c37-46cfa16b76ac","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a8819fa0-1b9b-428b-8c37-46cfa16b76ac","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a8819fa0-1b9b-428b-8c37-46cfa16b76ac","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee6819935e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fh0OWItx52XKbYlyIg7Nkk1vJKtsJvCkci7Lt1VnbqgVbKXLCzgCBi8m%2F2%2Bv5q9W%2BAXLHqJS1VF2629aN44kFB6Zdxm39Ff4U2J2Tern9SerZJ4mjqimqg3%2F%2BtO1\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6ea5bbc4b67911eea4f0f67882ae1ab2; Expires=Wed, 17-Jan-2029 03:18:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6ea5bbc4b67911eea4f0f67882ae1ab24a2ac91e9d020fec523d58a87896c78b4c171b5c83dcf75665b77311bd875554; Expires=Wed, 17-Jan-2029 03:18:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=30421bde8cd26aef6f13886be7fc3ffe8587b7d9-1705634315; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ZumWoVlJvw_yPNR.aGxoLvknI3TQhorg00UWkz3FzdE-1705634315984-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634318","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (963, 1, '49ba2015-1d3e-4b87-8461-d904410b8884', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/93/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/93/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705399573005430100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"49ba2015-1d3e-4b87-8461-d904410b8884","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"49ba2015-1d3e-4b87-8461-d904410b8884","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"49ba2015-1d3e-4b87-8461-d904410b8884","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b60f9605e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ADwAfQebDhvd7iRmnDQql3XTLCtFF3H98eQhdym4nHLBx0EYT0KZQTbDN4DuS15x3JwzB73QxukRUpSxV4Hwg2VKcK9ENuKl15%2FvjAkZj7T7oyV19RrxZuzg5NiJ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e0ea0d04b45611ee906cfa9c027b806f; Expires=Sun, 14-Jan-2029 10:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e0ea0d04b45611ee906cfa9c027b806f6aee05622b283ce17fb907da15df714744ffa850be09fc10c01786110b38a512; Expires=Sun, 14-Jan-2029 10:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=69da9e3a8d38bf7b4ae806ec215b723707e02daa-1705399572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=93G8YSkwBZri2kvApW5twn2V2VgR.qVlEA8QM8NxzUM-1705399572982-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705399574","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (964, 1, '2387efd1-cec9-48f5-8b7c-92ab72056854', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/93/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/93/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705399574321337600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2387efd1-cec9-48f5-8b7c-92ab72056854","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"2387efd1-cec9-48f5-8b7c-92ab72056854","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"2387efd1-cec9-48f5-8b7c-92ab72056854","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b636a2c5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sLxV%2FPpPhVPLKS7Hj%2BGDxzIh58PkIjLO1wOEx7lYrNY3g22LnUowr97pGb%2BwJgDdKm8vggUkO0ZZZaBqpdc6qTgg9PjazD92XGBCP%2B1fNIb9OsFdrB%2BUC3HK8b78\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e1b2c1b8b45611ee84ac7642f5424dcd; Expires=Sun, 14-Jan-2029 10:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e1b2c1b8b45611ee84ac7642f5424dcd98f14a93bd6522e81073f9f68f340225440ac192c74d19c2e861be48a6a1b508; Expires=Sun, 14-Jan-2029 10:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=629625efa201b3b81ec02b44fff7c0e1567a122a-1705399574; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=D3y7_Z1feKpGkyRc5VF4xsyTKN2z9RPIRfJ.trxPx6I-1705399574297-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705399574","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (770, 1, 'ce75f3cc-7313-4851-a2e6-bd4f6725e220', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[bf23020](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/bf230208b1efd148c1dec00f3c4eb158311100bd) fix icon user - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/bf230208b1efd148c1dec00f3c4eb158311100bd", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705044402002355700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ce75f3cc-7313-4851-a2e6-bd4f6725e220","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"ce75f3cc-7313-4851-a2e6-bd4f6725e220","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"ce75f3cc-7313-4851-a2e6-bd4f6725e220","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443ac351df65e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:26:41 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1aMt6kcNU6YAQYjhlEXo4LI7M5l5%2Bq0BNgHcUO50FyJv2TsHUjKlQyuhA020DfsPBGCf4Qwxc4HyuV%2F9j0rcQ9cRkK45dmoeUHva5FLO6bjdpthbLghOLhBVQbJi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=ee80a3b2b11b11eebe6322ab75833ff8; Expires=Wed, 10-Jan-2029 07:26:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ee80a3b2b11b11eebe6322ab75833ff8c30fdde55453cd118c17976ec753c0be91df78751c91feff94545c90fb63e08e; Expires=Wed, 10-Jan-2029 07:26:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a72912347f31169bd1559871969bf2f3a0323db1-1705044401; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ptItgBcH6VQwDUURMMeaHgfCZTvDK7uhGk3dnyQEHI0-1705044401980-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705044403","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (892, 1, '55184915-9324-4b5d-81af-5f0e146fe3de', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[99df42f](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/99df42f181517ecde830cfba0d18f5bb48283de8) Merge pull request ''add screen'' (#97) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/97 - hungthinhne\n[a328fa9](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/a328fa9eb323e241b28e295cac0680456d0a1338) add screen - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/81ebe9e1ea91c561cfd2d8b2778830a808e2104e...99df42f181517ecde830cfba0d18f5bb48283de8", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705321843411668600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"55184915-9324-4b5d-81af-5f0e146fe3de","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"55184915-9324-4b5d-81af-5f0e146fe3de","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"55184915-9324-4b5d-81af-5f0e146fe3de","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845e21aea95f5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 12:30:43 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=FPYhamvpOVn5jGhMyW5FnhH2BdNpANEKSf1qpVqFuFXrHVE9Eh4fAStDdW70JelOFzT%2FxmZtOuuzQLjM5lIGpVcbwStx0ilwKyV1cgM%2BaLXxsoVn4Lvkxc4cnIuY\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e6740988b3a111ee931cfe4d44bed9dd; Expires=Sat, 13-Jan-2029 12:30:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e6740988b3a111ee931cfe4d44bed9dd96ecf028a0c6b3eec993b27ff99238dc278c7c48a9212e6ddf27018d61b3312e; Expires=Sat, 13-Jan-2029 12:30:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=95045ce0b21df3f7454dd78f955a3a81f70b7f55-1705321843; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=.Y2edaSOtHg2nHqOW2iMHJSUGCrnsEaqPvHQJWcbU7w-1705321843363-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705321844","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (965, 1, '56ad21dd-a1db-466d-b90b-5e66dcb030bb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/94/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/94/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705399574671479600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"56ad21dd-a1db-466d-b90b-5e66dcb030bb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"56ad21dd-a1db-466d-b90b-5e66dcb030bb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"56ad21dd-a1db-466d-b90b-5e66dcb030bb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b6bad7e5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=B0W%2FY6wPqVDv9Ct6hxhva8x28%2BGIfKwuFZJ96eMOXUrpAYid4WiHTt2fw7MzEKtIxSNpYHigByp19aVjeb%2BsBup1gbfy0Wa7lM2IFG%2FK99SU9HVTQUTKziOKB9k%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e1e83a78b45611ee8dfad241f5824d28; Expires=Sun, 14-Jan-2029 10:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e1e83a78b45611ee8dfad241f5824d28a09e204164c3ddf4204db1d2efee47945c9aff79d53da7b1ccc783ced999a83e; Expires=Sun, 14-Jan-2029 10:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=629625efa201b3b81ec02b44fff7c0e1567a122a-1705399574; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=CtCNkZ3ulgy.p4JBTbaaPrtjOyuskhYpGwujyf_.tAc-1705399574649-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705399575","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (966, 1, '7315e402-4180-4fc5-a407-3d72f0344495', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/94/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/94/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705399575113801400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7315e402-4180-4fc5-a407-3d72f0344495","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7315e402-4180-4fc5-a407-3d72f0344495","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7315e402-4180-4fc5-a407-3d72f0344495","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b6dce6d5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=R44dyvsLj8gA3CCrGIy5%2F8iS83G0ankSLJxJEOHqSRWwoYO8u7XXJQ0zIz7jZ67%2BdCvzUVczRMViXelq58fvD47kPTWtN%2F4S8ssWpVs81%2Bb7I3JEwGcxRmPMxwlP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e22bb208b45611ee8c3fcab077bfe12c; Expires=Sun, 14-Jan-2029 10:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e22bb208b45611ee8c3fcab077bfe12c65ea795f2dde6abf6ea4a0644e52fffc9abe0fc7661628b7e42b05300f1be74d; Expires=Sun, 14-Jan-2029 10:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e9e95c1d88f90684008a26c20aa2659d4f60d3e8-1705399575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=UAVG9Bma3UIyAFtvU8_w5kYakva2fzTEZF5kdlFzPdQ-1705399575090-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705399576","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1147, 1, '30bc01b4-8d4d-4968-aa14-67d0fb0b93bc', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/17/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/17/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634316380928200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"30bc01b4-8d4d-4968-aa14-67d0fb0b93bc","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"30bc01b4-8d4d-4968-aa14-67d0fb0b93bc","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"30bc01b4-8d4d-4968-aa14-67d0fb0b93bc","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee6b2b085e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=V4VKZfjaySbclrMzralVnpW6um0U8CHj56bLWgBto4NsJePx0yBi2xkQtGUPoWQzWYPXCLAPTk9li%2BvLEp9PdN9Z%2B%2F8MNf8Gew%2FYF169RcnHj6TzeCS8o2BtYBqG\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6edff97eb67911eeb81bbe48a66aa619; Expires=Wed, 17-Jan-2029 03:18:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6edff97eb67911eeb81bbe48a66aa6192d9ad71a2375807bae6480ce167311fededd142253fd07d428aece69b0b884d7; Expires=Wed, 17-Jan-2029 03:18:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1f4195b57d96336391e513c828fb7edd2221800c-1705634316; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zlj7Oic3e03OSDprHyCGbOdy9nmnKOslS6sKz8P0.x0-1705634316366-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634318","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1148, 1, '293441dc-3188-437b-801b-85ab578fcbba', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/17/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/17/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705634316774020400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"293441dc-3188-437b-801b-85ab578fcbba","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"293441dc-3188-437b-801b-85ab578fcbba","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"293441dc-3188-437b-801b-85ab578fcbba","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847bee6d8baa5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 19 Jan 2024 03:18:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=iQLQvI8kT3LYDZ1xZGHShRaAyPYaDASYLZyezIaAHLLd%2BzjgIbhdOgK63UpFk%2FRCp6%2B0D2u1iTzIiMNERcHRCX6sQ9In1ViYr5nxx%2BZ3ekAe%2FmHAB5ROtAPfRpQe\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=6f1aaf60b67911ee98800ea29fee96a6; Expires=Wed, 17-Jan-2029 03:18:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=6f1aaf60b67911ee98800ea29fee96a6e9af1b13f5fab2dec6918b9096504a485b6c12e8e55b8206d5d994109a0a1833; Expires=Wed, 17-Jan-2029 03:18:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1f4195b57d96336391e513c828fb7edd2221800c-1705634316; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=3eUp13ehCniGY0l.irwVS0j7NxCNMP7hONQgguzCwlE-1705634316759-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705634319","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1051, 1, '9479afec-20b0-4aaf-9ef0-a02687fa7518', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/51/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/51/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546574758963700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9479afec-20b0-4aaf-9ef0-a02687fa7518","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9479afec-20b0-4aaf-9ef0-a02687fa7518","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9479afec-20b0-4aaf-9ef0-a02687fa7518","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847390490fc35e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=QdS190gvMKF%2BaRgjIexxjrBR3RMzUB64x1%2F76dEeEf1B0KSj2HopKNpL8xC3Dkcqwhe%2FAv0KXHUXf%2FND9iYZH84MKFqzrJdkaOfEbi1pJ4ysWWNxBiM%2BT9GsCo%2Fx\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=24cdb96ab5ad11eeaab70267d10d6995; Expires=Tue, 16-Jan-2029 02:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=24cdb96ab5ad11eeaab70267d10d69956adea039cbeaf1b9c4db82fbcd1830818e1a46a492f374f886120104c9ca115e; Expires=Tue, 16-Jan-2029 02:56:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=976f352afc996ae6d9bb34d9359e3962448bbb36-1705546574; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FO6gG7gWNlaA2tNPRYmM843twbecIACoatHvk.AUFBM-1705546574762-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705546577","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (968, 1, '98079310-76a5-4583-b1af-efb3331201d7', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/95/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/95/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705399576028600700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"98079310-76a5-4583-b1af-efb3331201d7","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"98079310-76a5-4583-b1af-efb3331201d7","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"98079310-76a5-4583-b1af-efb3331201d7","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b73b8d25e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=nbHSk9gIpmnyEYJ6HL4PhCzBtEqg4kJjo1bqsCRY3p02DXU4A2mzEy80mq1%2FezAGG%2BUtdAbu5Cw2JKzdmH4jx8DlQFpV8DF2ns%2BWYQYLlZlfxWFLekvV1%2F5VQEOa\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e2b76e06b45611eeb8c46657dc0f68be; Expires=Sun, 14-Jan-2029 10:06:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e2b76e06b45611eeb8c46657dc0f68bec24578a785071774ae1189c8d0d529a64fcecd9dc0e5295ea57233f833fbb4cd; Expires=Sun, 14-Jan-2029 10:06:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a0ac98e23dedb1f03405746fb5b7a60b86a19553-1705399576; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=8nxrQjXk8bNKtOYxcW0o63YvAQyRe22Gz7MzCnB3euE-1705399576006-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705399577","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (962, 1, '5eeeb213-28ea-4331-a6f0-8c79cab2f048', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/92/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/92/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705399572624535100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5eeeb213-28ea-4331-a6f0-8c79cab2f048","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5eeeb213-28ea-4331-a6f0-8c79cab2f048","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5eeeb213-28ea-4331-a6f0-8c79cab2f048","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b5eb8815e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=3QN%2FdUGOkgrW3E5JDy1F0aKXPHHOgVSmvSo9nTs%2Fjx45J8nDXDvdT1HB0bJbnb7at2nU663BbMtJqW37nL2ogmJA9VySIDQoGNuDLIWYp5FwO3X2dbKsuJvg5JNM\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e0afe4d0b45611eea0ef8ad7f358db02; Expires=Sun, 14-Jan-2029 10:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e0afe4d0b45611eea0ef8ad7f358db02d3a4eb4475e121b602a514610ed57bf648a4c7e6503d4a225d93e183f3bad24d; Expires=Sun, 14-Jan-2029 10:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=69da9e3a8d38bf7b4ae806ec215b723707e02daa-1705399572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=BTj4qfE4qjLcUTY7dsVWsQRYdpqho6LMPhDAsGNxWUE-1705399572600-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705399573","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (967, 1, '1906ae98-627c-40a7-8f4c-41427917a6dc', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/95/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/95/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705399575619350100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1906ae98-627c-40a7-8f4c-41427917a6dc","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1906ae98-627c-40a7-8f4c-41427917a6dc","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1906ae98-627c-40a7-8f4c-41427917a6dc","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84658b708fce5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 10:06:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Xh%2BD8F8LhASqGT9otLrhdJcbjuT9TM5yOp7isOg9AVILqZsqCSCCml8c3yts6i87QqYHHfXu8i%2FCx8QCV8dsz4tS9jltijZx%2F6SnVfjGmjKGA8pKwmnpSAQdZ81Q\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=e278e154b45611ee8862725130698809; Expires=Sun, 14-Jan-2029 10:06:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=e278e154b45611ee8862725130698809b761315ecb4cded3351aaf3fda22884a56c54cb00e7513e58a44fbfa56e1b359; Expires=Sun, 14-Jan-2029 10:06:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e9e95c1d88f90684008a26c20aa2659d4f60d3e8-1705399575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=BTVvQh4s9rIRXNJkBKWBbgq57apQEJ15Q2DAB1uXBwU-1705399575594-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705399576","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1052, 1, 'e5bfe05d-8827-48b0-8583-9d0172ee5ece', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/52/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/52/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546575199580400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e5bfe05d-8827-48b0-8583-9d0172ee5ece","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e5bfe05d-8827-48b0-8583-9d0172ee5ece","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e5bfe05d-8827-48b0-8583-9d0172ee5ece","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473904c798e5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=CQUrDwvmclINvuFiY6tP7UjfXrZ5biilLXSVihUmP4dLhXZ4P35mTaex2PxKBDJOvXsJvrzjYVqBOYqx7bl2fJYHMddkNkqXI3V39o4Fj7xv0unpnxTGX%2FQParAy\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=250de2ecb5ad11ee8c66f21a2a653613; Expires=Tue, 16-Jan-2029 02:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=250de2ecb5ad11ee8c66f21a2a65361345408e39a5198317ff99994396bfdb38a7326be86874130c48c05b54dd9e2a77; Expires=Tue, 16-Jan-2029 02:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a58a80d6f72b88414b2a50e33e49507a1f007baf-1705546575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=hn_uvSdLCwWfENPc3sadRQ0EmIwPa0BRQN1Ugh9lkUs-1705546575184-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705546577","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (771, 1, '1e654c8e-8c4f-40d2-ac1a-8bd0b4bb27cc', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #86 fix icon user", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705044516939370200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1e654c8e-8c4f-40d2-ac1a-8bd0b4bb27cc","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"1e654c8e-8c4f-40d2-ac1a-8bd0b4bb27cc","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"1e654c8e-8c4f-40d2-ac1a-8bd0b4bb27cc","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443af045e765e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:28:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=XocUD0BG7RI9CmM%2BEYE545%2B%2FU9%2FsoAgfKBKUtG5P25IMQSziBDjUY9S85gFuyrh1T9Ry%2Berib781QO0S4JwG0naxl8krWwm3S75zIj0nO9M%2FfOY9rnOXKiQiyDK%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=32ff3058b11c11ee8980cece6137c334; Expires=Wed, 10-Jan-2029 07:28:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=32ff3058b11c11ee8980cece6137c3347f0d8bc311d306c1d4fde236fbff4c5df9ffbfa9eb16aa666b118d7e12f97704; Expires=Wed, 10-Jan-2029 07:28:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=045be112947cbf959c7bd80438610a9293236303-1705044516; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=oFPNgvpEYxRtUNJTqNBB1.MBU4kW8xPUet9NRVpzPBY-1705044516900-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705044518","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (772, 1, '9ea344b1-2546-45c0-b60c-50f9b0cd4e8f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #86 fix icon user", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705044540095051200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9ea344b1-2546-45c0-b60c-50f9b0cd4e8f","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"9ea344b1-2546-45c0-b60c-50f9b0cd4e8f","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"9ea344b1-2546-45c0-b60c-50f9b0cd4e8f","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443af951f875e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:29:00 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ZII%2Fnovcli%2B4x4MlLL8z56IsUM5fREaY2mD%2BB9B1WtXNcGZWcv1qbwlZXOQwgySD20b9AQMxvJxHZlXbnmOI6VxC%2B6Z30bVAC1Dsc4leUv5NlA2cIfjtAhobHMje\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=40cfbe28b11c11eea586a6f2414153ff; Expires=Wed, 10-Jan-2029 07:28:59 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=40cfbe28b11c11eea586a6f2414153ffd37fedb49fbb75e5a3bf1b46d2a7e6afab3a480bebf2a7f87aedd04e3fc4bb92; Expires=Wed, 10-Jan-2029 07:28:59 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a515bc305c374aee257566912b0a7e5ef5dfeb59-1705044540; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=eEoEyXwaYxhmdJl7Ov8E1YIDde_5vlE_k3jznWVmMNA-1705044540072-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705044541","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (988, 1, 'f2decfa3-42c0-41fe-bb55-1517af33b9a3', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/79/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/79/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458375588765000, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f2decfa3-42c0-41fe-bb55-1517af33b9a3","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f2decfa3-42c0-41fe-bb55-1517af33b9a3","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f2decfa3-42c0-41fe-bb55-1517af33b9a3","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26fdab165e3b-HAN","Connection":"keep-alive","Content-Length":"81","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=yQvMs68PZQSR881D%2BKwzi60pLEjij5ez2yorSFw7kTOBa6uywIXIXVzDkhwtFadPJGuCA%2F7ExFv0alyaSB8KmIFAzvAr2psKD2Rh342rlWuhXISu3tcW8ciS5USj\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2302","Server":"cloudflare","Set-Cookie":"__dcfduid=c9fc41a0b4df11ee9cce5ad44740a9e7; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c9fc41a0b4df11ee9cce5ad44740a9e76f3d2ada6945610a8000f8a5d6647355dad2fbd4212257ca4aa5053c1da2ec2e; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ee00da139899552a197be1f5a7b8047a86e0a748-1705458375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ygjXDq6QJwBoo5O17OC6PhBR.V3GKGKMJxVwXWq2L50-1705458375566-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458378","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.302, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (969, 1, '5668d954-47d6-4e14-a81f-949b8870b014', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/backend:main] 3 new commits", "description": "[7c37978](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/7c37978908457eed35a776de122d752d008605f5) Merge branch ''main'' of https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend - Nguyễn Khánh Nghĩa\n[9251c7d](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/9251c7d4c42a1d4339704decd8b079937f34cfb7) DanhSachTrungCMND filter SoCCCD - Nguyễn Khánh Nghĩa\n[a737432](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/commit/a7374329a01b74fd020df75c0afc197fbdebd58f) updaate - lqdat", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/backend/compare/25171a94c626223b0e72c8a83ce97b2af8680282...7c37978908457eed35a776de122d752d008605f5", "color": 1754624, "footer": { "text": "" }, "author": { "name": "giao-duc-nghe-nghiep", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep", "icon_url": "https://git.gdtsolutions.vn/avatars/802cdf8532d94c10cd481e4e3983c194bc5f4fc5742e4a5d699a740361409a4c" }, "fields": null } ] }', 'push', true, 1705419372338466300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5668d954-47d6-4e14-a81f-949b8870b014","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"5668d954-47d6-4e14-a81f-949b8870b014","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"5668d954-47d6-4e14-a81f-949b8870b014","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84676ec27bdf5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 15:36:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=tpporGYJsKlDApCD%2FZzdiQ7i%2B%2F1pX9z0aPYz75ldSg71iQu6%2By8hf8k%2F1eVi91sbKZudyj6d%2BJYqKFlpQMXpZnrJ5AiicW%2BSEgIYHXmavhme2RTBc6QiKHyiXFg6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=fa397528b48411ee883fe2de1b7ded09; Expires=Sun, 14-Jan-2029 15:36:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=fa397528b48411ee883fe2de1b7ded0970a327c94bf1600203013d9f5699c287b9a6d683a850ceffc1cfbd37e195795a; Expires=Sun, 14-Jan-2029 15:36:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=aa4d7a431c9a1367b7347215a9241971362ec8c6-1705419372; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=kvDHiLfYZUvArZ8DBOUUP11sD4N6A8eJYdIG2ZVYjD4-1705419372291-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705419373","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (989, 1, 'a6e97568-989c-4533-b75b-1667c29d171f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/80/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/80/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458375876750600, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a6e97568-989c-4533-b75b-1667c29d171f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a6e97568-989c-4533-b75b-1667c29d171f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a6e97568-989c-4533-b75b-1667c29d171f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26ff8ba95e3b-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2BIk8ooIIv%2FVwHII1mMJ4QKx0chwz%2BbU46EuqXHaqIGwE%2ByerLWpwcfu%2ByqNtTx%2FAArWAVPPui6WABvkAeh3X5HjXfqjSgfU91cgzupKi%2BmRI%2BhF7k8z4XkknszUn\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2015","Server":"cloudflare","Set-Cookie":"__dcfduid=ca283954b4df11eeb606aea555614008; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=ca283954b4df11eeb606aea55561400807bf869358ba1200529958734dd60e88111a9d94231311ba653abb8eb627508e; Expires=Mon, 15-Jan-2029 02:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ee00da139899552a197be1f5a7b8047a86e0a748-1705458375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=8TCGtgcc_WDFKuCWAgxPAVDvViuX2D3sLaTgBxUNvU0-1705458375854-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458378","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (993, 1, '6e8c6d1b-81a9-4ae6-8f23-4f586b19ceb4', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/82/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/82/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458377595228600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6e8c6d1b-81a9-4ae6-8f23-4f586b19ceb4","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6e8c6d1b-81a9-4ae6-8f23-4f586b19ceb4","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6e8c6d1b-81a9-4ae6-8f23-4f586b19ceb4","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b2709a84b5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=uszGYuwPhFN7ydMBnzlUzf1grDAmWDJJN0IqJ%2BBFm2dHedckYAjKP9szci%2FDrcJCDoKel18xl71EchzRGxFQyLbb8cOHS8l5tDHOeccsC15FkKc0AZhlha8kg6Ev\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=cb2e142cb4df11eea521161d509cf8e2; Expires=Mon, 15-Jan-2029 02:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=cb2e142cb4df11eea521161d509cf8e2fecad03b1bda408624d1b322d037d66536d8c232ebd44076cafad63df45bbbcd; Expires=Mon, 15-Jan-2029 02:26:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=66e246971898b39cf1c1690abe9435991130522d-1705458377; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=W3yi7YQ5q0sDugrdTbT2dcEuJ8H395vUEZzXIXTLGGs-1705458377572-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705458379","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (893, 1, '9963322a-29eb-4b15-b30b-e1143b308d25', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[67a5311](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/67a5311e4cf2834ef7fc0b767015be48d669696d) fix search all page - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/67a5311e4cf2834ef7fc0b767015be48d669696d", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705328904013891700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9963322a-29eb-4b15-b30b-e1143b308d25","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"9963322a-29eb-4b15-b30b-e1143b308d25","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"9963322a-29eb-4b15-b30b-e1143b308d25","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845ece0f8c0a5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 14:28:23 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=P83vxDtWcW1TBM3V1kII%2Fixzo4MMvNClcHmIUPHpxmqmLoq9HBHWnEMQfP0h6OHJA7c2dFTg2SO1Nn4M4FiRNhC6EpvqE0KOyAJ9peY8W8XvyT1WNi3iZfJc9mPe\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=56e92b66b3b211ee9daca277f8d54ed5; Expires=Sat, 13-Jan-2029 14:28:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=56e92b66b3b211ee9daca277f8d54ed5ffddf3d2f9ac91466d7583577f3df75bec33e28950ead58d91a2a4b0e1426688; Expires=Sat, 13-Jan-2029 14:28:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=264e394e67b93cb56f5a27985cb4664e7af8c809-1705328903; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=0h.OU6CFx4WEmJbaCuEqEbkIvMerc_SDZBnhM3JTRzs-1705328903983-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705328905","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1009, 1, '8a80a6a6-7852-4e64-866f-50ff110e5865', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #108 fix gdnn", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/108", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705458411052510100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"8a80a6a6-7852-4e64-866f-50ff110e5865","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"8a80a6a6-7852-4e64-866f-50ff110e5865","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"8a80a6a6-7852-4e64-866f-50ff110e5865","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b27dadc2b5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:51 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4Yn8aGnjQmt5CzQLBZugn2yrPPnKs%2BetKAB9JylSXxcqrMO89A3jaRnsqD2UZQBSDHlTV2N4S%2FnHQWEAfgUQ9y%2FNlIby7C%2FB5Kmgg9fhThou4Ch23oRN66dofLH1\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=df1fb882b4df11eea5533e4bcd08e31e; Expires=Mon, 15-Jan-2029 02:26:50 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=df1fb882b4df11eea5533e4bcd08e31e5e253b48d91268b05453a2c6fb824201534c99d0442ede3e847af90e5b8e5532; Expires=Mon, 15-Jan-2029 02:26:50 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=9ed0b66d0add1eab7ad22ed19acc096319cf5fdd-1705458411; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=MoKqZFVfdWsaGJOWfl1tovbfRTzbzWMkEFT3tZT5_zk-1705458411030-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705458412","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1053, 1, 'fb240ed8-9033-4bf6-ae3f-e534e2ec61a7', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/52/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/52/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546575752590300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"fb240ed8-9033-4bf6-ae3f-e534e2ec61a7","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"fb240ed8-9033-4bf6-ae3f-e534e2ec61a7","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"fb240ed8-9033-4bf6-ae3f-e534e2ec61a7","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473904f4b1d5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=LxR2Pghf3obyVZ%2BPn4EjlQodp%2BaB80xKZWbn7yEouq1mZNu%2Bln8Xtq%2BR%2F4Hf4pg40fZSujzqH2msgzrNwNkhp5MdueWbhhQFObU9VT5CaxeQz%2BaaQ9kNU7fTCu%2BA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=25541352b5ad11ee80510267d10d6995; Expires=Tue, 16-Jan-2029 02:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=25541352b5ad11ee80510267d10d6995bd5775fd1de6e4e66db60929c0593a2cee8a94a509b57c862b0c5b2172890122; Expires=Tue, 16-Jan-2029 02:56:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a58a80d6f72b88414b2a50e33e49507a1f007baf-1705546575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=QLMQpvAt.OPd5bWSUxX4yEWdHKz6bdUXEHyJvzIiqg8-1705546575650-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705546577","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1054, 1, '9f645c40-a517-4697-bc62-b47a17586154', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/53/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/53/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546576171751400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9f645c40-a517-4697-bc62-b47a17586154","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9f645c40-a517-4697-bc62-b47a17586154","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9f645c40-a517-4697-bc62-b47a17586154","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84739052bc965e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=CMfji364I%2B%2FO5dV39voead1DQrkqxNFk6V3KE033FrUD5a8N6QYJPDNhQCx%2BMixtZ9Avn1Sd%2FwEJQPCgos1gdC1AJs588LwIgTX0HBMr6VvEBfpAe5wLCbndM%2BYs\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=25a4df26b5ad11eea81b66ff5d7cf0f1; Expires=Tue, 16-Jan-2029 02:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=25a4df26b5ad11eea81b66ff5d7cf0f1b69524f59c317680e0cf3d36eab3f6f56bb461bbebe28a22f223354c3f4927a2; Expires=Tue, 16-Jan-2029 02:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cc6445bf7fb4ca1e4b8cf5a57dac70ab3e143fa8-1705546576; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=_DokPYiOZhSMzvThd8hKBz9MsDhb39wwbe4Pv4mHsjg-1705546576173-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705546578","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (773, 1, '2657c80e-d28e-4997-a16d-4291102cc164', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[6189e53](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/6189e5347420d4bbcee5c4f550ed3cd17a77ba41) Merge pull request ''fix icon user'' (#86) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/86 - hungthinhne\n[bf23020](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/bf230208b1efd148c1dec00f3c4eb158311100bd) fix icon user - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/6e16637a65f7d4d092a3cdbdbd178eb1636964e1...6189e5347420d4bbcee5c4f550ed3cd17a77ba41", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705044540476163300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2657c80e-d28e-4997-a16d-4291102cc164","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"2657c80e-d28e-4997-a16d-4291102cc164","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"2657c80e-d28e-4997-a16d-4291102cc164","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443af97c8075e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:29:00 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ph4%2FbHqclyotIk4v4J%2F5YNR%2FchFLLAjYXC75XaMZK3tQPTffLHSkoxfIw8xKpufV%2F7eU7VP7juAs2HB4sN7uSc3FQPHErFVMv4ZKr55WC7zQ01xc%2FdBASASUayex\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=410a29dcb11c11ee8a537effd249f8e5; Expires=Wed, 10-Jan-2029 07:29:00 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=410a29dcb11c11ee8a537effd249f8e57db71b4b3b84f9376524104a4b3d5731b461c9c806a80435e2ad9f5f02178993; Expires=Wed, 10-Jan-2029 07:29:00 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=a515bc305c374aee257566912b0a7e5ef5dfeb59-1705044540; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=gwCFlaEPB0AADmKVRNmVK1Jh6VKA92AxN1.Tp0McFsI-1705044540455-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705044541","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (970, 1, '9ed05c27-602d-4197-b286-3fa27923ad3b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/90/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/90/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705428972455731400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9ed05c27-602d-4197-b286-3fa27923ad3b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9ed05c27-602d-4197-b286-3fa27923ad3b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9ed05c27-602d-4197-b286-3fa27923ad3b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8468591f9b8c5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 18:16:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AEdsxsp8PESWXX58fFY6mcA%2B5YYnhmu6fDmBBDKyHkCTq5fJLNqR%2F4QwVZFNsXnvq%2BZ%2FIfkA5Etks3VC78kDiKA1rF9siz72A5t6jhCL6Mocepa7dT3Ci%2Br1%2B4sB\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=545a33bab49b11eeb17862d2e79627d7; Expires=Sun, 14-Jan-2029 18:16:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=545a33bab49b11eeb17862d2e79627d7b122dcc897b295a2468324fabd93a8e02b01cc0ed50dfbeb60ab85193dc27a3d; Expires=Sun, 14-Jan-2029 18:16:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=81fa241183d19ccba8653fafdfecfc417d1e5e6f-1705428972; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jNCUN95OYIPZPZzvTqYka1qY9AuoOF0A85pZt5VQuzY-1705428972429-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705428973","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1058, 1, 'f5f63c41-c2b0-483a-be89-93938db93984', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/55/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/55/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546578257110800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f5f63c41-c2b0-483a-be89-93938db93984","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f5f63c41-c2b0-483a-be89-93938db93984","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f5f63c41-c2b0-483a-be89-93938db93984","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473905ffaae5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rNdMwHH%2FXYzcKobchgkGR60VEyoKlhpXVqKyauVk8gDisIcI%2BtwMv%2B%2BiER46khYn%2Fu0x%2BaJI5IJXxcVXbwjf%2FFWPR2h7Qk8pAN2FTu4cUXIELtAzVcVFs%2FGXQlcQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=26e29a2cb5ad11ee82eb0ae314152ccb; Expires=Tue, 16-Jan-2029 02:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=26e29a2cb5ad11ee82eb0ae314152ccbd454241808e71cbfa868b1c6719721c18821ab6d895ab43123abd6dffbffda08; Expires=Tue, 16-Jan-2029 02:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=2c883d758d2197326e99a7b0caa93d1d6d9a9c85-1705546578; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=sO4ChKJ4PG4MrMqzpZ1vGrOlXPLAmaeWwviUB3sqfm4-1705546578258-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546579","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1059, 1, 'b02fccfd-a7f5-43da-94d6-6831839dca50', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/55/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/55/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546578634473900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b02fccfd-a7f5-43da-94d6-6831839dca50","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b02fccfd-a7f5-43da-94d6-6831839dca50","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b02fccfd-a7f5-43da-94d6-6831839dca50","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847390626b855e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:18 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dJKCYsMZ%2FZjRJOk09qteq11FczIMyEoZAVnNAn%2FCCPUFv2dRqiQ%2F65uVVIwkDgxcVxiCea6gOXLWPY1ufYH7Mo3x9FuFXMduKNsi7mtQVnxqe%2FsOXrNfH33O%2FqtY\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=271c9286b5ad11ee86b066ff5d7cf0f1; Expires=Tue, 16-Jan-2029 02:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=271c9286b5ad11ee86b066ff5d7cf0f12699af66bbca107bf973aadd6a09da1b8f2e9e262bb69571f4f01bb173860d04; Expires=Tue, 16-Jan-2029 02:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=2c883d758d2197326e99a7b0caa93d1d6d9a9c85-1705546578; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xjbrf6PFACksN7tl8REaZOz0EHEZ7YFdkNFCAo3asMg-1705546578634-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546580","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1060, 1, 'c241d53b-4b88-4c42-9b79-3f788e281c7b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/56/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/56/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546579056193200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c241d53b-4b88-4c42-9b79-3f788e281c7b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c241d53b-4b88-4c42-9b79-3f788e281c7b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c241d53b-4b88-4c42-9b79-3f788e281c7b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84739064bc4b5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:19 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=KYUZk6P4vA00gne%2FWs%2F4Vyk0owcQKcG4hmDjDYriNhVz8YUMItbVuy3Aspvyd%2FxvszOOzxxsDgFGYF3Azknrclu2PAawws3zkJxKzdRZq6mB8EtMFy%2FJOsy83Rka\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=275bee36b5ad11eeb3d53a49086b5590; Expires=Tue, 16-Jan-2029 02:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=275bee36b5ad11eeb3d53a49086b5590ee17512d97ca96bc79c9cb1720b65d49f8667411919e931eaef8b34fb4eecbc9; Expires=Tue, 16-Jan-2029 02:56:18 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca21a85b72691596131074c68ea1ec44fbd9654e-1705546579; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Ws3cu4gTlbl0uMJXhuvbpE8BdsLyO2H1GHRnUWkblis-1705546579053-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546580","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (971, 1, 'f8f2f787-6bfb-4f48-97ae-da28497231c6', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/90/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/90/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705428973501515100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f8f2f787-6bfb-4f48-97ae-da28497231c6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f8f2f787-6bfb-4f48-97ae-da28497231c6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f8f2f787-6bfb-4f48-97ae-da28497231c6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84685925fce65e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 18:16:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AEIabhsRvtBdIpMincAy%2BYQc1HfbAMIXn5wre9QBKBaqr0qdq6dawsJShoAskc8GRY2r4t8Lch0Z1eeNizf7ShB8HKhrdYeIoTsX9knmM7TGfVKf6dgR9HGDhgZd\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=54f9e018b49b11eea9caa223830e53dc; Expires=Sun, 14-Jan-2029 18:16:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=54f9e018b49b11eea9caa223830e53dcfb05aaec838069c673cdaccdfc859c44f67ab8d539a6bb88ef961c959f12a2da; Expires=Sun, 14-Jan-2029 18:16:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=686fd7fe1b92f9ac4e6ed49a4002da0753d91d12-1705428973; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=h3cLQZbx5C_y7SM7tGWJOipfZiTBCuTFnv_.vGKuyRI-1705428973475-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705428974","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1067, 1, '5e0b3b56-d255-424d-9e2e-276cd9cdcf31', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/59/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/59/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546573026451500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5e0b3b56-d255-424d-9e2e-276cd9cdcf31","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5e0b3b56-d255-424d-9e2e-276cd9cdcf31","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5e0b3b56-d255-424d-9e2e-276cd9cdcf31","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473903f0dae5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=9tfOAEpBs8pu7RI7gG80ahzM%2Fwv0SG5caQttgEw6D4oPDl6%2FiF%2F4d0%2FkMXUdHeybUiKZA51YYvRGG6KQbWlUjCtpEhy5Eh4gn%2BZP3gziO3RdRKkR3J6Wqj25eEgA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=23c42b26b5ad11ee9d6932177206e909; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=23c42b26b5ad11ee9d6932177206e909fd1f25fca249ac429107747094078f3345dbc12216df044a9ca113325fd3dc9b; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=330cd3a417f747ee9b5818c4fbb5755cc4a86e76-1705546573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=yeC24aOh9IhVg7aRROxuZos6Rc6KTpqZg9uh_vaxQeY-1705546573030-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705546575","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1061, 1, '274090c7-db90-4cc7-8a52-1ceb99a6c473', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/56/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/56/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546579503913600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"274090c7-db90-4cc7-8a52-1ceb99a6c473","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"274090c7-db90-4cc7-8a52-1ceb99a6c473","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"274090c7-db90-4cc7-8a52-1ceb99a6c473","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847390676d675e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:19 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2Bsy0sYbZHRJAVrh4Shc2m%2F4wcwsQG7x77EiwG6DBjrM%2FfVssxydzZJthLXiJX7fgCYFHd%2BYCYohXA1zHvSu8KjXI1EkattIrqKv3gpzdK1s%2B6QNqHpE6etXP6bex\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=27a12f82b5ad11ee8f306623e0a83c3c; Expires=Tue, 16-Jan-2029 02:56:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=27a12f82b5ad11ee8f306623e0a83c3ccab9ea389345b57fc25848a9dd5c4435266e42861c716c8ce84023e5b82b80c8; Expires=Tue, 16-Jan-2029 02:56:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca21a85b72691596131074c68ea1ec44fbd9654e-1705546579; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=kzHRCsZkN8wXpx.0jJxBv5XWP8xUh451u4f.q3a9DIU-1705546579504-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546581","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1062, 1, '32b758d0-c309-438e-a7b1-8b1eb85be29d', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/57/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/57/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546579932079800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"32b758d0-c309-438e-a7b1-8b1eb85be29d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"32b758d0-c309-438e-a7b1-8b1eb85be29d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"32b758d0-c309-438e-a7b1-8b1eb85be29d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473906a2e815e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:19 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=nvqLtE8xbeEom%2F%2Fk940MY2J%2FinhdkMCfCSiaW%2BEOOthIRnWgH9fgS3T0Pnk8j9%2BuEbuDCNWBetVmiPqLtej6E8OLbjAymqqUera3%2BnjffV8JghPzSrMCrafm%2FkPD\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=27e24076b5ad11eea382ba626bf69b97; Expires=Tue, 16-Jan-2029 02:56:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=27e24076b5ad11eea382ba626bf69b9739a832c8212e81b6103d63980efc7de2d6435122260e97d25f9b518bb5d22e57; Expires=Tue, 16-Jan-2029 02:56:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca21a85b72691596131074c68ea1ec44fbd9654e-1705546579; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=DZuJJ0W.fX0sOTZWgpX7CKg5WDBKioVJaRvQP1ngyq4-1705546579932-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546581","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1064, 1, 'da1ed0d4-278d-46d0-9775-625078a2a515', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/58/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/58/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546580774259800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"da1ed0d4-278d-46d0-9775-625078a2a515","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"da1ed0d4-278d-46d0-9775-625078a2a515","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"da1ed0d4-278d-46d0-9775-625078a2a515","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473906f69815e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:20 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=9Y3570nN53v9Qk1E9DjYqRvaL8pjc1fGzM42zeTenIz1G2qLt%2Bw2ptwh%2FVAk0q8ppfsd2aQBu7X5Y5DrTrMccisEi%2FaNYiWf7ru%2FjGfUlzKI3Pk1iYl4wyNB5GD6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=28626dbeb5ad11ee9b9cce7502e4b1ca; Expires=Tue, 16-Jan-2029 02:56:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=28626dbeb5ad11ee9b9cce7502e4b1ca7a06ee7d2784533fd8b3f1f91921e44ea9754eb65b487ef54daaa67a9f9101eb; Expires=Tue, 16-Jan-2029 02:56:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ac6fc27052bf8506e162a0e8e5e81a79f67a5360-1705546580; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5963sl1f0UJ7CKDWqYqsgCdttuvy0MLlJLTqZXw2LLg-1705546580773-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705546582","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1065, 1, 'acafdacc-d430-4c84-b029-f4f1e86836e1', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/58/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/58/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546581294935500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"acafdacc-d430-4c84-b029-f4f1e86836e1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"acafdacc-d430-4c84-b029-f4f1e86836e1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"acafdacc-d430-4c84-b029-f4f1e86836e1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847390721b005e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:21 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=r3%2F3lOdrQ%2BvP5Sijw7WoRdrYLaSI4vl6t%2BDQXoLL43pLj1Inx0iNep2TLqdvwlchwNqJdvel0d0o%2FXV9%2FDxIPf%2Fdvvq6SJuhMk5oZZTlQfOHJrjbx6a8GwNIq4bj\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=28b2ec1cb5ad11ee9bc16e3d676c7fd9; Expires=Tue, 16-Jan-2029 02:56:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=28b2ec1cb5ad11ee9bc16e3d676c7fd9e3c951b2caf8d82c3ec8f63ca2c790f634735ffc3d810b0548a620b51c89653b; Expires=Tue, 16-Jan-2029 02:56:21 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ba2df7e40a51d42df42b9d3aceab4b89561685db-1705546581; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ST6QIEQRml.QGk5DBLU1PH.Xjek_SnCF327ZYeiVuyw-1705546581298-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705546582","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1068, 1, '9618fb76-cb1c-4d9e-9720-c6878d79aa0e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/60/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/60/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546573400151800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9618fb76-cb1c-4d9e-9720-c6878d79aa0e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"9618fb76-cb1c-4d9e-9720-c6878d79aa0e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"9618fb76-cb1c-4d9e-9720-c6878d79aa0e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84739041aec75e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Kcz1S4dK2MH09JackwPAi2vA%2BbGyOC6nyba7UtI9X2fQ%2BOahA7Sg5MmWqR6a4rVftydK%2BwQ4lEv7sAQ6jKExGnWRf5qwFxpkbcsaLpplAyAYKc7GjhnC2K2EqbyC\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=23fdee6ab5ad11ee93a5ba51d2688d93; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=23fdee6ab5ad11ee93a5ba51d2688d9340e254a9f6f8ffd7e096f5c263f86889a36d65aa4e69d8ee16c84c7ca5e74adc; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=330cd3a417f747ee9b5818c4fbb5755cc4a86e76-1705546573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=UseeuKhMTMQuhG7mpYqNr8jlBLW6_bSrkwhdSBNdFy4-1705546573404-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705546575","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (972, 1, 'a5bdc3ee-6f35-475b-877d-599ace4db7e6', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/91/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/91/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705428973890507200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a5bdc3ee-6f35-475b-877d-599ace4db7e6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a5bdc3ee-6f35-475b-877d-599ace4db7e6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a5bdc3ee-6f35-475b-877d-599ace4db7e6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8468592c7e875e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 18:16:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=58tkbbJIHm3XaRpGv5RspoyaAHc%2FBkd7faIlIpE4zWJcnMg%2FHLJc%2Bdzgn4vvSCmvN1i%2F4t4YSRBH3GbbVAaFCu4dgqXNuTAUJ0IZw%2B9caI%2FkyZrKIo%2FfwRLHd8gH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=553535fab49b11eeb913ded0d289fb79; Expires=Sun, 14-Jan-2029 18:16:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=553535fab49b11eeb913ded0d289fb7909b78ade4eb1cda31bc05c85c9bad914cec2f11624a75f4767ac58d94bf8df9e; Expires=Sun, 14-Jan-2029 18:16:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=686fd7fe1b92f9ac4e6ed49a4002da0753d91d12-1705428973; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=sw0nScD03r6XnOJoKjHT4kIuqNgQUSTRmlr1YVQU7hk-1705428973864-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705428975","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1069, 1, '60843d50-6c1e-4458-bbf1-4d4d3b8080d8', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/60/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/60/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546572566867600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"60843d50-6c1e-4458-bbf1-4d4d3b8080d8","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"60843d50-6c1e-4458-bbf1-4d4d3b8080d8","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"60843d50-6c1e-4458-bbf1-4d4d3b8080d8","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473903b8c725e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4JQTBob%2F9Fbcnho91KxRemdeqcfTKybbTxox11iuh4rf7CybILm4KQMdDxRtFtATtE7kMzH66MTsFZWjiEYd0nDNlZMDWQKJ%2FZ3u%2F5HK9jxdN00il%2FW9Y%2FVSBhLi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=237ca170b5ad11ee93117a34482fb976; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=237ca170b5ad11ee93117a34482fb976d76fd90869fbffbf63ce5f076698de47e01d80009c6ccdf5210166ecca621d6c; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d33ec70d4b0a6ce0210d6697c1a7cc0ab27b5660-1705546572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=o8xZ78vCVZs.y0733w2STPmKGk3GwsRuiqQh.jVgt68-1705546572571-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705546573","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1070, 1, '8475752e-7fdb-42fa-bd6e-cf564b6b0843', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/61/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/61/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546572990700000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"8475752e-7fdb-42fa-bd6e-cf564b6b0843","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"8475752e-7fdb-42fa-bd6e-cf564b6b0843","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"8475752e-7fdb-42fa-bd6e-cf564b6b0843","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473903edadb5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WEV7ZaekdZry9AKqO%2FtC%2FGSGnn1FSoL63JfzoW0awwT8MIO7eHicr%2Fx3NNy2gyGYASBV4KjC%2Fq8LjNRI%2BdBLGukAvOHYCsYP0Hy1Io70yHiVyFpBUBzKX0OdRxwt\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=23bf9dc2b5ad11ee9b7ad2329e47154a; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=23bf9dc2b5ad11ee9b7ad2329e47154a519be729d4ec4aa6cc8604d70c1714db471de742abc922160081ba6b601c175c; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d33ec70d4b0a6ce0210d6697c1a7cc0ab27b5660-1705546572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xMIKlke2CcoD9QJnFvmQVm4Jm7xpSKS9RiorwKVqSiM-1705546572992-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705546575","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1106, 1, '3eacee16-a14a-43a3-911d-336034f40171', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/43/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/43/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575516221527800, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3eacee16-a14a-43a3-911d-336034f40171","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3eacee16-a14a-43a3-911d-336034f40171","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3eacee16-a14a-43a3-911d-336034f40171","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652de6c625e38-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4tuzRoEpF9wwUTk3%2BsvrjBBTg7Sw8Jk3UYh9CD7oj86cxuJHwzF4XjgBLJ%2FCTl87P%2Bh1zbHyF9UIhoTgQ4l0PAmDbhkKIfdpgEYTKJ%2BEmo02xqcn63fzW2tJAF0M\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2272","Server":"cloudflare","Set-Cookie":"__dcfduid=873d8bbeb5f011ee9e09366a902dd69c; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=873d8bbeb5f011ee9e09366a902dd69c4dca2ce945fcf0b1c40e3023123d5b4f8f17cd85b8ced098129aec91e3098658; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=275b3facf7ca33ba2f76f12672a9f3bf186b6f99-1705575516; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=2boarErg_XQby6E6BcBdwNWPxicI2aco6AsdueZqqIc-1705575516192-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575519","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (1107, 1, '06f77d32-0fd2-427f-ab7e-e5f479585903', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/43/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/43/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575516560455400, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"06f77d32-0fd2-427f-ab7e-e5f479585903","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"06f77d32-0fd2-427f-ab7e-e5f479585903","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"06f77d32-0fd2-427f-ab7e-e5f479585903","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652e06ca65e38-HAN","Connection":"keep-alive","Content-Length":"81","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sShaRgxJakEqQv57qVWmjtVyJItoiHg%2BMjeLGbch%2F5itjKI0y1lkexjrseoeNBnO%2FCSw8aSgBIJ7TT%2FZ%2BqQ2ebnnmBpkQFs%2FON6tmmih8Q4GOpiCBeRARpxim9J3\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2351","Server":"cloudflare","Set-Cookie":"__dcfduid=8770dfbeb5f011eea735c63f4a2b7744; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8770dfbeb5f011eea735c63f4a2b77445dbf1595eba92f047856f13ac33f24ad5e8daf5cb801f23967ea02672c69cd08; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=275b3facf7ca33ba2f76f12672a9f3bf186b6f99-1705575516; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=bsito1py.fNCDC7Q9XeMdtr5KlpwyE4kMlZPFTCTn2Y-1705575516531-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575519","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.351, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (1071, 1, '5de1ed3b-5f52-4bfc-9740-62e734769da2', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/61/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/61/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546573562863500, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5de1ed3b-5f52-4bfc-9740-62e734769da2","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5de1ed3b-5f52-4bfc-9740-62e734769da2","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5de1ed3b-5f52-4bfc-9740-62e734769da2","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84739042fcf25e36-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 02:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ZCqG0QPJVeUNdjyCMKx0uvBGFcXjNQi8HcZSQp%2F1cIHaTDgwULkKopAOmJ%2FJhAwkU5nDKUvUsD0SiN5Hiy4x44gcGXgEXvZ0JwUUoTm6P6JLYUJwxPKr8Gu2xmWa\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2267","Server":"cloudflare","Set-Cookie":"__dcfduid=24164fa0b5ad11eeb356ce7502e4b1ca; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=24164fa0b5ad11eeb356ce7502e4b1cad62b944d09ee236f39c81a505039b6bc9dc985edc9ef6dbf5d5e24d7b83cfcc5; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=330cd3a417f747ee9b5818c4fbb5755cc4a86e76-1705546573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=BfMHyY3N3WGOVHISLzFndMv1COoZUp6gjcqq1KXliJk-1705546573566-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705546576","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (1066, 1, '47ce355e-7103-4d41-b13c-3239d957bb80', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/59/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/59/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546572602623500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"47ce355e-7103-4d41-b13c-3239d957bb80","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"47ce355e-7103-4d41-b13c-3239d957bb80","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"47ce355e-7103-4d41-b13c-3239d957bb80","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473903aec355e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=QBGd5S3DiimyoB5jc0SSWN53OwM3%2BowgYAKMOk%2FO07r3YXRZG4NxWLOgvjVTtta7UFZt29uCzwR9d%2BUZKbegbr3aHnnmxrq38CaoAqLDXtDDhFUChGWhoaBYczs4\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=23845000b5ad11eeb5a7ae5ae1096b78; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=23845000b5ad11eeb5a7ae5ae1096b78b2f51adc70a96adb82740817796d4b03df28888dbebf1898caa88f04f29f29f4; Expires=Tue, 16-Jan-2029 02:56:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d33ec70d4b0a6ce0210d6697c1a7cc0ab27b5660-1705546572; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vZQNH6aEIXkaIgslDwIfE3lN6Ur0oXX0s6Ux9PyGoao-1705546572607-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546574","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1049, 1, '1bdf0e68-70b4-4bf8-9cb1-f60b2fae7566', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/50/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/50/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546573882341100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1bdf0e68-70b4-4bf8-9cb1-f60b2fae7566","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1bdf0e68-70b4-4bf8-9cb1-f60b2fae7566","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1bdf0e68-70b4-4bf8-9cb1-f60b2fae7566","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84739044bfed5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0dlNeYocN2eITUok4Yzr%2FQGkGFM7XRdS%2FGpqIrWYMhNn1cD4gGw%2BjNtpZRHMbjULB6S3HFBcAdvAP4xtK7EYe%2By7mMEWHI9umk16qgHcIbqLIOTD%2FpIU40nhbICd\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=2447ed08b5ad11ee89c03eb069a881f7; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=2447ed08b5ad11ee89c03eb069a881f72d5fc7c96f1f7c851f36d4f999e597ab476aaf66074fbeb362e2fb3e940ac645; Expires=Tue, 16-Jan-2029 02:56:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=330cd3a417f747ee9b5818c4fbb5755cc4a86e76-1705546573; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=70wf8f5JS6tnwy8fp0KShgbh0KRLo5tZiMQ77MCEz84-1705546573886-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705546576","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (894, 1, 'ff7473fc-550a-48c4-8f49-15a8c52ffe91', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #98 fix search all page", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705329307305764300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ff7473fc-550a-48c4-8f49-15a8c52ffe91","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"ff7473fc-550a-48c4-8f49-15a8c52ffe91","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"ff7473fc-550a-48c4-8f49-15a8c52ffe91","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845ed7e84e5b5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 14:35:07 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=IBV3JmcpOfy%2B9OHO5%2BNunlCxUxIMfC34QpRcVK%2BB2gd3IW96YSltIVD38Hu%2Fxxa8jIpDUDJLx2gAW%2BRbZ3gyZNCkNE4oDOdTg5qLBb%2BNlOZFxBr6PJH1sPOjZHdV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=474b9364b3b311eeb6d552c1b981c921; Expires=Sat, 13-Jan-2029 14:35:07 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=474b9364b3b311eeb6d552c1b981c92197f452fb428e643efa92f04ee0229eeba452a4ea8a115c879bf376ca37a123d3; Expires=Sat, 13-Jan-2029 14:35:07 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=4298981b8726102ecb5b3a1c0f5147d6c02a2b82-1705329307; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=4mGwbw8CdBAgAaPQdH3B2QAQSifScsNoLmjXR.B6WfA-1705329307281-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705329308","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1055, 1, '6bddb4bc-c144-4a7c-a268-3d94082f8889', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/53/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/53/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546576739601500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"6bddb4bc-c144-4a7c-a268-3d94082f8889","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"6bddb4bc-c144-4a7c-a268-3d94082f8889","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"6bddb4bc-c144-4a7c-a268-3d94082f8889","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847390555dd15e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0XcTuKiJm8Kd9CgBHAg9tZ4DwfemlKDiIQfWxSD8RAL%2Bb4mKT8HNGMLjvHm5TaITumQAhOAzZI0OC6AgrEfVSIm9QGSF7V1gTOfiLGqCLIITOSErsjBrKi8jSaM5\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=25e00308b5ad11eeb1728a64968c9927; Expires=Tue, 16-Jan-2029 02:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=25e00308b5ad11eeb1728a64968c99270787165ac987231beaa0dada0961c7600e7a4e7e3fed89ee314eaf5da59af671; Expires=Tue, 16-Jan-2029 02:56:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=cc6445bf7fb4ca1e4b8cf5a57dac70ab3e143fa8-1705546576; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7_SbKM4uZPPneX7iKfEPGxF5k1MP6WYc0pb3wD3GdUw-1705546576573-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705546578","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1056, 1, 'd0107dcf-5c1b-42f6-bfc8-1f98b3eb40b0', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/54/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/54/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546577303526800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d0107dcf-5c1b-42f6-bfc8-1f98b3eb40b0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d0107dcf-5c1b-42f6-bfc8-1f98b3eb40b0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d0107dcf-5c1b-42f6-bfc8-1f98b3eb40b0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84739058ef495e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=4ecEP90JdOfRXfafDyyOfol7t1Jp9jcwxIcjHe2sQsZGHkSIdOgIantkPCMOfvj%2BcWitq1TQaq825g7nkSKfqgaGbF6xDeqvATugmhQBJKB%2Bd1ziPPeZvG0FBWwk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=26513320b5ad11ee81a66eee6087a04c; Expires=Tue, 16-Jan-2029 02:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=26513320b5ad11ee81a66eee6087a04cc54b35007d74d72b73e51a9ec8c0f736d521e91992df4a6171c734db0129a62d; Expires=Tue, 16-Jan-2029 02:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=76a273c341917f8039b9d61afbdc7f0974c5a21c-1705546577; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=hMTVxqffSSvBjmrjR8nnEWPTvyXwSvYem0Lrpwkct4w-1705546577305-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546579","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1057, 1, '7f392adc-0216-42f5-ad9b-4f5ce8d16a2e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/54/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/54/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546577878282200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7f392adc-0216-42f5-ad9b-4f5ce8d16a2e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7f392adc-0216-42f5-ad9b-4f5ce8d16a2e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7f392adc-0216-42f5-ad9b-4f5ce8d16a2e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473905c68f55e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2BAtdtoH5mKIqWFUJEGgRc94QblGUbAosvHJPn7p%2FXPERwPmqw1EvhmAe2jBT4IGGeDgPQZGLiKzOD6jiOnmGjJQPNKWqiQxVrfRSNjPgucU8Ag86FdNCYf1PRgxl\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=268fd378b5ad11eebb817a3ec876a4e7; Expires=Tue, 16-Jan-2029 02:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=268fd378b5ad11eebb817a3ec876a4e7d8da928433ab310597be2fa685f7e2ea1657c635e3dc01f4c9f44cb5d1e1bec3; Expires=Tue, 16-Jan-2029 02:56:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=76a273c341917f8039b9d61afbdc7f0974c5a21c-1705546577; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=46wvNgbLPW1AsrkXZ2qtdfDEt67df4fuebzv.pn9Jy0-1705546577715-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"2","X-Ratelimit-Reset":"1705546579","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1063, 1, 'ac4ada65-f0a8-4bd5-a6fd-c971615ff8d2', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/57/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/57/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705546580341144700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ac4ada65-f0a8-4bd5-a6fd-c971615ff8d2","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ac4ada65-f0a8-4bd5-a6fd-c971615ff8d2","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ac4ada65-f0a8-4bd5-a6fd-c971615ff8d2","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473906ce84c5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 02:56:20 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=oR6Px%2BqNavsQ90RG%2FHFz8z95SaAN5RkPUbVoryo6QG5JlKQONvkhX1nucZolMCk%2FXnx6HkJ2VOwRmc8%2BydhGR9BtPcSkah4NAVIXlO18WhP1NpQNeBtFj42M5006\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=282055e6b5ad11eebe2b4e94dd5143dd; Expires=Tue, 16-Jan-2029 02:56:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=282055e6b5ad11eebe2b4e94dd5143ddad662acf8d0d4a2840b16652a2f8019686ca04334c37d14512c96321d0dc9fdb; Expires=Tue, 16-Jan-2029 02:56:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ac6fc27052bf8506e162a0e8e5e81a79f67a5360-1705546580; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=LyZwbVywrl44ioUiZksTz9ckyIpv8wG2eBL0C7dk3WA-1705546580345-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705546581","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1072, 1, 'a222a884-9e8f-4bc5-aaaf-33359a53e001', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/admin:main] 1 new commit", "description": "[f9614b0](https://git.gdtsolutions.vn/khieu-nai/admin/commit/f9614b0b54ea4166a9274f5c737dc61322fa9933) feat: update model, service for CanBo - vantuan", "url": "https://git.gdtsolutions.vn/khieu-nai/admin/commit/f9614b0b54ea4166a9274f5c737dc61322fa9933", "color": 1754624, "footer": { "text": "" }, "author": { "name": "tuan", "url": "https://git.gdtsolutions.vn/tuan", "icon_url": "https://git.gdtsolutions.vn/avatars/ef8cb8091e07736d503797a3fd007bb52d58ce27f461213703866d303da8e9a0" }, "fields": null } ] }', 'push', true, 1705547174143202100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a222a884-9e8f-4bc5-aaaf-33359a53e001","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"a222a884-9e8f-4bc5-aaaf-33359a53e001","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"a222a884-9e8f-4bc5-aaaf-33359a53e001","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84739eebbfdc5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 03:06:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=nYNVbqfKv%2BYVMvvsqDKDMOjICqKg5WuBa9uUZekuIkCKWuAA%2BlCvysqlFJocOVxtbFC2Vmi8dOVrVE1zV1xCpUCKqQ08vQoKAvM7YM730KYba5A4FRM7TwgcAoAP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8a103e14b5ae11ee9c2f6e3d676c7fd9; Expires=Tue, 16-Jan-2029 03:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8a103e14b5ae11ee9c2f6e3d676c7fd91137eeda7070c5eac98053a99aace88936da1423891f3573dd5ea68a8352037a; Expires=Tue, 16-Jan-2029 03:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=556627d1bb69adf25c61c3568c0f2e21c28ecfa0-1705547174; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ZQUE0OSot4ayqa_vh3jfHYTnjz4LbtzjUPDa87GtUHs-1705547174148-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705547175","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1074, 1, 'd967c719-f0f7-4d12-a9fc-7a43777ec0b4', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[dc9b1cd](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde) update bug - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705561358722274800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d967c719-f0f7-4d12-a9fc-7a43777ec0b4","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"d967c719-f0f7-4d12-a9fc-7a43777ec0b4","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"d967c719-f0f7-4d12-a9fc-7a43777ec0b4","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8474f939e81a5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:02:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ettPPsP4sEV%2BJ%2FaTofvrttRG5YevutQRXLOqEXTqcIHhVruH4AOZEqDraBR9YYZ7uKj%2FQJfHaBpYlF8pkx6KLY3%2BLn6dqoWrTCtAzgSn0948jE38RRYrwONnYlbm\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=90ba93a6b5cf11ee8e183a9588d6bd29; Expires=Tue, 16-Jan-2029 07:02:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=90ba93a6b5cf11ee8e183a9588d6bd290cca4fe9abe4c76052b068510270844eb97e2a4246701386b48715e02dcc1e1f; Expires=Tue, 16-Jan-2029 07:02:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=708ef1a42e457d64467debe327c8c03f9adb1415-1705561358; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=lrolrkmSAnfEscJZG4Mn7MxsCd_8CDIeM341VOXz6f4-1705561358720-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561359","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (774, 1, 'af356db1-15ed-49c5-a6f5-c9baed8041d6', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[8d033bd](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6) fix api tong hop so lieu tuyen sinh - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705045373859613800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"af356db1-15ed-49c5-a6f5-c9baed8041d6","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"af356db1-15ed-49c5-a6f5-c9baed8041d6","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"af356db1-15ed-49c5-a6f5-c9baed8041d6","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443c3ef9b245e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:42:53 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=jxeFsSm21brBKvzLMAy15X9u7y9MnNqNVcFdxsujCEOP9A66tK71lR150difU9IMrr755hkCguwxjoHlDqqGgAYUdZpbeZo%2B1r%2FsMXDwGGaAxmHCSFbkcmfqBaT6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=31c5e784b11e11ee97be32949a41b151; Expires=Wed, 10-Jan-2029 07:42:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=31c5e784b11e11ee97be32949a41b151e638c42c87732646affb63b483d0f5a4652ef8b4845c8e8662eb5a621a48624d; Expires=Wed, 10-Jan-2029 07:42:53 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=695ee145190eeb32bf4441154b1ede19d384a22b-1705045373; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=cF5u58d1csoFdGMybSM9TWtcJs4aOFe03s0aJSuOuGA-1705045373838-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705045374","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1075, 1, 'b969a4f6-8f30-407f-87ec-16659af4bb2b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #110 update bug", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705561419867245800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b969a4f6-8f30-407f-87ec-16659af4bb2b","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"b969a4f6-8f30-407f-87ec-16659af4bb2b","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"b969a4f6-8f30-407f-87ec-16659af4bb2b","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8474fab78c195e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:03:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=zQxPQAt5k%2FHN6wxegwJVm1Ec0ySPDTsB%2Bug3ieZ2am0yM4veGZR2i7NeUPY%2F%2FD1kp%2BSZQD7dvDxkLAO51k%2BW2l%2B9ZKjpyK70lTwoiYNYopMdo%2B6P5QmqYY6EUhSh\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b52c80d2b5cf11eeb243fab697dde37f; Expires=Tue, 16-Jan-2029 07:03:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b52c80d2b5cf11eeb243fab697dde37f3a0625b71169cda4ac16a4fddfe5608ceee69611dcf106c235488bc189a653ed; Expires=Tue, 16-Jan-2029 07:03:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=19be1d090dd9988e95efc0bc9e7cfdb0c5bbfe79-1705561419; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=oPMwgscltJI7hiWSUjYC.vfmmKLhpCqKFXPKkNvnu0w-1705561419865-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561421","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1073, 1, '0be88f5a-6217-46f4-8d67-5e37e3f26de9', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[khieu-nai/admin:main] 3 new commits", "description": "[814c283](https://git.gdtsolutions.vn/khieu-nai/admin/commit/814c2834abecae300e8f733df62b8c2d0e7f835f) service - Nguyen Chi Hoa\n[9f9d2ca](https://git.gdtsolutions.vn/khieu-nai/admin/commit/9f9d2ca7eb9ff7db8ca7980523254c40a6a62d62) add pp - Nguyen Chi Hoa\n[c8b7fe3](https://git.gdtsolutions.vn/khieu-nai/admin/commit/c8b7fe342b6bec24bb2301d59eb7b5001a1343fd) add form - Nguyen Chi Hoa", "url": "https://git.gdtsolutions.vn/khieu-nai/admin/compare/f9614b0b54ea4166a9274f5c737dc61322fa9933...814c2834abecae300e8f733df62b8c2d0e7f835f", "color": 1754624, "footer": { "text": "" }, "author": { "name": "Hoagdt", "url": "https://git.gdtsolutions.vn/Hoagdt", "icon_url": "https://git.gdtsolutions.vn/avatars/71955e5d26ad26c5d213888a1d650773566d606fea1b0ea0ed6cc85e4b347bcc" }, "fields": null } ] }', 'push', true, 1705547957926705700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"0be88f5a-6217-46f4-8d67-5e37e3f26de9","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"0be88f5a-6217-46f4-8d67-5e37e3f26de9","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"0be88f5a-6217-46f4-8d67-5e37e3f26de9","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8473b20c5f765e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 03:19:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0tYx0XcYbS2gIG5s4d3Iv1ZxURMLYyfxsvjfCemzX%2FUjyeNl2%2FLPGx1M%2FtGQWFyc0YaNOIyUCDEzl6G9ELhUyQx%2BYjgSRD5OS5MZ2mnQzFNQT7Vuz6Gbl%2B6IuoHY\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5d181ddab5b011eeb9292e727e9f0112; Expires=Tue, 16-Jan-2029 03:19:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5d181ddab5b011eeb9292e727e9f0112e243cb8cd78236842e3c9bf78f63a8248fa81ef0c52703edebe1bf093266435c; Expires=Tue, 16-Jan-2029 03:19:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=2043be92d88ba1f25b1d5e2f750f085034865784-1705547957; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vzepgp1Adgv_qMAkqUCtzRJwyy3DFNrkmyGZGN94lMo-1705547957697-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705547958","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (973, 1, '317ab564-b0ea-463c-8ca2-d3f3daea4c1b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/91/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/91/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705428974259381400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"317ab564-b0ea-463c-8ca2-d3f3daea4c1b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"317ab564-b0ea-463c-8ca2-d3f3daea4c1b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"317ab564-b0ea-463c-8ca2-d3f3daea4c1b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8468592eef2f5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Tue, 16 Jan 2024 18:16:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=banUU7v9pAPGPde8yXbBONfTaVzQV%2Frmzd55AukxPLkJ2O33SUVgiX7laVosjLLXUTjYlNoqXK9DobceKARX2oLUEUOVeV4UqHxKdvdhlwPoWTc2ht9h2dSP4Kqj\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=556d929cb49b11ee96c0b6acc0b24d65; Expires=Sun, 14-Jan-2029 18:16:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=556d929cb49b11ee96c0b6acc0b24d656ea129041e2607ade0ccdde940c447ff0c7a2b0f745cd461cbcd8e711d6c29e0; Expires=Sun, 14-Jan-2029 18:16:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=c2db0e70687340898f8240cec174dd747b127ab6-1705428974; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=20vw1NXTZBjEimTCR5H2rhWVr4rYusBs32rBolYZ1oM-1705428974233-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705428975","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1076, 1, 'c24f4e26-8169-47a4-8071-0ed0d5c7c629', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #110 update bug", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705561435211277900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c24f4e26-8169-47a4-8071-0ed0d5c7c629","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"c24f4e26-8169-47a4-8071-0ed0d5c7c629","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"c24f4e26-8169-47a4-8071-0ed0d5c7c629","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8474fb164f575e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:03:55 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=gopy%2FD2Hjw7dG%2FX09dYL45Xm%2FcxC8cyF1xhG9b4hO8BCV7TMnkXVgJ%2Bfu0MPuUQflmK5W8V0%2BUUs3YvhlBuznlPem2EB3he8GJY0YUyH7uq9Owl8eCLmrDeW7uYJ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=be51d0a4b5cf11eeb26e5ef977b950fb; Expires=Tue, 16-Jan-2029 07:03:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=be51d0a4b5cf11eeb26e5ef977b950fb94305930d71631ea0c9b0bc804009a4536ccbf420933bb2a197acb1b7c35002f; Expires=Tue, 16-Jan-2029 07:03:55 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=af83a0415a98f1f451b40bc8084dc3fe3fbd1bbf-1705561435; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=EP1vdzFHZ.e8U_wwNXyX7oVzLvsY3oBcJwUFAI798go-1705561435210-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561436","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1102, 1, '3c2ea272-3e0c-4f7a-adc6-970fbcbc2fdb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/41/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/41/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575514699978400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3c2ea272-3e0c-4f7a-adc6-970fbcbc2fdb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3c2ea272-3e0c-4f7a-adc6-970fbcbc2fdb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3c2ea272-3e0c-4f7a-adc6-970fbcbc2fdb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652d3a8715e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:34 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=swMVUIIVzPNY3T99wxg5SFU1zX68RydNNIoMQBhmysTOGD9%2B%2Fmp5IrwA4LfUcv8Hju8VZYx5tmNbgdCMGoTWuG4YGTOXCaodVrB8OQOlh33%2FdsZlxDqz9MkEPU7V\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=865545c0b5f011eeb081cab431a3d395; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=865545c0b5f011eeb081cab431a3d395e0e302ee6e269c1fd05b50570f3b9a0dce4a0dd6e5208b830add0259ed990044; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca423c3252c1691b4410cdb36bc56c9775c55e7d-1705575514; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=7AKh_MdNNVonncGK8nxJUw_uGoOCkvFALt4ZjZor4yA-1705575514670-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705575516","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1108, 1, '1953cae3-1748-4628-85fd-0afeb079c527', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/44/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/44/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575516884078300, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1953cae3-1748-4628-85fd-0afeb079c527","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1953cae3-1748-4628-85fd-0afeb079c527","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1953cae3-1748-4628-85fd-0afeb079c527","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652e29d205e38-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=D%2FQT8YSwL4edQWcoeMrztu7E5sF%2Bp%2BLNNjBVkBh%2BXGdH9HSUycNbAJ7acerxAVfxg92GkyQlddMs6SDDOy%2BXzGwXRbfGnsXCHL%2FyV4PwvgRwGmFiHgwRcV1NjYcg\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2007","Server":"cloudflare","Set-Cookie":"__dcfduid=87a2a332b5f011ee89d91ae43748c451; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=87a2a332b5f011ee89d91ae43748c451e78700ad23429ac8911148763c3b5924e24b403f87b4fc1d7f1a6f9c8a6087d0; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=275b3facf7ca33ba2f76f12672a9f3bf186b6f99-1705575516; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=rgRMY08ytJQEQh9LLAAhJ3XaN669UtZCbDMyZuSFEEs-1705575516855-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575519","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (1077, 1, 'a8e9f974-1616-48a0-b09b-32b5c622ed5b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[6ae7b84](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/6ae7b846816d579b60abebb037d74ce8e8d332df) Merge pull request ''update bug'' (#110) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/110 - hungthinhne\n[dc9b1cd](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/dc9b1cd7ec18ad4fed9579e27f394b14858c3cde) update bug - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/d27bbd1a398cd332a453a4301f2539d4741f4829...6ae7b846816d579b60abebb037d74ce8e8d332df", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705561436527809000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a8e9f974-1616-48a0-b09b-32b5c622ed5b","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"a8e9f974-1616-48a0-b09b-32b5c622ed5b","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"a8e9f974-1616-48a0-b09b-32b5c622ed5b","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8474fb201b4b5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:03:56 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=y86WbMmKZ5Jlh1cFXrZZp7SnehLN8Ys3cSRm57HRN6MK4DeYMIOirBeoO4yzehEE7fME4gqF9DIZwZILeU0IgY%2BmIgQkk15Cg%2FHIOozyvt5Zgm%2F6X4Fn3zrEaohz\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=bf1ae02ab5cf11eebd0a6eee6087a04c; Expires=Tue, 16-Jan-2029 07:03:56 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=bf1ae02ab5cf11eebd0a6eee6087a04c8007e4c225899275f59030adfc94d696651bcdb5572c34f5ef9508658e78f41b; Expires=Tue, 16-Jan-2029 07:03:56 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=c7eb05f18ff4badb60065e4fb15bdb27a8c66cd0-1705561436; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=USVkQGFY6N.gAUmeNkYYV35ZFtuWQ6gtgZjxlBgOw9E-1705561436526-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561437","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1117, 1, 'b5fa6325-408f-4f46-8d0e-aaf75da70f75', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/48/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/48/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575515102144900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b5fa6325-408f-4f46-8d0e-aaf75da70f75","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b5fa6325-408f-4f46-8d0e-aaf75da70f75","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b5fa6325-408f-4f46-8d0e-aaf75da70f75","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652d6f9135e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ZNRs2QPQyr39iNtP1h8tyLp7rZKCyysTx7OeewXjL%2Bt096zygSMPJ2Y2kywi6orTFkNfK8gzHbzunhwpxB0Wc%2FX%2BC8l%2Fzpfmq5TY8Afx8pClG5L%2B6%2F11NfOOvF7g\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=86929f92b5f011eea8ee0249eb5f9c84; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=86929f92b5f011eea8ee0249eb5f9c84ebce4f1a792dfed02ad0e494bb2b424ba0c65751f53fec2cbf62b40f684b5a0a; Expires=Tue, 16-Jan-2029 10:58:34 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=489313edd043864583f510989b87c9b49a3a1ccd-1705575515; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=AC9iRTzT5FAcrBFB6BWjRECFxiXXX7hhVSmxBEYOl5w-1705575515071-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705575517","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1109, 1, 'cf8483f4-716d-4ac1-a66b-23e22d7861c7', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/44/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/44/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575517798580500, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"cf8483f4-716d-4ac1-a66b-23e22d7861c7","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"cf8483f4-716d-4ac1-a66b-23e22d7861c7","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"cf8483f4-716d-4ac1-a66b-23e22d7861c7","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652e49da25e38-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=BkhGKFkOupzSsxOtgSN%2BqDveAqYvAgbNV%2FXGp1udfdLuHHjOO4mRl%2FCUrYqS1bAjUyD%2BrEusVzeCdx26oiwgbisRO9ACeyV9HIgpA44w5ZR3p0RICog9jrTQ%2Bsio\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2295","Server":"cloudflare","Set-Cookie":"__dcfduid=882d6526b5f011ee8016a2e9572a1122; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=882d6526b5f011ee8016a2e9572a1122398f8e02c59ee12620383921650af7878b6c079d2de4626c5280d5adf81c0465; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bc39108a9b48925b015ae1ea9c62da2f86d41bc2-1705575517; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=g5LwPRaayZP0MQSWRM1ScudJ11KQtEqTX9N0_8s9c2k-1705575517765-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575520","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (895, 1, '4a3451e0-e847-445e-bb74-b4d434d14d39', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #98 fix search all page", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705329332350251200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"4a3451e0-e847-445e-bb74-b4d434d14d39","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"4a3451e0-e847-445e-bb74-b4d434d14d39","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"4a3451e0-e847-445e-bb74-b4d434d14d39","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845ed884ba4c5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 14:35:32 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=fGpBMRGMzr%2BNxBe2fRQSnsd0BoUiBnvr0MEaLMxLB%2Fd5WWUnme1ocsJ4rqVJCvpeNSG4YxIyZVTL%2B7W%2B3y8njLeKFDSy7X%2FwEmzjvS47CQygV9c4Ju6ixP5ELQJS\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=56391d6ab3b311eeb8ab02445d3d6a7d; Expires=Sat, 13-Jan-2029 14:35:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=56391d6ab3b311eeb8ab02445d3d6a7d783a05c80047af0fcad5fdf3d1ec899b3518b2385efe6ae05f87855537b76dba; Expires=Sat, 13-Jan-2029 14:35:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5f1e117240a873c3e96308a95e62212abccf9fb3-1705329332; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=jDFY9WWguvtHyBjlA2OUwJDPrQrcaLxD8kHLlvbH_eE-1705329332325-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705329333","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1079, 1, 'd520abe4-9715-4742-ad38-6967794d5d4a', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #111 fix bug", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705561838997665700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d520abe4-9715-4742-ad38-6967794d5d4a","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"d520abe4-9715-4742-ad38-6967794d5d4a","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"d520abe4-9715-4742-ad38-6967794d5d4a","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847504f39e5e5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:10:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=be3J%2FFp3wU8beT5RAuWSYDahYoyHRPNsc%2BD9PaEA8Cu12ZsEf7ydfX%2Fx%2BYkluHOsG27irurG7%2BsOmWrgg6eQxOtHKgl0VEQfi2PY3KmBlpoZX%2FcuAkd9jV1ZsYzV\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=aefdfb72b5d011ee8200868431f5278c; Expires=Tue, 16-Jan-2029 07:10:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=aefdfb72b5d011ee8200868431f5278c157b119546d943f2b4b5d1562c7baf790043d0c5088fb1041ac1d5c32099d5fc; Expires=Tue, 16-Jan-2029 07:10:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5a28ffba09de758612b7a621202f321dbca570ee-1705561838; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=UREt8ol1AO3qXlMHimH6x5uvNDfTHoCLT9pkEH2SdeM-1705561838996-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561840","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1078, 1, '3025d533-bdad-4c98-853b-e1711de99750', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[0fcc16b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/0fcc16b3a944af679c58d4542042b1e00f05572d) fix bug - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/0fcc16b3a944af679c58d4542042b1e00f05572d", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705561817951060400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3025d533-bdad-4c98-853b-e1711de99750","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"3025d533-bdad-4c98-853b-e1711de99750","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"3025d533-bdad-4c98-853b-e1711de99750","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8475046f6fd55e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:10:17 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xKe1m5lupHp3m%2FvL7jmaTQQ76R3sZXWHbYtNeXEkkPqIibF6paejr2MFZJcW%2BEC8x8ohIFivgHm5AP0NX2fmy2bnGQsh40saD2L2iQECiAoIsh64CDugsReV%2FlEu\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=a272c220b5d011eeb862366a902dd69c; Expires=Tue, 16-Jan-2029 07:10:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=a272c220b5d011eeb862366a902dd69c893e48047a84e4721822e3a6f45894eb3e03acf934f01a99c2ff83d071fa168d; Expires=Tue, 16-Jan-2029 07:10:17 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8ef660c7a0ec378b13fb154fd6b58db033146f37-1705561817; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vmaTQ.DbLbuT7qG7Uf1KTeaUke1wBVceF_Sn1JA8GEw-1705561817949-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561819","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1081, 1, '48564def-0ee9-4e12-a342-2ae495cca495', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[e3af78f](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/e3af78fc47531563603cb74b00a581af88476433) Merge pull request ''fix bug'' (#111) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111 - hungthinhne\n[0fcc16b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/0fcc16b3a944af679c58d4542042b1e00f05572d) fix bug - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/6ae7b846816d579b60abebb037d74ce8e8d332df...e3af78fc47531563603cb74b00a581af88476433", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705561864952875700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"48564def-0ee9-4e12-a342-2ae495cca495","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"48564def-0ee9-4e12-a342-2ae495cca495","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"48564def-0ee9-4e12-a342-2ae495cca495","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84750595af875e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:11:04 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=xEr1iTwA06S3wMK69BFoBoqGnrKotj9L3W326TLgo8lkA58jwvfwqczPVhr92WU2%2B2pFw1s42SiYVD%2FYGihpIfqSMVQzeFktuD2vQbfmZTJFjUDYOvN3hhCs33gq\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=be776f66b5d011ee92da6e3d676c7fd9; Expires=Tue, 16-Jan-2029 07:11:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=be776f66b5d011ee92da6e3d676c7fd96b96f6c688cc34cc4e14c986ea3629beff39cf9e2a9d430182d0e4b23f7adefb; Expires=Tue, 16-Jan-2029 07:11:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=593ad299353f91715060e751d21e902ac2bcdc7b-1705561864; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=IDiJJ6VBiEM4uSUk7XcXmZ5RMap0IVsweNlGYXFcZ7k-1705561864951-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561866","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1080, 1, '9a137898-07ab-4593-af5b-603e7ef5052e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #111 fix bug", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/111", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705561864246260400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9a137898-07ab-4593-af5b-603e7ef5052e","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"9a137898-07ab-4593-af5b-603e7ef5052e","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"9a137898-07ab-4593-af5b-603e7ef5052e","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84750590fe305e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 07:11:04 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=62HbmAp8tpHVgqBFG9M5dpsUo3nfayfx0GhLFx3IgHZd0KzmExouCAZDSxbX0BhDTa4Ps%2BPHBJMZS7RLpYUJLgB93th309myDWY84HNc%2FaxPLu0b%2BxFXfKxmc9R%2F\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=be0b7e46b5d011ee95846eee6087a04c; Expires=Tue, 16-Jan-2029 07:11:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=be0b7e46b5d011ee95846eee6087a04c94812d7e8ebece50eb1035bdee96a0f6a8c51519da236a0e7d1d1bbb6f697519; Expires=Tue, 16-Jan-2029 07:11:04 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=593ad299353f91715060e751d21e902ac2bcdc7b-1705561864; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Ba3ondZEjSHBemzCGDy3XvIkAC1OowjYrI.Sv14c._8-1705561864245-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705561865","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1083, 1, '7c9a8ed6-a67b-4528-a193-1e9b70ce7ba3', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/31/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/31/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575515192041300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"7c9a8ed6-a67b-4528-a193-1e9b70ce7ba3","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"7c9a8ed6-a67b-4528-a193-1e9b70ce7ba3","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"7c9a8ed6-a67b-4528-a193-1e9b70ce7ba3","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652d73df05e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=i9R3tyiwbaqvtyGZoa7EY6spSYFSZuhLgZMMqxTXHehOHmzQWjLBmqejiQ5m921S92fPyybXfKoXvEjMOQf9sUkA43C8Ow1g0BlFT8%2FlXZrZ%2BKhSdN%2BpektQMB3E\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=86a04da4b5f011ee8dc36276fb41f11b; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=86a04da4b5f011ee8dc36276fb41f11b47b7ac1b534029294f47cf81fb722e7deac804e92ba2a741732832c7d97e5cf3; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=489313edd043864583f510989b87c9b49a3a1ccd-1705575515; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=iBZphe7sJBeCdzVYbXcu4LFkzhjZDqOoEPXZ3cNAZMc-1705575515162-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575517","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1084, 1, '20e60599-ad86-42c7-a129-1b39b523ac7d', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/32/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/32/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575515518434800, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"20e60599-ad86-42c7-a129-1b39b523ac7d","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"20e60599-ad86-42c7-a129-1b39b523ac7d","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"20e60599-ad86-42c7-a129-1b39b523ac7d","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652da0e735e36-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DAmRMTGgavZb9KsNWqQ8FrbhPh6nC6e0y3sXg92Y7rDylP%2FdUQEWC50h7bLatHAIPxm82cpX0ya4rY%2Bj27XktnW5QkLeN0%2FMbkhjX%2FhaV%2FdhE2t9CBau%2FjLgyH69\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2178","Server":"cloudflare","Set-Cookie":"__dcfduid=86d23a44b5f011ee92df9a86981690bf; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=86d23a44b5f011ee92df9a86981690bf35921d4699ef24c8f62c3320bf0687ee45f0096ff5d2a0f2d1c36bdefa06f089; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=489313edd043864583f510989b87c9b49a3a1ccd-1705575515; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ilWMMCI2EGmzpKpP9Hf48eX0pDOs4epRphhgFhnaZ7I-1705575515489-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575518","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (1085, 1, 'ef80a04c-486d-4e65-a630-3af02be35433', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/32/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/32/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575515840504700, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ef80a04c-486d-4e65-a630-3af02be35433","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ef80a04c-486d-4e65-a630-3af02be35433","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ef80a04c-486d-4e65-a630-3af02be35433","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652dc1a1b5e3a-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:35 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=oKWFiKye3%2FBj4WV6y%2FbcuSRmIQuZb1Qzf696%2FruEOn34NijjQCJOH7jXKtUy9RpNfQIqneLB%2FnYwQ3WHDWw6Y8fToRdZidkoJGU8D894Hmj%2B1Zcuf6%2FGuVuvXVDX\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2253","Server":"cloudflare","Set-Cookie":"__dcfduid=87030c3cb5f011eea624a6f80312d7e9; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=87030c3cb5f011eea624a6f80312d7e913c000b80cf4cf4465b83378d5afb1ef873ec7ffec6c2197a7abd8d1a19cc449; Expires=Tue, 16-Jan-2029 10:58:35 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=489313edd043864583f510989b87c9b49a3a1ccd-1705575515; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=DJyAwewNRLrY1._qOxx_mk0hLT05BGuM_Nnc84Lm5Dc-1705575515811-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575518","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (1087, 1, 'dd691a27-1065-444f-a9e8-29405c9627c0', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/33/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/33/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575516618106600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"dd691a27-1065-444f-a9e8-29405c9627c0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"dd691a27-1065-444f-a9e8-29405c9627c0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"dd691a27-1065-444f-a9e8-29405c9627c0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652e08bb35e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=uUYmHfbMu5Omu0oamOcfiErZdcj4Rcn3YBU%2F1IcKMMaQorafEHzXayKRlgklfYWPi0HR3moxukzcjKebFNAGomomAl8kx3Ez%2BP35AGvvCf3qPX2sZBN6vSNomAyN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8779ff54b5f011eeb6f11ae43748c451; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8779ff54b5f011eeb6f11ae43748c451b8219dd62bdcfb7611262596c76b2776bef4529c5ae3829229914647425db9f3; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=275b3facf7ca33ba2f76f12672a9f3bf186b6f99-1705575516; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Yhs6RcKimQUxk77ixvghZgfc62vo92tWtiagXUKyIHA-1705575516589-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575519","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1086, 1, 'bc5abef1-b3ab-4516-a42a-af0bdff75d31', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/33/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/33/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575516239649500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"bc5abef1-b3ab-4516-a42a-af0bdff75d31","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"bc5abef1-b3ab-4516-a42a-af0bdff75d31","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"bc5abef1-b3ab-4516-a42a-af0bdff75d31","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652de1ab75e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:36 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qQ5uGjds6BvXNSGmhSub8MmBCBiaxiCjucByP%2FIXQjacsPZFzAHGfmQkXzcTBN2ILguCdojNZA%2F5K4%2BjoWbVPjXlq9YtM7KX4%2FxeTPIxuXj8Sckq16%2BjXQfHipD6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=87405268b5f011eeaa0376510d710415; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=87405268b5f011eeaa0376510d7104157b396347416d82badff387b7ecaa9d07ada88c234fd50d3fd73ce4b321dcef17; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=275b3facf7ca33ba2f76f12672a9f3bf186b6f99-1705575516; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=8jjIfCUz0du6CsdToN58ZnpeScHxuCSBh.6BwzXWZu4-1705575516210-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575518","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (775, 1, '922112a4-1287-4095-9234-e9ee86a8820b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #87 fix api tong hop so lieu tuyen sinh", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705045392833107900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"922112a4-1287-4095-9234-e9ee86a8820b","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"922112a4-1287-4095-9234-e9ee86a8820b","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"922112a4-1287-4095-9234-e9ee86a8820b","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443c4668fa35e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:43:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0HselafVjllg7CK%2BfH3LZPbUUt4cMumQ2muucB9cgmxyeVXDoz8y6%2Fw5NFTQwhE3f%2BawgAuwMCU8KZLYmEaoY49pCLUscYFMGzpAOpm8FYaMYeYmGhpSoA1cVvaR\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=3d117388b11e11ee8b179e08466f6aaf; Expires=Wed, 10-Jan-2029 07:43:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=3d117388b11e11ee8b179e08466f6aafe25b11b0a5c350ea0a7c30efcda879670c4bc66ef2cc55c8a306fe3f46b4a6a4; Expires=Wed, 10-Jan-2029 07:43:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=9c9fb709f81b02ae558d93e44b1120a6785e9ce4-1705045392; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=_paYOmeTaO5M64krt0esMCR1FbCyUyjdZBuMW8V4ktQ-1705045392787-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705045393","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (807, 1, '697a499c-88d2-4c16-be8c-ee928d36c112', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/130/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/130/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705105575175004100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"697a499c-88d2-4c16-be8c-ee928d36c112","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"697a499c-88d2-4c16-be8c-ee928d36c112","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"697a499c-88d2-4c16-be8c-ee928d36c112","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981b28b305e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=nqnELPaO2HV8uQhYlxfeBqSTZXhdBeIMNTPlK%2B1kcqVhzU7ArmAuQ59QUuxBCO8lO8IonBXfNycraPuwZSA5JBUv7EIXsAkXl76Uqln2Tse%2BPRQ37Bl6GiddJICa\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5c90cb3cb1aa11eea39502445d3d6a7d; Expires=Thu, 11-Jan-2029 00:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5c90cb3cb1aa11eea39502445d3d6a7d0b319dd6b4620cf3ad31c238857dddb62a473dfc18acb2d4bd0408149fa3a279; Expires=Thu, 11-Jan-2029 00:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d8ec5e18c29648b7aa44157c9588f770e0a9c1fd-1705105575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=qUH0eJtnaUsdmufnEHkk9BnKLgaokmIFvDZKE.tkB64-1705105575172-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705105576","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1088, 1, 'f025ff25-dd95-439d-931b-9ec24449c416', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/34/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/34/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575517039806400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f025ff25-dd95-439d-931b-9ec24449c416","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f025ff25-dd95-439d-931b-9ec24449c416","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f025ff25-dd95-439d-931b-9ec24449c416","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652e2ec755e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=jbcY%2B6xNmzes8%2Bs3nIqpJK4GpYstp2gw7MVM%2F65u3pbySa2tvYE4YFscE4ArLISns3Nl%2BQRpbtsBhHl2Y3Yzi0lJ5IbdsKlSsxN5aM2FG0ipFh12B9HiMTK8G%2BVS\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=87ba4d3eb5f011ee8ec706af0c42466a; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=87ba4d3eb5f011ee8ec706af0c42466ad660df7c56265403ffe7e64f3ef76d1dbfc3aa111ca0d3fed00e51df094684db; Expires=Tue, 16-Jan-2029 10:58:36 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bc39108a9b48925b015ae1ea9c62da2f86d41bc2-1705575517; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1xs7HJJmklrQMUCYGLiqKJj9taBY6NmEIgmhsPtf5_4-1705575517010-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575519","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (974, 1, 'b7c62bf6-dea0-42d7-bb77-f3f6f5b1e168', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[b51a2a2](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872) fix trang thai ho so - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705457042562986500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b7c62bf6-dea0-42d7-bb77-f3f6f5b1e168","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"b7c62bf6-dea0-42d7-bb77-f3f6f5b1e168","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"b7c62bf6-dea0-42d7-bb77-f3f6f5b1e168","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b066e9bbd5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:04:02 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=czXgBciMQDWrUvjOx45yZyrrpS3fpwSgJIFEzTJcsDaRHMKMn7ODzE2ceu83x7n%2FuQVD%2FbLFZyTPSaaroeDbV9kYtdDggu%2FIEpjjO3gkSlTUXS8bNskAt9d7utHA\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=af70b3c8b4dc11eeb231fab1098452f6; Expires=Mon, 15-Jan-2029 02:04:02 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=af70b3c8b4dc11eeb231fab1098452f63c1a94a02d308162451ee2c933ddbf4cd30721923225a47d346503f342fefaeb; Expires=Mon, 15-Jan-2029 02:04:02 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=2adfb888e128b4751bbbf366a36a2b74dd005ddd-1705457042; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=1Opc3lL0ARjyneX0hN2ssCodRq6NxEJaPD7FAklT_j8-1705457042540-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705457043","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (975, 1, '699f49e9-35fc-4526-bae5-a281376618f8', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #107 fix trang thai ho so", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705457143149744700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"699f49e9-35fc-4526-bae5-a281376618f8","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"699f49e9-35fc-4526-bae5-a281376618f8","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"699f49e9-35fc-4526-bae5-a281376618f8","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b08e63a325e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:05:43 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DPIXSgyyq65jLDtqTHXO8I%2BKxZrOL85geEkUROU%2Fz76B5cfda6VqzeB7gsp8A%2FIhdwTZl1a%2BJkZC4D1LZNQ8D7eU8NM99J0Yb4j4VNNuunCdb7ZPbDXCa2WH8Xs8\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=eb64d576b4dc11eeb84e2e67be318690; Expires=Mon, 15-Jan-2029 02:05:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=eb64d576b4dc11eeb84e2e67be318690305713482f6f6e5c4de0c1e920a5a42aa06b81df3610e7b5c4401caad2c31213; Expires=Mon, 15-Jan-2029 02:05:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=30637bfa4fdfacf92b45a2bee7e55f25c95d7b72-1705457143; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=JDBrkUSsr6gNTutE2RM9ilujysJkXi8yecMOAsPbxaQ-1705457143126-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705457144","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (976, 1, '3f03d2c3-03fa-4ce3-b446-61eee68f3600', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #107 fix trang thai ho so", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705457158277674700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3f03d2c3-03fa-4ce3-b446-61eee68f3600","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"3f03d2c3-03fa-4ce3-b446-61eee68f3600","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"3f03d2c3-03fa-4ce3-b446-61eee68f3600","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b0944edd75e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:05:58 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5yh9wHjGI7MBAq0Zt%2BL%2FnL%2BztQqoWq6MoGjtNEjNPBiHnnKd4t4YFgcvO9KnRQNi7i62lRjqiqx6PQDnLV6sopXv3mvLgBPuZbcJE34uPFHcNNLX4KSsmVsetR06\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f4692fe6b4dc11eeb1d5a26eb94e4ebc; Expires=Mon, 15-Jan-2029 02:05:58 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f4692fe6b4dc11eeb1d5a26eb94e4ebc1c6d0640db7d80b92a9e1c0c0895cdd6e0e3f17f7a9ea7137b4e7674297fbba2; Expires=Mon, 15-Jan-2029 02:05:58 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=37207ed7b5074fc61852229b07c57792f0b29d41-1705457158; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=A9w_hHBVHP8cPfd4c8ICaaJRMg4UeW61.uoBeYmAPnk-1705457158254-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705457159","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1089, 1, '52def884-c4d2-4268-96c9-8cbac6adace0', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/34/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/34/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575517443394900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"52def884-c4d2-4268-96c9-8cbac6adace0","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"52def884-c4d2-4268-96c9-8cbac6adace0","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"52def884-c4d2-4268-96c9-8cbac6adace0","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652e58d3f5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=bupKLqeia%2B4zragJf8oeLwhmeIuhmSVouS%2BEOq%2BjS2behZZ5NWorUG6unwilSZQm1JeugBkJK3EZcubbo1iMAVQF5JYMyamWpEwJAZZ05oE%2BvziLCn6JFB8YlypP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=87f8111eb5f011eeaadbbe8ae9f11b6d; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=87f8111eb5f011eeaadbbe8ae9f11b6d6ffb261c2b2584e94119c791c46cc4179160196f9cb19febb2c4c16aa91ac691; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bc39108a9b48925b015ae1ea9c62da2f86d41bc2-1705575517; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=JlYskVhbiojO_26.1G6Ghjp06z40p45A5fanu3fk4ZU-1705575517414-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575520","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1091, 1, 'a3667e64-1e73-4ff0-9ea6-abb1ec9aa5f5', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/35/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/35/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575518139964600, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a3667e64-1e73-4ff0-9ea6-abb1ec9aa5f5","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"a3667e64-1e73-4ff0-9ea6-abb1ec9aa5f5","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"a3667e64-1e73-4ff0-9ea6-abb1ec9aa5f5","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652ea7e835e3a-HAN","Connection":"keep-alive","Content-Length":"81","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NR6JRhx4drXOrSEbwYQRZ0kgyLfGNIVDNtMMkMILiTndRuyffobdfw4fino1JzPKe1Qt0soeQXaFPPVTtJGgcumHTJH1PVtdHApE0xS20XfzfZR0Rp1DAVI3CwzY\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2352","Server":"cloudflare","Set-Cookie":"__dcfduid=8861ed3cb5f011ee9c224e94dd5143dd; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8861ed3cb5f011ee9c224e94dd5143dd09ce798020931fb9d267a046d4b5c84d9e9e029cfdb42a6c218b11f285eac9aa; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d4f94a86facdc66ea2f2cb7b0f4ffcc488bc5db8-1705575518; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=4NcM81V4rovIoiPYdPa474gQRCFOpvchJVBePiiCmqI-1705575518111-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575521","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.352, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (1090, 1, 'dee9b8cd-6533-41f5-9eb7-664e508d56f5', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/35/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/35/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575517823499900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"dee9b8cd-6533-41f5-9eb7-664e508d56f5","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"dee9b8cd-6533-41f5-9eb7-664e508d56f5","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"dee9b8cd-6533-41f5-9eb7-664e508d56f5","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652e81dff5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:37 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kMl5beIemSlXK11D0xxx%2B9FQGLbjcfRZOQ322COKEe%2BXM1Q4npzcUbE901fIVPHj7ahpH%2BMVd%2Bawo2U87m%2BRZZ5ytG6EIqq3eOn7P4tx1p2EqQurFmDifDohOkcy\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8831efd8b5f011ee8b7ea28dff5ea8b6; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8831efd8b5f011ee8b7ea28dff5ea8b642cb0576b30f50c752c54ee29ac49f17435bd3de6650fe9699178150534f4821; Expires=Tue, 16-Jan-2029 10:58:37 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=bc39108a9b48925b015ae1ea9c62da2f86d41bc2-1705575517; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=MN8QoJKapdg3amAbaUvB13_KCC5RkhyIVp69YeDVkYc-1705575517794-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575520","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (776, 1, '5520aa99-553c-4e59-8d33-f70e63e7ec3f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #87 fix api tong hop so lieu tuyen sinh", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705045584025941100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5520aa99-553c-4e59-8d33-f70e63e7ec3f","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"5520aa99-553c-4e59-8d33-f70e63e7ec3f","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"5520aa99-553c-4e59-8d33-f70e63e7ec3f","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443c911dc255e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:46:24 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=8wCjLQvQ0sEuKpvKvcdpwyPgJQJsXuez358WOXmskQe4fJN7gVeSVdbvEYSwUsjaDUT7KcihwWfQw64%2Fg9PGRcFSG1khfucqgvqanwO13cZAzVxQRjmGc8mr26hk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=af0b3816b11e11eeac510e042939db81; Expires=Wed, 10-Jan-2029 07:46:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=af0b3816b11e11eeac510e042939db81103babd958790d38d469a607a31871135d39c05977009ec99d28725be2218db7; Expires=Wed, 10-Jan-2029 07:46:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d7624d10c450ad992ec49ffedc399b65af81bd90-1705045584; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=ij5_Hgd4K68m7LBOP45rbb0DbLDMejZN5VwEre5Qvgg-1705045584005-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705045585","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (777, 1, 'b7a62f6d-b803-4828-998a-e1a409c2df0d', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[1b5b07b](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/1b5b07b0d95cd7b123fbc052e003045a1ea4530f) Merge pull request ''fix api tong hop so lieu tuyen sinh'' (#87) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/87 - hungthinhne\n[8d033bd](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8d033bdc680e69f37d6b0c7530e23ace16ad7ab6) fix api tong hop so lieu tuyen sinh - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/6189e5347420d4bbcee5c4f550ed3cd17a77ba41...1b5b07b0d95cd7b123fbc052e003045a1ea4530f", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705045584562233400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b7a62f6d-b803-4828-998a-e1a409c2df0d","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"b7a62f6d-b803-4828-998a-e1a409c2df0d","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"b7a62f6d-b803-4828-998a-e1a409c2df0d","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443c9144d465e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 07:46:24 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=k9NW1IWBJdAcIhowHWpVgMKWtxSbJ5idJbMQ57Pcl8uxV5SO8tHCS0gdgZkmdWQHy9Z64tGlAZOligt975%2BuZZnIsq4cMJ8lzpoZH%2BT3%2BjKQQlwJOswcvvQnnxLN\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=af520480b11e11ee87f8768d246128ae; Expires=Wed, 10-Jan-2029 07:46:24 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=af520480b11e11ee87f8768d246128aeb2bc59c93733e41c77c37f5586697de6dea705042e18b4a8612a299ddce1f11e; Expires=Wed, 10-Jan-2029 07:46:24 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d7624d10c450ad992ec49ffedc399b65af81bd90-1705045584; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=skY1UupMa134DaJ8ziarShChEHbeVkFE6a22Y9Dmi.Q-1705045584468-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705045585","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (896, 1, '4b6995be-a5be-4319-860c-f05dd11b63d9', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[ddb1e1f](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/ddb1e1f9c86e1477341fd41cae9b0350d5807140) Merge pull request ''fix search all page'' (#98) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/98 - hungthinhne\n[67a5311](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/67a5311e4cf2834ef7fc0b767015be48d669696d) fix search all page - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/99df42f181517ecde830cfba0d18f5bb48283de8...ddb1e1f9c86e1477341fd41cae9b0350d5807140", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705329332742669200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"4b6995be-a5be-4319-860c-f05dd11b63d9","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"4b6995be-a5be-4319-860c-f05dd11b63d9","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"4b6995be-a5be-4319-860c-f05dd11b63d9","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"845ed8874b435e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Mon, 15 Jan 2024 14:35:32 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kMBKmE0aBFY9jDl6XxJVB6gkTwh0XBusg4PfdmSdTT2LQqbpB5KfyvJsukJFaG0IToDcyK0Q8PDkIF0rmU7So1Ay3oyobHhJjObmPV637RepoeJ%2BO%2FD5I6qI6cny\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5674be6ab3b311ee83ce7eec8dd9bb47; Expires=Sat, 13-Jan-2029 14:35:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5674be6ab3b311ee83ce7eec8dd9bb47c22b1be3b12951d5a020b17314fa5cde34d7e45206c2c27a7824b65395612ded; Expires=Sat, 13-Jan-2029 14:35:32 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5f1e117240a873c3e96308a95e62212abccf9fb3-1705329332; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=VpGLrLFPyBmANQQmyiIJ4fVRgxmHN_rW6h3fUXq9XFI-1705329332718-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705329333","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (778, 1, '5e2ed865-2f08-4b4b-bb2c-009128524e0b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/133/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/133/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705046772188623300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"5e2ed865-2f08-4b4b-bb2c-009128524e0b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"5e2ed865-2f08-4b4b-bb2c-009128524e0b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"5e2ed865-2f08-4b4b-bb2c-009128524e0b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443e612c8625e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:06:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=r60kl6yw5Q2eJmGDAJyIU65FI5Z2DnDJLzk0LgZ9dCTlx5re1JuMtr%2BUs30rvXNG3Ury1ZLqiC%2FUYGd2Ofd%2FJktjHfEZGzbNpNJ5o7LHkVLDlIaVTl339mq4VIO7\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=733ec976b12111eebb0566b021acb8a6; Expires=Wed, 10-Jan-2029 08:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=733ec976b12111eebb0566b021acb8a6d16cac1b7f978c3129706e1ee1b31841b3db061a7645af5db1626ee617a09ab1; Expires=Wed, 10-Jan-2029 08:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e3b52418f740ccbd0af2f8eaa0acb729e653b416-1705046772; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=VLOFwSM11uUd7YsjXZmxcoeL88FiXETk78L7PsnU14g-1705046772170-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705046773","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (781, 1, 'b7f2ccbe-fd54-46c8-b00c-6c37ba11b8ca', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/134/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/134/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705046773510492500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"b7f2ccbe-fd54-46c8-b00c-6c37ba11b8ca","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"b7f2ccbe-fd54-46c8-b00c-6c37ba11b8ca","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"b7f2ccbe-fd54-46c8-b00c-6c37ba11b8ca","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443e61bbc9d5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:06:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=7Od9JXFac6fj3vu2Ku%2FKzqa5WEB2UHjewPREHnMXcNX22xeZFibhF8qSLtSpiClCCSd9SRmy6ULz%2BmtSu4lFv2ppYEb%2BotFFSfwIJRnP4mcqpp8pE1xqUmwCxW47\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=74086a10b12111eeb8b07effd249f8e5; Expires=Wed, 10-Jan-2029 08:06:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=74086a10b12111eeb8b07effd249f8e516fb47517f483fd0baffc328be176e580495af88b59f57063bf71dc0e65088af; Expires=Wed, 10-Jan-2029 08:06:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca367d091ea5e68208c0bbd3437560eafd3b48b3-1705046773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=tjxtqaYkYZn10BqjAZFhYGIYUo1I73rZ6_0LiHa8uaA-1705046773491-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705046774","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (782, 1, 'f2084301-3e89-436d-940f-8e8f02db1b02', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/135/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/135/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705046773916171100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"f2084301-3e89-436d-940f-8e8f02db1b02","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"f2084301-3e89-436d-940f-8e8f02db1b02","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"f2084301-3e89-436d-940f-8e8f02db1b02","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443e61e9da45e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:06:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=0uV21gMxTfPEL4gPyMI%2Bp9dkoK1ixpMGWdjxefknQg7kz%2BxH5mnTBs%2BhE6zoI%2BGFbWhrxjZPmlwmZ3S%2B36DenwzZ%2BcFv3qSJ1B%2FVvEnPI0Kym%2BRDL8fWXnSJ6IxU\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=7444ddf6b12111ee87b1365101b1105b; Expires=Wed, 10-Jan-2029 08:06:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=7444ddf6b12111ee87b1365101b1105b75e854572ba7c17552bb7d9961924fc04eeb1b8796bca522256d223ce68b5f53; Expires=Wed, 10-Jan-2029 08:06:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca367d091ea5e68208c0bbd3437560eafd3b48b3-1705046773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=UNPmeFgCbuXt.iRj9Xgwg0CWL1cH5ZVQPH5EY7Rt55E-1705046773898-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705046775","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (783, 1, 'dcb9d091-9607-45a5-9632-e07e306bcecd', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/135/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/135/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705046774327615900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"dcb9d091-9607-45a5-9632-e07e306bcecd","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"dcb9d091-9607-45a5-9632-e07e306bcecd","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"dcb9d091-9607-45a5-9632-e07e306bcecd","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443e6211ec15e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:06:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=tZzks166Hh5eb6YdHkJKzdGGlSONVvMwJYRhxeeVD0JqgFdLwIKyu9vwJ2sKyWE4TUTQf3zDjVAgvXRxBe%2FOhqMddORqnCKgT8G9XK7EcYL1YkxP5bzoB8RHwYtP\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=7484dc58b12111eeaf0f2a224ac988cf; Expires=Wed, 10-Jan-2029 08:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=7484dc58b12111eeaf0f2a224ac988cfe87fe50f06919d593ac09913ffc629e60747ff9f67a218b102b5ad33f8410d46; Expires=Wed, 10-Jan-2029 08:06:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6a2012c8b51d320f7b7aa1cb14e422badbdc1d7a-1705046774; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=WOh0pMOT_pRBFVDAiEgj9Y58UmHQu28Vls4mH8ijLVc-1705046774310-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705046775","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1093, 1, 'fb5cf073-554a-43c2-a75e-d2d47cba3a14', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/36/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/36/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575518764318100, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"fb5cf073-554a-43c2-a75e-d2d47cba3a14","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"fb5cf073-554a-43c2-a75e-d2d47cba3a14","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"fb5cf073-554a-43c2-a75e-d2d47cba3a14","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652ee6f755e3a-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=urMmp%2FP62ogUpqsAg8uEDK4nDBgcSSS5Qo%2BgX43ABhzcOCHyeQG8I61bfsVAZB%2BCORj7VFE7i4J2gAuXOgASTgoGlYx%2BX44WND0Iib%2Bwdv4f5ttnVPdCf%2Fa58UIc\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2125","Server":"cloudflare","Set-Cookie":"__dcfduid=88c16e60b5f011ee8dcba25405702787; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=88c16e60b5f011ee8dcba25405702787007543f4485b4dfc6ff283e7313382218fdafa59f08efe810cfef5174c074987; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d4f94a86facdc66ea2f2cb7b0f4ffcc488bc5db8-1705575518; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=O0.fGns.bQH4DTfiZT0TRPBxdpRNFoOQssJp23XpEc4-1705575518735-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575521","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (779, 1, '55e29bf2-558c-43ff-996c-f8cda2d00a97', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/133/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/133/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705046772631186400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"55e29bf2-558c-43ff-996c-f8cda2d00a97","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"55e29bf2-558c-43ff-996c-f8cda2d00a97","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"55e29bf2-558c-43ff-996c-f8cda2d00a97","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443e6165a0a5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:06:12 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=780rCTI3pbfDKt6GjjAvOHrHhosTenTVsdYsEicO7BDUlurCHlT5yHxcb%2FRstZ2zUZO3kRS9EQW4I5Bg06i%2BUQ0PE%2BYqNPYrVhgqdyNuAPnDDBHFvA7xPbObyHmb\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=73816632b12111eeb4e666efb2ec04ff; Expires=Wed, 10-Jan-2029 08:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=73816632b12111eeb4e666efb2ec04ffe6de6ff0beffde42ade3917151f476096455c22af11cac69282902d86c640afa; Expires=Wed, 10-Jan-2029 08:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e3b52418f740ccbd0af2f8eaa0acb729e653b416-1705046772; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=dWW9Qt0tTc2MGDp3jEd4Y9YzVi0fugN9IRQ_353eTC4-1705046772612-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705046773","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (780, 1, 'e8a08b6d-36f6-4f5c-bda3-7ddbd3a097f3', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/134/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/134/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705046773057799000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e8a08b6d-36f6-4f5c-bda3-7ddbd3a097f3","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e8a08b6d-36f6-4f5c-bda3-7ddbd3a097f3","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e8a08b6d-36f6-4f5c-bda3-7ddbd3a097f3","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443e6191b8a5e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:06:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=wbP31L1fRgpqGy98ESVYV2g3efSO5qkxq62EPEupi5UCj8pq9EYR%2FhP%2BbQ2a3hoKohXLNi8%2FCHxjhMrRhwnLTlu15aLiLEfsmnOfW5R7BmTKmE%2FY3t%2BmZ9XwAjlO\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=73c27e6ab12111eea1b9921419c1e8e3; Expires=Wed, 10-Jan-2029 08:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=73c27e6ab12111eea1b9921419c1e8e38c5cf76590c57b0df819a99952b1fd63c8808762b35af7ce4a2495e0577a3964; Expires=Wed, 10-Jan-2029 08:06:12 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=ca367d091ea5e68208c0bbd3437560eafd3b48b3-1705046773; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=npvXRUQbAqPe.i2v4S2YrHluk2JC3zY3OvnHmkRfjV0-1705046773040-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705046774","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (784, 1, 'fd9ead82-bbc8-4a49-815d-e15b7839eb7f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[8e450b4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f) fix bao cao tuyen sinh nn/nam - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705047287429258800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"fd9ead82-bbc8-4a49-815d-e15b7839eb7f","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"fd9ead82-bbc8-4a49-815d-e15b7839eb7f","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"fd9ead82-bbc8-4a49-815d-e15b7839eb7f","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443f2a7eee05e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:14:47 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=hPvHoPReo6AI82a9%2FfZ%2BMtJPEbIA6NrValrf2fnN5P6wlkR%2Ft2e%2BRP9TqkbRIg8UjGQoMwxfZUsqvKjEjYUHScnD2kMdxNVbbzYT7B9r3i7IKKMS1Ba4glT1Dj%2Bl\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=a65a1224b12211eeba4a32ce797e5360; Expires=Wed, 10-Jan-2029 08:14:47 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=a65a1224b12211eeba4a32ce797e536096759c624717f1bcca00a74ad0e79143cbfa1ffa41f9eec703c565aabc6e41a2; Expires=Wed, 10-Jan-2029 08:14:47 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=1d967bd5dfe53c9ad3de37099f020b8a3e39d07c-1705047287; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=gfTkBngbeKbklglvzb2HkexEX0Nvh5Bdk3rVzT4qFCs-1705047287409-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705047288","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (785, 1, '9c5a1bfb-aea1-4b50-9310-0c41c1d2368a', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #88 fix bao cao tuyen sinh nn/nam", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705047316632781300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"9c5a1bfb-aea1-4b50-9310-0c41c1d2368a","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"9c5a1bfb-aea1-4b50-9310-0c41c1d2368a","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"9c5a1bfb-aea1-4b50-9310-0c41c1d2368a","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443f35d99495e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:15:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=rgsqtdo6vj4ZFX5mPbUNL%2FbbJyr6p0MD5pdKxZ5fqsTXauE7TLD23ypPqIR6qMrO2YjrNkLD%2BD1cfuLWz9PXQOCqqdRdFBRaDKMohPybeqN8zMTy9Ky9NMZLC24x\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=b7a55b10b12211ee901066b021acb8a6; Expires=Wed, 10-Jan-2029 08:15:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=b7a55b10b12211ee901066b021acb8a6fd15165f40cc3d23a479a4572c93f78393737b996d86ab24586b15d966d31da8; Expires=Wed, 10-Jan-2029 08:15:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8d76914c5a973d25986e9b4c9ee2ee26566d4d22-1705047316; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vVLClhQ91t_xnUVbwGEoNj75Bhgnl_UhMw6DRpW7J6g-1705047316423-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705047317","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1095, 1, '1b65bd92-8347-4353-a33f-7c6081fda2ec', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/37/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/37/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575519503248800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1b65bd92-8347-4353-a33f-7c6081fda2ec","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1b65bd92-8347-4353-a33f-7c6081fda2ec","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1b65bd92-8347-4353-a33f-7c6081fda2ec","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652f268715e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=L8oiou%2BG0PYW8ZhsmXRlvDH3r%2BWs%2BZzjkPolLIHysew2G2%2B7NCqN6s2PsShJv2xWIo3qF1dU%2BfN6FK7p3n4hqCYCM8RcgrcmoTX1VAzZaPX46b5iJtlbRvHL%2Fgp6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=89324234b5f011ee88f2fab697dde37f; Expires=Tue, 16-Jan-2029 10:58:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=89324234b5f011ee88f2fab697dde37f8b62d807aa07d9ecd5752227d90024332871b94ab03c004e14b12e8e0b8b2678; Expires=Tue, 16-Jan-2029 10:58:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5b611484b7450f44bd88935639e49cb7c04d7032-1705575519; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=fa6N3pme8nJpTSvKD9WY13NNkokrt0WDZdxttC_c7oI-1705575519474-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575522","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (977, 1, 'cc70629b-aee6-4572-a4bb-ce3b13ac7dbc', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[8151ab7](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8151ab7ce5fcfdf01ceb05db6de7cea9190aff45) Merge pull request ''fix trang thai ho so'' (#107) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/107 - hungthinhne\n[b51a2a2](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/b51a2a2db8b6c480c487c33ce3cad9f3e94bb872) fix trang thai ho so - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/f0f201ffadd72a9c710659316fad0c14ed6d69c1...8151ab7ce5fcfdf01ceb05db6de7cea9190aff45", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705457159876974100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"cc70629b-aee6-4572-a4bb-ce3b13ac7dbc","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"cc70629b-aee6-4572-a4bb-ce3b13ac7dbc","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"cc70629b-aee6-4572-a4bb-ce3b13ac7dbc","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b094eab1d5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:05:59 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=a3xT3w99TvS7aN9YFEPMVym9TBYPX1SB7Sb4YBG%2FT2JHiBwqdbkbsjNldkcggW7Ovp6oex5rlRkWh6%2BRH9GOZT4aJQlweO1si3MUdP4Rvhr8sJemgRoD8dFegUqp\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=f55d44fab4dc11eebdf0c2cc1201aa3c; Expires=Mon, 15-Jan-2029 02:05:59 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=f55d44fab4dc11eebdf0c2cc1201aa3cc65d01b87f8ff2aab3188505326a8ef0eaa44c68338a9d42ff2232b0fc1676e2; Expires=Mon, 15-Jan-2029 02:05:59 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=b0dba9a0e9fd6b943979bf88014b10c1650330a0-1705457159; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=g61xWw1Pz4gwe1iUGCJwxeO8trOsvLl_TORYJOHrk6I-1705457159853-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705457161","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (786, 1, '28978dff-eb91-4cad-a163-165247b494ce', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #88 fix bao cao tuyen sinh nn/nam", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705047331620050400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"28978dff-eb91-4cad-a163-165247b494ce","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"28978dff-eb91-4cad-a163-165247b494ce","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"28978dff-eb91-4cad-a163-165247b494ce","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443f3bc4ac95e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:15:31 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=NIySUQK64gbNvz%2Bq6VRz8OnPkV5C9wHk2HVUStjXQbQ5mVa6%2BuUQMolN62NDs9538dS6TzrirErDHw%2BbofiykSkMbaUmiB7113CHsSnSSOM9q9ASwJ7BQyNvXhrE\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c0b196e2b12211ee9293529e980364c9; Expires=Wed, 10-Jan-2029 08:15:31 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c0b196e2b12211ee9293529e980364c9611bce49ba9e49d5a22448be14bea18478e15a60eaf9707b32b489537134f92a; Expires=Wed, 10-Jan-2029 08:15:31 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3508e7534d44645fb063e90b19277a92d172022f-1705047331; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=0OgekANQ8aAxsx2_Wf9byhyAFnuwCHRKFqnQ2BRNFxo-1705047331603-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705047332","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (787, 1, 'c1f4c089-75fb-455f-a8c6-e1d254f7869f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 2 new commits", "description": "[9dbf9d1](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/9dbf9d1817992c4fee7c955f584497c9faefcc50) Merge pull request ''fix bao cao tuyen sinh nn/nam'' (#88) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/88 - hungthinhne\n[8e450b4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/8e450b4e07f2f93a5bcba4e9aa6e26c9773a3f0f) fix bao cao tuyen sinh nn/nam - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/1b5b07b0d95cd7b123fbc052e003045a1ea4530f...9dbf9d1817992c4fee7c955f584497c9faefcc50", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705047331983952900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c1f4c089-75fb-455f-a8c6-e1d254f7869f","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"c1f4c089-75fb-455f-a8c6-e1d254f7869f","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"c1f4c089-75fb-455f-a8c6-e1d254f7869f","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8443f3becc085e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:15:31 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=3qu0%2FEKoa21IELZG5L%2B728cozpinCEJAl9kFk%2BykBMXzFpAKrOm4cZgFmkZgjmtNSKPeahx4cWu%2B6CSGPMMwv7QZ%2FB1gg%2FShMqCr6tbF4Kttx3W28iQQJ2dYcXsJ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c0e8743cb12211ee9c5322ab75833ff8; Expires=Wed, 10-Jan-2029 08:15:31 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c0e8743cb12211ee9c5322ab75833ff87dd868e2f41e762c47fdb2e0c9ce5301c7ae1805278dfbeb0cf08aff1c37b3e2; Expires=Wed, 10-Jan-2029 08:15:31 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3508e7534d44645fb063e90b19277a92d172022f-1705047331; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=IE4U7Z9u2bjZc5_TrfK_gf5xRIZUKb.JdD50EGTLljs-1705047331962-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705047333","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (808, 1, 'c89f1ab5-074d-4304-8965-0827cc88b3f8', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/130/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/130/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705105575586591300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c89f1ab5-074d-4304-8965-0827cc88b3f8","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c89f1ab5-074d-4304-8965-0827cc88b3f8","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c89f1ab5-074d-4304-8965-0827cc88b3f8","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981b51baa5e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=oknVA%2FQ9BjSWHaAGEIsURmSeDBMuw9RQa8xgPn9le6FRNcqwzw93HteQCwrdHV76Nuu7j5rXhkfoAo0p0qPLOR24S1cDwqjwu7ltJmJbaxfmGXLLI4AMByh%2Bnuce\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5ccfc378b1aa11eeb661ea1a3d7f5781; Expires=Thu, 11-Jan-2029 00:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5ccfc378b1aa11eeb661ea1a3d7f57819b35ca008f01258b532269f41eca64502b463e07bd436876f3cb2a9553ee0635; Expires=Thu, 11-Jan-2029 00:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d8ec5e18c29648b7aa44157c9588f770e0a9c1fd-1705105575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=BBXJo.VOP2o96uhq6u6n2gQAiu.I_fSotK2J8yr1ZOM-1705105575584-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705105576","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (788, 1, '48142697-e344-4ea6-af0c-7e901172a7e8', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[41e50f4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/41e50f4abb6a643eb77c56ef5d517a3b404880ea) add reload infohocvien - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/41e50f4abb6a643eb77c56ef5d517a3b404880ea", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705049245992751100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"48142697-e344-4ea6-af0c-7e901172a7e8","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"48142697-e344-4ea6-af0c-7e901172a7e8","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"48142697-e344-4ea6-af0c-7e901172a7e8","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84442278684b5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 08:47:25 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=RdyI7cWJEODh7NjpaKgU%2FUnd9eXewAp41ho9csBRlLewe7ZaHYL%2B952sIY3gdXzfLpH0ivNS71AhWzPe2kuEVFNTOoxwQg15jVAZRtQT52%2B6We8PhmRWLo%2F2rpdQ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=35bc4ba4b12711eeb987e2fd756561f0; Expires=Wed, 10-Jan-2029 08:47:25 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=35bc4ba4b12711eeb987e2fd756561f015468dc2dd06bd3e5b286a330b05d35e18cdf9b28ca1d9ec60c1c0943cce7158; Expires=Wed, 10-Jan-2029 08:47:25 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6dc79a5b52d9104c34425e5cee95f442313c99bc-1705049245; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=IPyEQf1HP.pKeDiiHK20mLxfAGaWfMBvWLy1zCOFgaA-1705049245955-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705049247","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (792, 1, '460e0af9-8f2c-4615-84bb-28f17de5b45f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:dev] 3 new commits", "description": "[7738159](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/773815950340a50498ed3995ebb83bdcacecc237) Merge pull request ''thinh'' (#89) from thinh into dev\n\nReviewed-on: https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89 - hungthinhne\n[18d5c8f](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/18d5c8f72559020069d731f9b8b1e4073a955df7) fix ke hoach - Lê Hùng Thịnh\n[41e50f4](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/41e50f4abb6a643eb77c56ef5d517a3b404880ea) add reload infohocvien - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/compare/9dbf9d1817992c4fee7c955f584497c9faefcc50...773815950340a50498ed3995ebb83bdcacecc237", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705050104355641100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"460e0af9-8f2c-4615-84bb-28f17de5b45f","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"460e0af9-8f2c-4615-84bb-28f17de5b45f","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"460e0af9-8f2c-4615-84bb-28f17de5b45f","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"8444376dffc05e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:01:44 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qPNDxfyrZK9P6oUa1DB7qWtVLJ1cRPNSb6OorJtEXAZq%2FjOJvFs3H32ObQF9qJM2ygXBf2XVtszHtGiF%2F%2BVQJgmd%2Bu4kR1K1hZjdYB7jQZeehNFE1UBVs0lYBsCj\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=355d20a0b12911ee8f0aa62b7971ed64; Expires=Wed, 10-Jan-2029 09:01:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=355d20a0b12911ee8f0aa62b7971ed6486c65491347eb92a249185d9ca93592278200f22012fc9fbe423fb5bbf0c56f7; Expires=Wed, 10-Jan-2029 09:01:44 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=7185669f10f0948c24481179f338f3b8eebeaadd-1705050104; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=thP702pvWn3vzwQo2LlnoVY2DNc_TnaFZr_cK4aR5PE-1705050104324-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705050105","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (809, 1, '857dbe03-dfb9-4c8f-b482-77c768becd6f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/131/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/131/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705105575947114200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"857dbe03-dfb9-4c8f-b482-77c768becd6f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"857dbe03-dfb9-4c8f-b482-77c768becd6f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"857dbe03-dfb9-4c8f-b482-77c768becd6f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981b7ac125e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cG6Tx4yy%2Bdc0mJeQyV0Xu6kP8Iw4VDTirG0PG%2BMtT4ibqwQuzV%2FZyYcdApUSKjR8zxcLHFUlo8lPbDMta%2F1arloPrA%2BdqEgC3s82RH7GJQ6Qvlgt06%2BSCRTFQaB%2B\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5d06f190b1aa11eeb7c102445d3d6a7d; Expires=Thu, 11-Jan-2029 00:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5d06f190b1aa11eeb7c102445d3d6a7defcaac471cfa2b714be1db6348da3217567af3c9cb8e10cd186f07c240dc9b49; Expires=Thu, 11-Jan-2029 00:26:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d8ec5e18c29648b7aa44157c9588f770e0a9c1fd-1705105575; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=g83MTD0y2.OU4YU..ej3NEWDTD9OxFZANEYbNPA6JF4-1705105575945-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705105577","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (789, 1, '78b21121-79a1-4161-8c90-bfa4d0e45d7c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend:thinh] 1 new commit", "description": "[18d5c8f](https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/18d5c8f72559020069d731f9b8b1e4073a955df7) fix ke hoach - Lê Hùng Thịnh", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/commit/18d5c8f72559020069d731f9b8b1e4073a955df7", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'push', true, 1705050059520921200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"78b21121-79a1-4161-8c90-bfa4d0e45d7c","X-GitHub-Event":"push","X-GitHub-Event-Type":"push","X-Gitea-Delivery":"78b21121-79a1-4161-8c90-bfa4d0e45d7c","X-Gitea-Event":"push","X-Gitea-Event-Type":"push","X-Gitea-Signature":"","X-Gogs-Delivery":"78b21121-79a1-4161-8c90-bfa4d0e45d7c","X-Gogs-Event":"push","X-Gogs-Event-Type":"push","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"84443654f8485e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:00:59 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=OJ%2F6Cjif9%2BClTfZRUKQ7fZYvWdsDHhUqbqZXNKJGy31owgtKJkvc6d88POyp1gGPjklikiHmq9znf3%2Beuw%2FZidw5u%2B3pr6aOoKuoQNd8CYEsVfJA7EkINmU0gCm6\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=1aa55dc2b12911ee9f7c56f32716712c; Expires=Wed, 10-Jan-2029 09:00:59 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=1aa55dc2b12911ee9f7c56f32716712c5aa6190a22ff01012a34025e2430322631ee6cbeffd82dacc878dc0a263aacbd; Expires=Wed, 10-Jan-2029 09:00:59 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=397b5fac892a33f606c89809379510f3b22502cd-1705050059; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=GW70bcX4F7u5FrLRfV9.2cW6kkefyGy7sa9Kb.JSzSI-1705050059498-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705050060","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (791, 1, 'a501f9fc-e9e8-4f88-9e29-121727b4e907', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request merged: #89 thinh", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89", "color": 7506394, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705050103671017000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"a501f9fc-e9e8-4f88-9e29-121727b4e907","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"a501f9fc-e9e8-4f88-9e29-121727b4e907","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"a501f9fc-e9e8-4f88-9e29-121727b4e907","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844437694e515e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:01:43 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AzLrM9%2FzG%2FnVPE5Ge1pJ5mZN%2FHr7Y9UMLenxPqzrTDaC%2Fv3RTFcILL2myxqnEhE71RyyYDvlopyJDwOQBWO6dAGYqzSfxMPhnT9WyZhjUWStEiEkD1GkwBGkLWT1\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=34f615aeb12911eeb34b02c02fe66669; Expires=Wed, 10-Jan-2029 09:01:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=34f615aeb12911eeb34b02c02fe66669f3fce61ca2022d4271df0ffa11a5b27698b0e0dff69b4d8b3bea7d366162eb05; Expires=Wed, 10-Jan-2029 09:01:43 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d5ce0ae0c843294ae7c4af3916f9e8d934a9cff8-1705050103; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=FNP68dqhHGAoDLTtGbWb5b98tZIMqdstxsy7CvoQr4M-1705050103648-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705050104","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (790, 1, 'c61f7954-4793-449e-937a-d80fae36eef4', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[giao-duc-nghe-nghiep/frontend] Pull request opened: #89 thinh", "description": "", "url": "https://git.gdtsolutions.vn/giao-duc-nghe-nghiep/frontend/pulls/89", "color": 1754624, "footer": { "text": "" }, "author": { "name": "hungthinhne", "url": "https://git.gdtsolutions.vn/hungthinhne", "icon_url": "https://git.gdtsolutions.vn/avatars/7715c4a2fab7ac70f672adb17b14cee3" }, "fields": null } ] }', 'pull_request', true, 1705050074582985300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c61f7954-4793-449e-937a-d80fae36eef4","X-GitHub-Event":"pull_request","X-GitHub-Event-Type":"pull_request","X-Gitea-Delivery":"c61f7954-4793-449e-937a-d80fae36eef4","X-Gitea-Event":"pull_request","X-Gitea-Event-Type":"pull_request","X-Gitea-Signature":"","X-Gogs-Delivery":"c61f7954-4793-449e-937a-d80fae36eef4","X-Gogs-Event":"pull_request","X-Gogs-Event-Type":"pull_request","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844436b2fade5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Fri, 12 Jan 2024 09:01:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=LocjgFdCI9WhvIxXn9VPSbvGzNKkPI3dtkhr56Tx490STqLa%2F38Dj2AN4Q3cwHO3CVI1CV8BKlJ4fKIn0%2BIY2sjgol60elC63nV4ZRpesaWwUGVDRGmu8W7lTKBB\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=239f8c22b12911eeade9ae6cb625c7c5; Expires=Wed, 10-Jan-2029 09:01:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=239f8c22b12911eeade9ae6cb625c7c58e60b394f93ace53e4efa4a7201b96e6da403ce5b67cd5cefa3c487b5833b545; Expires=Wed, 10-Jan-2029 09:01:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d03b99d625156f31d0c397ebc13c93ee20d9dbd3-1705050074; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=77M5B1RRYjX6P9S_0VG0NDGZHEdaDKcri4OyAI..aRY-1705050074560-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705050075","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (810, 1, '300631a3-192f-4a03-ba4c-229d61b0fd1f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/131/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/131/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705105576321091800, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"300631a3-192f-4a03-ba4c-229d61b0fd1f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"300631a3-192f-4a03-ba4c-229d61b0fd1f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"300631a3-192f-4a03-ba4c-229d61b0fd1f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844981b9ec585e35-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 00:26:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=1sRlOlHxQJMoBqAUmbuxaX%2BnYKaJiTVbvKvBdpBaG1xsp5T%2F%2FaqeLHUuyq82B9cbbZgr4CUi%2BqH%2FFM7lTKehnc4z9l0suWb5OvDWwXgsnSA2xu%2FMpdzWn%2BHypHFU\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=5d3fb98ab1aa11eebbb8323056eea780; Expires=Thu, 11-Jan-2029 00:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=5d3fb98ab1aa11eebbb8323056eea780ca36be0eb6c38c39816d50fac2cd264b285a52ad2037b2c57782ad94966e1321; Expires=Thu, 11-Jan-2029 00:26:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=3ce427b3043bf87068a32b89bc75c423ba698dfc-1705105576; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=JWQk8mgNLIxi1DVoAktKu4D3NyGQh18Xzc.GgI86WZQ-1705105576318-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705105577","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (841, 1, '16704ba0-2513-4ec4-bd72-1219f139977f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/122/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/122/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164373511261400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"16704ba0-2513-4ec4-bd72-1219f139977f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"16704ba0-2513-4ec4-bd72-1219f139977f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"16704ba0-2513-4ec4-bd72-1219f139977f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d340b3e5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=SGuRTV6JWYrw4XuRR%2BbitZRlOggsYOreKLf0PFlRROQV%2BaMgKtrY5pG2N8FtsG0V7%2BU0%2BRzSf%2BVHJtUsFp2WDyCCMQzVAS4ENYshlSziUTbuLCJUWU%2By0mg0Cp4P\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=431933c2b23311eebfb906fa656c1647; Expires=Thu, 11-Jan-2029 16:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=431933c2b23311eebfb906fa656c16477fa743325075369a24ef714f8270d1799e1c33accd1e5eab04d791be0e7ca372; Expires=Thu, 11-Jan-2029 16:46:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=440f5ddaf878039441a550fc0c10193e8c6aad10-1705164373; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=uXFbMq8X0NXT1VdAC1vZUY8Her9BM9m6dbR0zTfP_LY-1705164373496-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705164374","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (834, 1, 'c4d6f40b-2d54-4a84-b8be-d3e02c96969e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/119/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/119/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164379674482700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c4d6f40b-2d54-4a84-b8be-d3e02c96969e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c4d6f40b-2d54-4a84-b8be-d3e02c96969e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c4d6f40b-2d54-4a84-b8be-d3e02c96969e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d5aab955e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:19 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2FbZTOD%2B3tjz3i%2Fg4mRn%2FbpYfJK63JahN367jBnMIbyjSzTjq%2FDPHchUd1EtkDueQcL8umjsBPYEx4ln1ieakJ9klgiVIbh1dT%2FzUXFVBC5QcMf7GFgT5Th6jjy9j\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=46c54f38b23311eeb17e02445d3d6a7d; Expires=Thu, 11-Jan-2029 16:46:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=46c54f38b23311eeb17e02445d3d6a7df633bf9bfa31d8db4f57639919d6a63c6d581eb6f6605b752feeb043faa698c6; Expires=Thu, 11-Jan-2029 16:46:19 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=e7431dfcec9461afb76d57836667a9dbdd0523bd-1705164379; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Txb691NECXjpXEk_dRrG26Jpqp8gOHRC15IvGToVcfk-1705164379658-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164380","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (835, 1, '658902a0-b4cc-4c05-a373-2c2372812bc8', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/119/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/119/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164380187483500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"658902a0-b4cc-4c05-a373-2c2372812bc8","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"658902a0-b4cc-4c05-a373-2c2372812bc8","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"658902a0-b4cc-4c05-a373-2c2372812bc8","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d5d1c1b5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:20 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=9F4HiC67mtEjcdvYvfURALZ3pc8S71LGU5TUr84fk05ZH7B9ICHRM4sggJCkekJvs4cp4G1Jv9LaRUJeQZ3E9z8A%2FMqomod9ToLDORZvbxfnKdzODuW8NFVA3MuK\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=4713c032b23311ee80b4f6b29dbd0d54; Expires=Thu, 11-Jan-2029 16:46:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=4713c032b23311ee80b4f6b29dbd0d543a8a19ec57fa2e1f9bff9c357181f67778229502a0ec47370a433c6e6867fb15; Expires=Thu, 11-Jan-2029 16:46:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6ba39b49312977138f7011672e3f14450a375cc3-1705164380; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=5W9TKWYPwhv7T30kxK88j4pIXJ_ldQg4sRl693EItoY-1705164380172-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"3","X-Ratelimit-Reset":"1705164381","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (836, 1, '3b32a00f-251b-4d84-adeb-5c96f07b06d1', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/120/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/120/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164380614940200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3b32a00f-251b-4d84-adeb-5c96f07b06d1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3b32a00f-251b-4d84-adeb-5c96f07b06d1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3b32a00f-251b-4d84-adeb-5c96f07b06d1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d605cbb5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:20 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=TSAqoccod%2BvIj7FDuKkEuN6hwWcX0Ng2dA%2B8AgfhcO48uR5trnmoNCTN56h%2BC9LgijGVKzBTfHroatC9MK8RgY3GcItcxpx4BtESWReqEVXmbtz0firL8hBhC4my\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=47550164b23311eeaeb82ebbdd16f95b; Expires=Thu, 11-Jan-2029 16:46:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=47550164b23311eeaeb82ebbdd16f95bb501f5fb56e0a11a1b058f49449b0270acbf4b8a136b99844df9c8ad7efd07f0; Expires=Thu, 11-Jan-2029 16:46:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6ba39b49312977138f7011672e3f14450a375cc3-1705164380; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=a512e6JmeVJxNCg364gXZNX66ZGlUTPmPRqTl9XM3_E-1705164380599-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164381","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (837, 1, '54613c75-f86c-48dc-b76a-6a5ed68e5ea9', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/120/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/120/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164381003931700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"54613c75-f86c-48dc-b76a-6a5ed68e5ea9","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"54613c75-f86c-48dc-b76a-6a5ed68e5ea9","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"54613c75-f86c-48dc-b76a-6a5ed68e5ea9","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d630d4a5e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:20 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dLXpU8ed%2Fi2sf1A%2BFvLBL8M9gUX%2FI0LkTEoZcWD8Do0Rp87DPAuzDcNVtIsff%2FPtAsQlV5VHXjyJebS%2BLBiugNUEhXJer3OIl5isJ28u%2FrCYhir%2FBis92z5cepXM\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=479043a0b23311eea427ea10a25c610b; Expires=Thu, 11-Jan-2029 16:46:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=479043a0b23311eea427ea10a25c610b6d8a33b060d7eba72830cbbe6c243d74842eba5321afeab61aec9545e5853063; Expires=Thu, 11-Jan-2029 16:46:20 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=6ba39b49312977138f7011672e3f14450a375cc3-1705164380; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=GkguHQC.KA1gZI_JocwOrxYYsoWRJkyg7_7EvWfEXyw-1705164380988-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164382","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (840, 1, '2f38e132-62c4-4a15-b831-5efadd96e1e6', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/122/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/122/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164383327418600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2f38e132-62c4-4a15-b831-5efadd96e1e6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"2f38e132-62c4-4a15-b831-5efadd96e1e6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"2f38e132-62c4-4a15-b831-5efadd96e1e6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d7198245e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:23 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=c%2BKvfxvcrbDNZMvr0JMbAwVf5DHuu31xFCG4vXaKnJ3dYa3%2BH2lKrWoa37gK2MHdQo3HpsfteBiQ%2BRRqm80ljiS2wPjYL%2FUzkLsoTeDy64NxEGFQTZMkT8WKVOie\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=48f2d398b23311eeb72eea10a25c610b; Expires=Thu, 11-Jan-2029 16:46:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=48f2d398b23311eeb72eea10a25c610bfcad9c6cc4603d181aed54715c282ebe7bb06d7566ff3e462bc9f6f7519f49fd; Expires=Thu, 11-Jan-2029 16:46:23 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=2c1b84e7fe9407d37bf13583c37fb38b270f7720-1705164383; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=2xt9r91bFDe7C2gOusZoFufoGZsJZ0VGQxhUXx7qnF4-1705164383312-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164384","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (982, 1, 'add8279b-73a0-4a7f-9a1b-ea712ea62da3', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/76/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/76/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458373412892100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"add8279b-73a0-4a7f-9a1b-ea712ea62da3","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"add8279b-73a0-4a7f-9a1b-ea712ea62da3","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"add8279b-73a0-4a7f-9a1b-ea712ea62da3","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26ef3d815e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5sffJnQqhtYrsMbbA16XtQDKai0kOAOrEKdR1p13ELQDsdbnbS1wmpcnfmbn4CsxvXEfb1vtr2ZVGfpweK%2FVr1tVD5BpuxoeX50tzEhGu9bbBnmIhyKrfMj4bTQI\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c8b0404eb4df11ee9477dae1b841d91e; Expires=Mon, 15-Jan-2029 02:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c8b0404eb4df11ee9477dae1b841d91ef6e1df9e77124a5552faf835a1cb3f2e355ef182fc79930d223b5b573b7e6576; Expires=Mon, 15-Jan-2029 02:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=09dc058170902ab28690be97da7bafeeafef5fc1-1705458373; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Vi1Eyg8Z4QaFrFT6I6nFP32aTDM45O50syhaWxcHP8M-1705458373390-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458375","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (823, 1, '656f7374-ca79-4f2f-a014-f947b5162f7b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/113/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/113/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164374570031400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"656f7374-ca79-4f2f-a014-f947b5162f7b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"656f7374-ca79-4f2f-a014-f947b5162f7b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"656f7374-ca79-4f2f-a014-f947b5162f7b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d3a0c645e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=P3p3PlXO0OZDJ6cn%2F5U3gM7XbxJnxDN%2FtsxcDztYldxRwAfWP8%2FTv980I0eokl%2BylaPuHa9Hi9LT3D%2ByRkUzbt5DCodgIC%2Fo6qLi0CgXmGP%2B%2BYXIgjdF5qeASmId\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=43baabbcb23311eeb1c6fe34e9621588; Expires=Thu, 11-Jan-2029 16:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=43baabbcb23311eeb1c6fe34e962158882677a60d7fe5e47c4db9d6736ebf816f4af849a6248f721a6ab55d9417d36ac; Expires=Thu, 11-Jan-2029 16:46:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=8e168380d93d5f2447c0d3e1d02f6eac14ab3736-1705164374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=xKZXKHokfdrNPE3BniaszpMkdsaIJ2mEMvF2ikZrAg4-1705164374554-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164375","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (826, 1, '4259aae2-bf63-4845-a621-9fa5d31cc701', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/115/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/115/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164375917821400, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"4259aae2-bf63-4845-a621-9fa5d31cc701","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"4259aae2-bf63-4845-a621-9fa5d31cc701","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"4259aae2-bf63-4845-a621-9fa5d31cc701","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d426e205e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:15 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=tLX0ZaAv7aeHjuygdCMi8E8wZFT5oNA4brnkfXegbUz07sWkPzAbn8%2F41jft210L7ymwsNBG3lYQyqrS9C1DoapCh%2B7ifijCVOVnwzAf1T33sGcAX9IM5Ys1dRFf\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=44883e38b23311ee8ffc16a8a718f508; Expires=Thu, 11-Jan-2029 16:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=44883e38b23311ee8ffc16a8a718f508493c604cb4825e4cb869530c494b480d189694e6e219e174ae35dc6c3110a7ea; Expires=Thu, 11-Jan-2029 16:46:15 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=79ab1ef4be4d4523e6e35a7c89bce78eb36e6f50-1705164375; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=TANpBZJIPQxW8zX9EK.RhDQ0d.RXtesoMCcQNUl25p8-1705164375902-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164377","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (827, 1, '1b1d5227-be56-41ad-a4e0-0b1602c1325e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/115/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/115/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164376345657700, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1b1d5227-be56-41ad-a4e0-0b1602c1325e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1b1d5227-be56-41ad-a4e0-0b1602c1325e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1b1d5227-be56-41ad-a4e0-0b1602c1325e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d45aec75e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=pZ8scOOs53ciGBkgh4CtP3njlZJswOGTQQjR6YD1YM9S%2FeH5Iyz8zCal%2ByJMT0kD5eUIq2WRLYw6%2FG44slacLd4eQUL1X9wZ7JG%2F8L9st9k3ydSc7GVykDDTDFGh\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=44c97a38b23311ee99c506fa656c1647; Expires=Thu, 11-Jan-2029 16:46:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=44c97a38b23311ee99c506fa656c164761160c03b1f782fca331b7aab75c252c00e3809d755127c010aaa3b9bb9b7dec; Expires=Thu, 11-Jan-2029 16:46:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5790be6600fc0ebd23d0de15d55dbcdec8ca69f7-1705164376; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=yQzmpXWQgraTxG5mcA8N_9asvyJ.8pY8pSs6KTs5H4I-1705164376330-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164377","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (828, 1, 'd37079ab-dbad-4632-b632-bca21c97c050', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/116/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/116/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705164376742616500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d37079ab-dbad-4632-b632-bca21c97c050","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d37079ab-dbad-4632-b632-bca21c97c050","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d37079ab-dbad-4632-b632-bca21c97c050","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"844f1d485f555e36-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Sat, 13 Jan 2024 16:46:16 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=%2FVDIphmuWrWDSuo%2FGIXR1WFLDYmou1AP7NGUXn7KuOQCO9OLtlKMjKGFakD30MqDofmzwMmmPyXK7J4LDRaXUfWMt62qSbH0M0M7WlmJIAq7nQOSNVpS19g0%2BRo9\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=4506053eb23311ee99f4f60d09edbba6; Expires=Thu, 11-Jan-2029 16:46:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=4506053eb23311ee99f4f60d09edbba6757724e66a6869f3a3f56ee8f30507e95f92e544a3bd78cf208aa9ea26a8b93f; Expires=Thu, 11-Jan-2029 16:46:16 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5790be6600fc0ebd23d0de15d55dbcdec8ca69f7-1705164376; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=0bMIl46L2GeNcZdNgoNR.DOGptoAdT8QSBWM216TWrw-1705164376727-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"4","X-Ratelimit-Reset":"1705164377","X-Ratelimit-Reset-After":"1"},"body":""}'); INSERT INTO public.hook_task VALUES (1101, 1, '476e1cdd-aae6-4b9d-a86e-c57577ec87b1', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/40/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/40/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575522783012900, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"476e1cdd-aae6-4b9d-a86e-c57577ec87b1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"476e1cdd-aae6-4b9d-a86e-c57577ec87b1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"476e1cdd-aae6-4b9d-a86e-c57577ec87b1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847653066d3f5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:42 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=3k824hQiVFMcUELKWLrea2eIl0PL3d9jJVlONrezPsuv8PXXW8rqcJYhM0kAJLKseg%2F3Ae%2BGP%2F2olKMwmZYoC6jtVuqQGbvYcAsO2UP9P5Y1i3%2Bt9EuCCyVxi5Up\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8b26df64b5f011ee810832177206e909; Expires=Tue, 16-Jan-2029 10:58:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8b26df64b5f011ee810832177206e90916608ff6f40143945443263b1538849ab50700f3a361efe17081b6bb4489aa2f; Expires=Tue, 16-Jan-2029 10:58:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=aa34770d24dbaa26e1e391448df171ca591bd482-1705575522; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Qtzq_.uuroipz08c5FQQsg8AzpVBFgWXOOjYTCpegJc-1705575522754-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"1","X-Ratelimit-Reset":"1705575524","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (983, 1, 'ab1e67a8-494f-4344-9d1e-9711bbb8ba3c', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/77/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/77/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458373865368200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"ab1e67a8-494f-4344-9d1e-9711bbb8ba3c","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"ab1e67a8-494f-4344-9d1e-9711bbb8ba3c","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"ab1e67a8-494f-4344-9d1e-9711bbb8ba3c","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26f1ee725e3b-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Wed, 17 Jan 2024 02:26:13 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=TvVt1Nz3Kx7JFlkdhF3Q%2FbejhvuGPGbLiZv7jWZjyPBipXeKP4z6oS%2FlbkU%2Fvej59koj8hdakYPiSyfo5Vp2CfX9iD9PzenWIAetQwRengw6Xg%2BD5fUkmoYM4vIJ\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=c8f56340b4df11eea65b2678b8edd28c; Expires=Mon, 15-Jan-2029 02:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c8f56340b4df11eea65b2678b8edd28c95a50f1b5073185fd49dc6dbde42299e5f6a8b9ae68674f70454369e6038323e; Expires=Mon, 15-Jan-2029 02:26:13 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=09dc058170902ab28690be97da7bafeeafef5fc1-1705458373; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Wzwmn0lcoZxPhwon9VtD.71P7WYnA7GsSlo13vqp28g-1705458373842-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458376","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (986, 1, 'e858616d-eaac-4f10-843d-ebabdf3c8ec6', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/78/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/78/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705458374975171500, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"e858616d-eaac-4f10-843d-ebabdf3c8ec6","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"e858616d-eaac-4f10-843d-ebabdf3c8ec6","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"e858616d-eaac-4f10-843d-ebabdf3c8ec6","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"846b26f9b9375e3b-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Wed, 17 Jan 2024 02:26:14 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=wQxKR%2BWV41E2EXERmTSdK3S40hgb8ORjmKSIGNRQZluPsbUl2aVJWBfA%2FoD4xyhWAEmDUqrOa%2BSxT7hqoadYvGDSgrkEFumawjZIryFS%2FBp1Gb%2F9w5vNW1izXNrL\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2111","Server":"cloudflare","Set-Cookie":"__dcfduid=c99ed4d4b4df11ee9cad8a8ffccdf47f; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=c99ed4d4b4df11ee9cad8a8ffccdf47f170af79de4a6314c9d51dd075fdc728202c37949ac60e222e96dd626b608bab6; Expires=Mon, 15-Jan-2029 02:26:14 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=46208b8d2b61a76951114a5231d0bdf6b88819f4-1705458374; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=i7dkgKWOmITQ_vUwdkePtOjahOMysW7vtBq7vNw9v6o-1705458374953-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705458377","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (1110, 1, 'c5f1f109-6d79-4a0b-995e-1a72fe83c932', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/45/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/45/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575518260109000, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"c5f1f109-6d79-4a0b-995e-1a72fe83c932","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"c5f1f109-6d79-4a0b-995e-1a72fe83c932","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"c5f1f109-6d79-4a0b-995e-1a72fe83c932","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652ea5ed65e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qS4AjJO3y5589r26%2FCPIR%2FnFeJQYBH9MvXCE9%2BfkOJc6g61teQuada43vXSRCzx0aCZ58NyvXShlwjq5L84jsjHJ3UBpwK7Q9cMDUR0cmeJDSKkz1kGUl4yXRzRR\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=887478e4b5f011eebd02c63f4a2b7744; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=887478e4b5f011eebd02c63f4a2b7744ab443b25092aa7c0a128a3f31af5f9c0680e417604616515cb96f0e9ad7b1505; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d4f94a86facdc66ea2f2cb7b0f4ffcc488bc5db8-1705575518; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=vkJs_3A_VmDYduTklSthfATmla6QccYKiIeTsNSJMRQ-1705575518231-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575520","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1111, 1, '4621952b-f3cf-4add-aaaa-77a179942a78', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/45/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/45/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575518663930600, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"4621952b-f3cf-4add-aaaa-77a179942a78","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"4621952b-f3cf-4add-aaaa-77a179942a78","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"4621952b-f3cf-4add-aaaa-77a179942a78","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652ed2f715e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=DnRApLDItGcMyyNMxrKoyMNLlXezCnCQBCn2e0vDNxVdR8vpBhyNLCSVQ%2B%2Bx6sjYZI4xBpkZ4ROADODG10oJfU5zJqqBerH0H4QB1qwWSjssxY7OxioO7OI8piGi\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=88b1c708b5f011eea31eb21ce3eda698; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=88b1c708b5f011eea31eb21ce3eda698a905507fba63e3848da74292c33fd361bd1b30e33f6ecfc5f63cf3b6d85880ad; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d4f94a86facdc66ea2f2cb7b0f4ffcc488bc5db8-1705575518; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=uj.SMsSJzdtCzjQaJBHJLSlT5N1u46blnWJfkS4jd50-1705575518632-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575521","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1094, 1, '1d408150-31fc-441f-b48a-13aad6d61c0b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/37/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/37/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575519091439200, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1d408150-31fc-441f-b48a-13aad6d61c0b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1d408150-31fc-441f-b48a-13aad6d61c0b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1d408150-31fc-441f-b48a-13aad6d61c0b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652f058015e3a-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=L19U1yqp67Iy1bqJMuIGPcRLuq5xZqbP8o5%2B7KQgCV22JHQus%2BSrL%2B1pq4RTBQ%2Fl1YKkQiCfEniCmPYGpRo1%2FWXrIT%2FAoBn67kpxjLwODDzgHqVXuwSd0jCOUOU0\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2203","Server":"cloudflare","Set-Cookie":"__dcfduid=88f3417eb5f011ee8c750267d10d6995; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=88f3417eb5f011ee8c750267d10d6995f3ecf1a510159adffb42d52976e153a54f4a8c2692870f30b672fc55541fa9a4; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5b611484b7450f44bd88935639e49cb7c04d7032-1705575519; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=Z67InkmzrRGWOixngCjnb2XHqtOvqYLJJCnsLpzrwmc-1705575519061-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575522","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (1112, 1, '30ce78cb-0a54-4a98-8345-378fd620ab52', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/46/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/46/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575519110231200, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"30ce78cb-0a54-4a98-8345-378fd620ab52","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"30ce78cb-0a54-4a98-8345-378fd620ab52","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"30ce78cb-0a54-4a98-8345-378fd620ab52","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652efbfea5e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=kbDmsiZi5jyPKvhFACs4pXbSbR5RGry20FoUuGhZWzSUJ9e8T05T7aG1Vd3Bm7jTt46PBW8BfV3PfqF%2BmMKJuGzIG%2BoheuMC%2F9UkJnQ%2FP%2Bja3eVtfLHZax8FkJ70\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=88f5e320b5f011ee956e5e6ac2312080; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=88f5e320b5f011ee956e5e6ac2312080ca7908a11c9ee558bcee110efc25c283ab7419986db87dd883250c9172f440d7; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5b611484b7450f44bd88935639e49cb7c04d7032-1705575519; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=zQle4kfQ7lvn6Unz_4mQl97Jhla6n9.UpDe39mEHobA-1705575519078-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575521","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1096, 1, 'd1fa753f-51e5-4826-b36c-007a7eea257b', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/38/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/38/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575520436993900, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d1fa753f-51e5-4826-b36c-007a7eea257b","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d1fa753f-51e5-4826-b36c-007a7eea257b","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d1fa753f-51e5-4826-b36c-007a7eea257b","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652f4f9445e3a-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:40 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=uIuw5Gt6P3AoMgfHPCE%2BNJJIaTQfLmePp4ZhQpej7S7wkAfUz4Acs4Y%2B6PGAW8e%2FyzbkPD5uWwlKuApFc3Kb0jdnoEDLQWfgTbxmx9L11scNvoqr2qXyfIT%2FPqe3\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2063","Server":"cloudflare","Set-Cookie":"__dcfduid=89c0a01ab5f011ee86defa061f2ac903; Expires=Tue, 16-Jan-2029 10:58:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=89c0a01ab5f011ee86defa061f2ac9033e8fb857a44595ece5ff374d4d8cfe25a117867b505a1cbb3c3866cc5a0cf708; Expires=Tue, 16-Jan-2029 10:58:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=60f1d629456b607e0e01ba464460e82b3d90026e-1705575520; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=MWmFPLIoId8PfWjAUme00VlroGzvLzwFXn0qL.hpRMw-1705575520407-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575523","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (1092, 1, '1f3555ca-ef47-402b-abbf-2b3c9f4ac7e5', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/36/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/36/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575518457372100, false, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"1f3555ca-ef47-402b-abbf-2b3c9f4ac7e5","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"1f3555ca-ef47-402b-abbf-2b3c9f4ac7e5","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"1f3555ca-ef47-402b-abbf-2b3c9f4ac7e5","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":429,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652ec7efb5e3a-HAN","Connection":"keep-alive","Content-Length":"79","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"application/json","Date":"Thu, 18 Jan 2024 10:58:38 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=v6P%2B3CGvWzu5lW6gogD2rjM%2Fq7YfA8hRbSSfnfLHsYNVSY%2BiR8oicZJZGebMV%2FD0rbyG7%2Fu3%2BH%2FM5F0tJqeBjwBwEteJ0dZneJ79Rl66xgK2cLsqU2m8cLeEgiUH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Retry-After":"2036","Server":"cloudflare","Set-Cookie":"__dcfduid=88929e8cb5f011eeb29566eceb6731eb; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=88929e8cb5f011eeb29566eceb6731ebd50291806bb8a8a53cd277e81a3f974d7e051a83d6a34eb3280d70982c410e9c; Expires=Tue, 16-Jan-2029 10:58:38 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=d4f94a86facdc66ea2f2cb7b0f4ffcc488bc5db8-1705575518; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=mNlFN0uI8ERcEeSyvma76k1dOlIVM1zS64zRtoTU1s4-1705575518428-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575521","X-Ratelimit-Reset-After":"3","X-Ratelimit-Scope":"user"},"body":"{\"message\": \"You are being rate limited.\", \"retry_after\": 0.3, \"global\": false}"}'); INSERT INTO public.hook_task VALUES (1114, 1, 'cd408923-03d2-4d3b-9918-efad963ff18e', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/47/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/47/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575519806249300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"cd408923-03d2-4d3b-9918-efad963ff18e","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"cd408923-03d2-4d3b-9918-efad963ff18e","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"cd408923-03d2-4d3b-9918-efad963ff18e","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652f478d25e38-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:39 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=PZF4eOXEN80D7mBGl55m8mw1UvoD%2BiJ4KaO%2FEgGO%2B7Kj4PRPVKLLcJXyN5Y2wBosnKsHrIo0Njmv3%2Bq%2FyhpO2YWhQFBhSpb5VSs4XN%2Fwuy03kou8ET9VjrX1mmpk\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=896080ccb5f011ee9cfab21ce3eda698; Expires=Tue, 16-Jan-2029 10:58:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=896080ccb5f011ee9cfab21ce3eda69852d4ef23cc78bf6263887bf2b9cc1a42736255e962454afb34e8244a75767a4b; Expires=Tue, 16-Jan-2029 10:58:39 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=5b611484b7450f44bd88935639e49cb7c04d7032-1705575519; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=F8xNCB0x9yQv7ZclqNzx_a_.eOlT3rpaax7nhi7B.TM-1705575519777-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575522","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1097, 1, '067b2222-ffe3-4cbf-bf4b-b8e600437ba1', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/38/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/38/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575520838167100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"067b2222-ffe3-4cbf-bf4b-b8e600437ba1","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"067b2222-ffe3-4cbf-bf4b-b8e600437ba1","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"067b2222-ffe3-4cbf-bf4b-b8e600437ba1","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652faca915e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:40 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=KLkNIh2vqp4xdQ4v%2B8CvIgXT7kQYjU6fARqM4IRCThmSHCDCZsvNZeL8Hg%2BaNZCxtvSWtx14LrBTriYRQ0%2FwNjVgGscWQuC9BT1kCeXs%2FqS2MOtqryR8f6kTX%2FyR\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=89fce0b6b5f011eea65666eceb6731eb; Expires=Tue, 16-Jan-2029 10:58:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=89fce0b6b5f011eea65666eceb6731eb6858bb392de0a52262ae3df0c0126cd01c99d4f38fc243237181e4ed0e9f0997; Expires=Tue, 16-Jan-2029 10:58:40 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=60f1d629456b607e0e01ba464460e82b3d90026e-1705575520; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=qH4av4F3a_d.Mt6h.3yN6qbFz.OpU1WOS9PwvfzLUrU-1705575520808-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575523","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1098, 1, '3ff6eda8-619e-43ec-ac33-9114492ece29', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/39/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/39/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575521232037300, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"3ff6eda8-619e-43ec-ac33-9114492ece29","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"3ff6eda8-619e-43ec-ac33-9114492ece29","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"3ff6eda8-619e-43ec-ac33-9114492ece29","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652fd4b3d5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:41 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ilIcj6jIO8MoBe8Ubba5rAcEhMOhE%2BfBuj5ongLmbSPwto3t5d94B8IrNtgf1uVHnDjnjkskOV4evaqGgXstYHItWV9oCRb10yg3ZXok%2BcHssTvQc7jDSB241dBw\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8a3a0eb4b5f011ee81a97e2692e27cb8; Expires=Tue, 16-Jan-2029 10:58:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8a3a0eb4b5f011ee81a97e2692e27cb81e5bc9d6032a24647964a11477078d27f8bb46a58acdfdc3e64ce3cec12f6c7c; Expires=Tue, 16-Jan-2029 10:58:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=623760edcba99010ea034b192cdec1eabdce3e78-1705575521; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=iOwnJJ_PhHosznl2tIDnnko7ifCyhhzhL4STKYCMeOQ-1705575521202-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575523","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1099, 1, 'd1051309-ab15-471c-874d-8ba39d4a076f', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/39/merge deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/39/merge", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575521658431500, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"d1051309-ab15-471c-874d-8ba39d4a076f","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"d1051309-ab15-471c-874d-8ba39d4a076f","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"d1051309-ab15-471c-874d-8ba39d4a076f","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847652ffdbda5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:41 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=TSSvoDRPlk5I%2Fmdziu1dC%2F8UEwZcje1eUoi8pQCFkRT%2F1gXcNyOnxeSpWLv%2F%2BiMO4eeNdxi5F5Mb10ISgs07jmLqrJwW%2Bc1j5PnoNz1%2BL3B1EwYxLo4W6HuP5pEl\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8a7abfd6b5f011eeb5bd2ef1960fe1ba; Expires=Tue, 16-Jan-2029 10:58:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8a7abfd6b5f011eeb5bd2ef1960fe1baa6ce839da15e780d01ce161cc309dfa3e76ae95df0e71fb28a0d71f15f1aa8b6; Expires=Tue, 16-Jan-2029 10:58:41 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=623760edcba99010ea034b192cdec1eabdce3e78-1705575521; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=0cK9FtfGW1s2..496Wo8Fo0XCxzrX5ieEphvRk31C9Y-1705575521629-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575524","X-Ratelimit-Reset-After":"2"},"body":""}'); INSERT INTO public.hook_task VALUES (1100, 1, '2c59c25b-437f-401b-84ec-8286fbbaa4bb', '{ "wait": false, "content": "", "username": "Gitea", "avatar_url": "https://try.gitea.io/assets/img/logo.png", "tts": false, "embeds": [ { "title": "[binh-dinh-f1/website] tag refs/merge-requests/40/head deleted", "description": "", "url": "https://git.gdtsolutions.vn/binh-dinh-f1/website/src/refs/merge-requests/40/head", "color": 16724530, "footer": { "text": "" }, "author": { "name": "binh-dinh-f1", "url": "https://git.gdtsolutions.vn/binh-dinh-f1", "icon_url": "https://git.gdtsolutions.vn/avatars/a7de41eaa3374421894928fea070ace350cb58e49e0f760767d264d4c4d095e2" }, "fields": null } ] }', 'delete', true, 1705575522298455100, true, '{"url":"https://discord.com/api/webhooks/1111314298963251331/6WUzvuJm_-j1ObkwgZTi24JChlrT-6siZau5f5_m0nv2MEPilWLYTeRQazwl0DPb2NW9","http_method":"POST","headers":{"Content-Type":"application/json","X-GitHub-Delivery":"2c59c25b-437f-401b-84ec-8286fbbaa4bb","X-GitHub-Event":"delete","X-GitHub-Event-Type":"delete","X-Gitea-Delivery":"2c59c25b-437f-401b-84ec-8286fbbaa4bb","X-Gitea-Event":"delete","X-Gitea-Event-Type":"delete","X-Gitea-Signature":"","X-Gogs-Delivery":"2c59c25b-437f-401b-84ec-8286fbbaa4bb","X-Gogs-Event":"delete","X-Gogs-Event-Type":"delete","X-Gogs-Signature":"","X-Hub-Signature":"sha1=","X-Hub-Signature-256":"sha256="}}', '{"status":204,"headers":{"Alt-Svc":"h3=\":443\"; ma=86400","Cf-Cache-Status":"DYNAMIC","Cf-Ray":"847653027c6d5e3a-HAN","Connection":"keep-alive","Content-Security-Policy":"frame-ancestors ''none''; default-src ''none''","Content-Type":"text/html; charset=utf-8","Date":"Thu, 18 Jan 2024 10:58:42 GMT","Nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","Report-To":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=I1EI8txd4Bby4s%2B7KAy%2ByI%2F489yJwFQB4SO50MaANOQHYsM9TD21IGETFAgWmN7jUHaRSbE9Rl6ervy2R0YQlSNtxTw%2BYDkz0lP5eZjx1ZFIaSyEyxkuhomQJDpH\"}],\"group\":\"cf-nel\",\"max_age\":604800}","Server":"cloudflare","Set-Cookie":"__dcfduid=8ad61f84b5f011ee92b97e2692e27cb8; Expires=Tue, 16-Jan-2029 10:58:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__sdcfduid=8ad61f84b5f011ee92b97e2692e27cb805739c3a02f415bc5712b268b7518e4d2211e74d3b46cfafda9ae39dbcf851cd; Expires=Tue, 16-Jan-2029 10:58:42 GMT; Max-Age=157680000; Secure; HttpOnly; Path=/; SameSite=Lax,__cfruid=aa34770d24dbaa26e1e391448df171ca591bd482-1705575522; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None,_cfuvid=07eGgHkUGRiM3sleVYFGtn0yswnnjp_WVA5Ey28nwEk-1705575522269-0-604800000; path=/; domain=.discord.com; HttpOnly; Secure; SameSite=None","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Via":"1.1 google","X-Content-Type-Options":"nosniff","X-Ratelimit-Bucket":"3d2712a9e4fe17cc9d3fed4a8e672e5f","X-Ratelimit-Limit":"5","X-Ratelimit-Remaining":"0","X-Ratelimit-Reset":"1705575524","X-Ratelimit-Reset-After":"2"},"body":""}'); -- -- Data for Name: issue; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.issue VALUES (8, 21, 7, 11, '', 0, 'update add nam giang day', '', 0, 0, true, true, 0, '', 0, 1702545113, 1702545135, 1702545133, false, 0); INSERT INTO public.issue VALUES (1, 1, 1, 1, '', 0, 'Test tạo issue', 'Test tạo issue trên repo test của **Tuấn**', 0, 0, false, false, 1, '', 0, 1685071485, 1685071535, 0, false, 0); INSERT INTO public.issue VALUES (19, 21, 18, 11, '', 0, 'import hoc vien', '', 0, 0, true, true, 0, '', 0, 1702950871, 1702953627, 1702953625, false, 0); INSERT INTO public.issue VALUES (35, 21, 34, 11, '', 0, 'update phan quyen chinh sua', '', 0, 0, true, true, 0, '', 0, 1704337707, 1704337727, 1704337726, false, 0); INSERT INTO public.issue VALUES (15, 21, 14, 11, '', 0, 'import nha giao', '', 0, 0, true, true, 0, '', 0, 1702883674, 1702883704, 1702883703, false, 0); INSERT INTO public.issue VALUES (2, 21, 1, 1, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1702096324, 1702096970, 1702096969, false, 0); INSERT INTO public.issue VALUES (34, 21, 33, 11, '', 0, 'update edit location hoso', '', 0, 0, true, true, 0, '', 0, 1704337467, 1704337488, 1704337487, false, 0); INSERT INTO public.issue VALUES (16, 21, 15, 11, '', 0, 'filter QuanHuyenViewSo + Json HS/SV', '', 0, 0, true, true, 0, '', 0, 1702887099, 1702887118, 1702887117, false, 0); INSERT INTO public.issue VALUES (3, 21, 2, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1702262288, 1702262653, 1702262651, false, 0); INSERT INTO public.issue VALUES (37, 21, 36, 11, '', 0, 'add nld change year nhucau', '', 0, 0, true, true, 0, '', 0, 1704352552, 1704352574, 1704352572, false, 0); INSERT INTO public.issue VALUES (4, 21, 3, 11, '', 0, 'update nguoi tao filter', '', 0, 0, true, true, 0, '', 0, 1702268898, 1702268924, 1702268923, false, 0); INSERT INTO public.issue VALUES (17, 21, 16, 11, '', 0, 'fix giao dien', '', 0, 0, true, true, 0, '', 0, 1702887891, 1702887924, 1702887923, false, 0); INSERT INTO public.issue VALUES (36, 21, 35, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704349752, 1704349775, 1704349774, false, 0); INSERT INTO public.issue VALUES (9, 21, 8, 11, '', 0, 'up code', '', 0, 0, true, true, 0, '', 0, 1702610165, 1702610185, 1702610183, false, 0); INSERT INTO public.issue VALUES (20, 21, 19, 11, '', 0, 'update file excel hoc vien', '', 0, 0, true, true, 0, '', 0, 1702957079, 1702957101, 1702957099, false, 0); INSERT INTO public.issue VALUES (5, 21, 4, 11, '', 0, 'render Action NLĐ', '', 0, 0, true, true, 0, '', 0, 1702367030, 1702367055, 1702367054, false, 0); INSERT INTO public.issue VALUES (38, 21, 37, 11, '', 0, 'update bao cao', '', 0, 0, true, true, 0, '', 0, 1704422986, 1704423007, 1704423005, false, 0); INSERT INTO public.issue VALUES (18, 21, 17, 11, '', 0, 'fix bang du lieu import excel', '', 0, 0, true, true, 0, '', 0, 1702891923, 1702891943, 1702891942, false, 0); INSERT INTO public.issue VALUES (6, 21, 5, 11, '', 0, 'update row nld', '', 0, 0, true, true, 0, '', 0, 1702372528, 1702372550, 1702372549, false, 0); INSERT INTO public.issue VALUES (40, 21, 39, 11, '', 0, 'update Loai hinh csgdnn', '', 0, 0, true, true, 0, '', 0, 1704444548, 1704444568, 1704444567, false, 0); INSERT INTO public.issue VALUES (7, 21, 6, 11, '', 0, 'cmt QMTS + edit url KeHoachTuyenSinh', '', 0, 0, true, true, 0, '', 0, 1702438663, 1702438682, 1702438681, false, 0); INSERT INTO public.issue VALUES (39, 21, 38, 11, '', 0, 'update bao cao tuyen sinh', '', 0, 0, true, true, 0, '', 0, 1704428623, 1704428657, 1704428655, false, 0); INSERT INTO public.issue VALUES (24, 21, 23, 11, '', 0, 'add ke hoach tuyen sinh', '', 0, 0, true, true, 0, '', 0, 1703581435, 1703581457, 1703581455, false, 0); INSERT INTO public.issue VALUES (10, 21, 9, 11, '', 0, 'add PLTDDT', '', 0, 0, true, true, 0, '', 0, 1702615287, 1702615308, 1702615307, false, 0); INSERT INTO public.issue VALUES (21, 21, 20, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1702958702, 1702958723, 1702958721, false, 0); INSERT INTO public.issue VALUES (22, 21, 21, 11, '', 0, 'fix giao dien', '', 0, 0, true, true, 0, '', 0, 1702978970, 1702979015, 1702979013, false, 0); INSERT INTO public.issue VALUES (11, 21, 10, 11, '', 0, 'update form thong tin tot nghiep', '', 0, 0, true, true, 0, '', 0, 1702625965, 1702625987, 1702625985, false, 0); INSERT INTO public.issue VALUES (27, 21, 26, 11, '', 0, 'add chi tieu tuyen sinh', '', 0, 0, true, true, 0, '', 0, 1703757395, 1703757416, 1703757414, false, 0); INSERT INTO public.issue VALUES (41, 21, 40, 11, '', 0, 'add bao cao TN', '', 0, 0, true, true, 0, '', 0, 1704446441, 1704446463, 1704446462, false, 0); INSERT INTO public.issue VALUES (12, 21, 11, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1702626224, 1702626249, 1702626247, false, 0); INSERT INTO public.issue VALUES (23, 21, 22, 11, '', 0, 'update QLLD_NhuCauTuyenSinh', '', 0, 0, true, true, 0, '', 0, 1703217095, 1703217119, 1703217118, false, 0); INSERT INTO public.issue VALUES (42, 21, 41, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704464885, 1704464905, 1704464904, false, 0); INSERT INTO public.issue VALUES (25, 21, 24, 11, '', 0, 'add bao cao tuyen sinh', '', 0, 0, true, true, 0, '', 0, 1703733080, 1703733102, 1703733100, false, 0); INSERT INTO public.issue VALUES (13, 21, 12, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1702641375, 1702641400, 1702641398, false, 0); INSERT INTO public.issue VALUES (43, 21, 42, 11, '', 0, 'add menu bao ccao thong ke', '', 0, 0, true, true, 0, '', 0, 1704526096, 1704526121, 1704526119, false, 0); INSERT INTO public.issue VALUES (26, 21, 25, 11, '', 0, 'update ThuongTru_ThonXom', '', 0, 0, true, true, 0, '', 0, 1703749792, 1703749814, 1703749812, false, 0); INSERT INTO public.issue VALUES (14, 21, 13, 11, '', 0, 'fix tths', '', 0, 0, true, true, 0, '', 0, 1702641469, 1702642086, 1702642084, false, 0); INSERT INTO public.issue VALUES (30, 21, 29, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704247123, 1704247145, 1704247144, false, 0); INSERT INTO public.issue VALUES (44, 21, 43, 11, '', 0, 'add file', '', 0, 0, true, true, 0, '', 0, 1704530824, 1704530897, 1704530897, false, 0); INSERT INTO public.issue VALUES (28, 21, 27, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1703820630, 1703820651, 1703820649, false, 0); INSERT INTO public.issue VALUES (45, 21, 44, 11, '', 0, 'add 4 task bao cao', '', 0, 0, true, true, 0, '', 0, 1704533556, 1704533603, 1704533602, false, 0); INSERT INTO public.issue VALUES (29, 21, 28, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1703842267, 1703842291, 1703842288, false, 0); INSERT INTO public.issue VALUES (46, 21, 45, 11, '', 0, 'phan row bao cao nha giao', '', 0, 0, true, true, 0, '', 0, 1704534493, 1704534542, 1704534540, false, 0); INSERT INTO public.issue VALUES (31, 21, 30, 11, '', 0, 'fix stlye detail khts', '', 0, 0, true, true, 0, '', 0, 1704247785, 1704247806, 1704247805, false, 0); INSERT INTO public.issue VALUES (47, 21, 46, 11, '', 0, 'fix css', '', 0, 0, true, true, 0, '', 0, 1704534880, 1704534900, 1704534900, false, 0); INSERT INTO public.issue VALUES (33, 21, 32, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704270123, 1704270141, 1704270141, false, 0); INSERT INTO public.issue VALUES (32, 21, 31, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704254940, 1704254967, 1704254966, false, 0); INSERT INTO public.issue VALUES (48, 21, 47, 11, '', 0, 'fix css', '', 0, 0, true, true, 0, '', 0, 1704535514, 1704535535, 1704535534, false, 0); INSERT INTO public.issue VALUES (49, 21, 48, 11, '', 0, 'fix height body item menu', '', 0, 0, true, true, 0, '', 0, 1704538836, 1704538859, 1704538858, false, 0); INSERT INTO public.issue VALUES (53, 21, 52, 11, '', 0, 'update fontfamily', '', 0, 0, true, true, 0, '', 0, 1704561808, 1704561831, 1704561828, false, 0); INSERT INTO public.issue VALUES (73, 21, 72, 11, '', 0, 'fix thong bao loi hs + nha giao', '', 0, 0, true, true, 0, '', 0, 1704854933, 1704854954, 1704854952, false, 0); INSERT INTO public.issue VALUES (76, 21, 75, 11, '', 0, 'add bao cao', '', 0, 0, true, true, 0, '', 0, 1704878193, 1704878218, 1704878216, false, 0); INSERT INTO public.issue VALUES (50, 21, 49, 11, '', 0, 'update title menu bao cao', '', 0, 0, true, true, 0, '', 0, 1704540566, 1704540616, 1704540615, false, 0); INSERT INTO public.issue VALUES (65, 21, 64, 11, '', 0, 'change zindex ModalEditTTTN', '', 0, 0, true, true, 0, '', 0, 1704766189, 1704766276, 1704766275, false, 0); INSERT INTO public.issue VALUES (54, 21, 53, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704563532, 1704563578, 1704563577, false, 0); INSERT INTO public.issue VALUES (60, 21, 59, 11, '', 0, 'upcode rang buoc', '', 0, 0, true, true, 0, '', 0, 1704685350, 1704685374, 1704685372, false, 0); INSERT INTO public.issue VALUES (51, 21, 50, 11, '', 0, 'fix giao dien', '', 0, 0, true, true, 0, '', 0, 1704558884, 1704558907, 1704558905, false, 0); INSERT INTO public.issue VALUES (74, 21, 73, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704868558, 1704868580, 1704868578, false, 0); INSERT INTO public.issue VALUES (55, 21, 54, 11, '', 0, 'update search menu bao cao', '', 0, 0, true, true, 0, '', 0, 1704649708, 1704649734, 1704649732, false, 0); INSERT INTO public.issue VALUES (52, 21, 51, 11, '', 0, 'add ui screen', '', 0, 0, true, true, 0, '', 0, 1704559642, 1704559663, 1704559662, false, 0); INSERT INTO public.issue VALUES (75, 21, 74, 11, '', 0, 'update search menu', '', 0, 0, true, true, 0, '', 0, 1704870386, 1704870509, 1704870508, false, 0); INSERT INTO public.issue VALUES (56, 21, 55, 11, '', 0, 'fix focus search', '', 0, 0, true, true, 0, '', 0, 1704650077, 1704650455, 1704650452, false, 0); INSERT INTO public.issue VALUES (57, 21, 56, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704679116, 1704679143, 1704679141, false, 0); INSERT INTO public.issue VALUES (77, 21, 76, 11, '', 0, 'fix info hoc vien', '', 0, 0, true, true, 0, '', 0, 1704878890, 1704878912, 1704878912, false, 0); INSERT INTO public.issue VALUES (61, 21, 60, 11, '', 0, 'fix giao dien', '', 0, 0, true, true, 0, '', 0, 1704698135, 1704698168, 1704698165, false, 0); INSERT INTO public.issue VALUES (79, 21, 78, 11, '', 0, 'style header', '', 0, 0, true, true, 0, '', 0, 1704944124, 1704944217, 1704944215, false, 0); INSERT INTO public.issue VALUES (58, 21, 57, 11, '', 0, 'update search menu bao cao', '', 0, 0, true, true, 0, '', 0, 1704679825, 1704679846, 1704679844, false, 0); INSERT INTO public.issue VALUES (78, 21, 77, 11, '', 0, 'change api kq tuyen sinh', '', 0, 0, true, true, 0, '', 0, 1704937750, 1704937772, 1704937771, false, 0); INSERT INTO public.issue VALUES (59, 21, 58, 11, '', 0, 'fix text tim kiem', '', 0, 0, true, true, 0, '', 0, 1704681571, 1704681600, 1704681599, false, 0); INSERT INTO public.issue VALUES (81, 21, 80, 11, '', 0, 'fix bao cao', '', 0, 0, true, true, 0, '', 0, 1704947466, 1704947505, 1704947505, false, 0); INSERT INTO public.issue VALUES (62, 21, 61, 11, '', 0, 'add detail gv nhieu co so', '', 0, 0, true, true, 0, '', 0, 1704705497, 1704705565, 1704705564, false, 0); INSERT INTO public.issue VALUES (80, 21, 79, 11, '', 0, 'add ty le tuyen sinh tot nghiep', '', 0, 0, true, true, 0, '', 0, 1704945575, 1704945596, 1704945594, false, 0); INSERT INTO public.issue VALUES (66, 21, 65, 11, '', 0, 'fix zindex', '', 0, 0, true, true, 0, '', 0, 1704767034, 1704767055, 1704767054, false, 0); INSERT INTO public.issue VALUES (63, 21, 62, 11, '', 0, 'fix css', '', 0, 0, true, true, 0, '', 0, 1704706455, 1704706492, 1704706490, false, 0); INSERT INTO public.issue VALUES (84, 21, 83, 11, '', 0, 'add btn gui mail', '', 0, 0, true, true, 0, '', 0, 1704990699, 1704990831, 1704990830, false, 0); INSERT INTO public.issue VALUES (82, 21, 81, 11, '', 0, 'fix loi bao cao', '', 0, 0, true, true, 0, '', 0, 1704956673, 1704956851, 1704956850, false, 0); INSERT INTO public.issue VALUES (64, 21, 63, 11, '', 0, 'update filter year hs/sv', '', 0, 0, true, true, 0, '', 0, 1704707844, 1704707883, 1704707882, false, 0); INSERT INTO public.issue VALUES (83, 21, 82, 11, '', 0, 'fix hidden err bao cao', '', 0, 0, true, true, 0, '', 0, 1704958007, 1704958042, 1704958041, false, 0); INSERT INTO public.issue VALUES (70, 21, 69, 11, '', 0, 'add required tu ngay den ngay', '', 0, 0, true, true, 0, '', 0, 1704787806, 1704787826, 1704787825, false, 0); INSERT INTO public.issue VALUES (67, 21, 66, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1704774821, 1704774843, 1704774842, false, 0); INSERT INTO public.issue VALUES (68, 21, 67, 11, '', 0, 'update check requite bao cao', '', 0, 0, true, true, 0, '', 0, 1704783845, 1704783868, 1704783866, false, 0); INSERT INTO public.issue VALUES (85, 21, 84, 11, '', 0, 'fix change so nam', '', 0, 0, true, true, 0, '', 0, 1705025955, 1705025976, 1705025976, false, 0); INSERT INTO public.issue VALUES (86, 21, 85, 11, '', 0, 'add fuc in send gmail', '', 0, 0, true, true, 0, '', 0, 1705030721, 1705030759, 1705030758, false, 0); INSERT INTO public.issue VALUES (69, 21, 68, 11, '', 0, 'add check trung chi tieu', '', 0, 0, true, true, 0, '', 0, 1704784774, 1704784796, 1704784795, false, 0); INSERT INTO public.issue VALUES (71, 21, 70, 11, '', 0, 'add list choose cs gdnn', '', 0, 0, true, true, 0, '', 0, 1704807686, 1704807709, 1704807707, false, 0); INSERT INTO public.issue VALUES (87, 21, 86, 11, '', 0, 'fix icon user', '', 0, 0, true, true, 0, '', 0, 1705044509, 1705044538, 1705044537, false, 0); INSERT INTO public.issue VALUES (88, 21, 87, 11, '', 0, 'fix api tong hop so lieu tuyen sinh', '', 0, 0, true, true, 0, '', 0, 1705045387, 1705045583, 1705045581, false, 0); INSERT INTO public.issue VALUES (72, 21, 71, 11, '', 0, 'add btn gui mail nhac nho', '', 0, 0, true, true, 0, '', 0, 1704853899, 1704853919, 1704853918, false, 0); INSERT INTO public.issue VALUES (89, 21, 88, 11, '', 0, 'fix bao cao tuyen sinh nn/nam', '', 0, 0, true, true, 0, '', 0, 1705047309, 1705047330, 1705047329, false, 0); INSERT INTO public.issue VALUES (90, 21, 89, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1705050067, 1705050103, 1705050102, false, 0); INSERT INTO public.issue VALUES (91, 21, 90, 11, '', 0, 'hidden kehoachdapheduyet', '', 0, 0, true, true, 0, '', 0, 1705052721, 1705052743, 1705052742, false, 0); INSERT INTO public.issue VALUES (92, 21, 91, 11, '', 0, 'add menu thong bao', '', 0, 0, true, true, 0, '', 0, 1705207976, 1705208015, 1705208013, false, 0); INSERT INTO public.issue VALUES (93, 21, 92, 11, '', 0, 'add full action', '', 0, 0, true, true, 0, '', 0, 1705311355, 1705311410, 1705311410, false, 0); INSERT INTO public.issue VALUES (94, 21, 93, 11, '', 0, 'fix bug', '', 0, 0, true, true, 0, '', 0, 1705311938, 1705312013, 1705312011, false, 0); INSERT INTO public.issue VALUES (95, 21, 94, 11, '', 0, 'fix bug', '', 0, 0, true, true, 0, '', 0, 1705312948, 1705312969, 1705312967, false, 0); INSERT INTO public.issue VALUES (100, 29, 2, 1, 'dungnguyn', 5662031, 'Error - Phiên họp đã bắt đầu + tài khoản thư ký', '+ Hoàn thành vấn đề đang thảo luận. + Hoàn thành nội dung đang họp. + Kết thúc phiên họp.', 0, 0, false, false, 5, '', 0, 1637218187, 1639562456, 0, false, 0); INSERT INTO public.issue VALUES (97, 21, 96, 11, '', 0, 'fix loi', '', 0, 0, true, true, 0, '', 0, 1705321128, 1705321149, 1705321148, false, 0); INSERT INTO public.issue VALUES (96, 21, 95, 11, '', 0, 'fix giao dien', '', 0, 0, true, true, 0, '', 0, 1705320577, 1705320611, 1705320610, false, 0); INSERT INTO public.issue VALUES (225, 21, 109, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1705463145, 1705463233, 1705463231, false, 0); INSERT INTO public.issue VALUES (101, 29, 3, 1, 'dungnguyn', 5662031, 'Tài khoản chuyên viên không được truy cập', 'Lúc login, kiểm tra nếu là chuyên viên thì hiển thị thông báo không được vào.', 0, 0, true, false, 2, '', 0, 1637218994, 1637229597, 1637229007, false, 0); INSERT INTO public.issue VALUES (102, 29, 4, 1, 'dungnguyn', 5662031, 'Trong phiên họp không biết mình đang dư phiên nào', 'Nên ghi rõ tên phiên ra.', 0, 0, true, false, 2, '', 0, 1637219116, 1637229799, 1637229799, false, 0); INSERT INTO public.issue VALUES (98, 21, 97, 11, '', 0, 'add screen', '', 0, 0, true, true, 0, '', 0, 1705321817, 1705321842, 1705321840, false, 0); INSERT INTO public.issue VALUES (103, 29, 5, 1, 'dungnguyn', 5662031, 'Error - Thành viên thuộc nhóm Ủy ban nhân dân mới được biểu quyết + phát biểu còn lại chỉ được phát biểu.', '', 0, 0, false, false, 4, '', 0, 1637227978, 1639965253, 0, false, 0); INSERT INTO public.issue VALUES (104, 29, 6, 1, 'dungnguyn', 5662031, 'Task - App luôn bật màn hình.', '', 0, 0, false, false, 6, '', 0, 1637228137, 1640137118, 0, false, 0); INSERT INTO public.issue VALUES (99, 21, 98, 11, '', 0, 'fix search all page', '', 0, 0, true, true, 0, '', 0, 1705329299, 1705329330, 1705329329, false, 0); INSERT INTO public.issue VALUES (105, 29, 8, 1, 'tiensybinhdinh', 10245630, 'Error - Trong phiên họp để ngang màn hình ĐT không load được DS phát biểu', '', 0, 0, false, false, 5, '', 0, 1637288258, 1637545508, 0, false, 0); INSERT INTO public.issue VALUES (107, 29, 10, 1, 'tiensybinhdinh', 10245630, 'Error - Thoát phiên họp từ thông báo bị crassh', '', 0, 0, false, false, 3, '', 0, 1637290355, 1637551128, 0, false, 0); INSERT INTO public.issue VALUES (108, 29, 11, 1, 'dungnguyn', 5662031, 'Error -Tất cả những file đính kèm không có file thì hiển thị thông báo không cần hiển thị cái bảng.', '', 0, 0, false, false, 2, '', 0, 1637295442, 1639562364, 0, false, 0); INSERT INTO public.issue VALUES (109, 29, 12, 1, 'dungnguyn', 5662031, 'Error -Danh sách nội dung trong meeting detail không hiển thị loading.', 'Không hiển thị loading chỉ hiển thị Chưa có dữ liệu xong giật một cái xuất hiện danh sách nội dung.', 0, 0, false, false, 4, '', 0, 1637295568, 1637574794, 0, false, 0); INSERT INTO public.issue VALUES (110, 29, 13, 1, 'tiensybinhdinh', 10245630, 'Error - Tải lên tài liệu thư viện cá nhân không có trạng thái load gì hết', '', 0, 0, false, false, 2, '', 0, 1637304315, 1638760298, 0, false, 0); INSERT INTO public.issue VALUES (111, 29, 14, 1, 'tiensybinhdinh', 10245630, 'Error - Tham gia phiên họp thì tự động điểm danh', '', 0, 0, false, false, 2, '', 0, 1637305929, 1637569535, 0, false, 0); INSERT INTO public.issue VALUES (226, 21, 110, 11, '', 0, 'update bug', '', 0, 0, true, true, 0, '', 0, 1705561412, 1705561435, 1705561433, false, 0); INSERT INTO public.issue VALUES (112, 29, 15, 1, 'tiensybinhdinh', 10245630, 'Error - Tại phiên họp khung XÁC NHẬN BẮT ĐẦU PHIÊN HỌP BỊ ĐÈ + Hiển thị ủy quyền giúp từ thư ký cho chủ trì lỗi', '', 0, 0, false, false, 10, '', 0, 1637306145, 1639562438, 0, false, 0); INSERT INTO public.issue VALUES (113, 29, 16, 1, 'tiensybinhdinh', 10245630, 'Error - (Trong kho tài liệu hiễn thị lỗi rỗng (Phiên 18/11/2021 2) XONG)) + (Nên làm sao để biết được đó là phiên nào (XONG)) Bổ sung Hiển bị cắt chữ mất chữ', '', 0, 0, false, false, 7, '', 0, 1637307886, 1638760524, 0, false, 0); INSERT INTO public.issue VALUES (114, 29, 17, 1, 'tiensybinhdinh', 10245630, 'Error - Chủ trì ủy quyền thư ký xác nhận nhưng bị báo vắng có thể bắt đầu phiên họp nhưng không tham gia họp được', 'Đã check thử phiên S21111 vẫn không vào được (Phải vào thông báo xác nhận mới vào được)', 0, 0, false, false, 7, '', 0, 1637309432, 1639562498, 0, false, 0); INSERT INTO public.issue VALUES (115, 29, 18, 1, 'tiensybinhdinh', 10245630, 'Tính năng - Thay đổi trạng thái lịch cá nhân', 'Thư ký: - Phiên họp đã duyệt chưa bắt đầu: Để 1 trạng thái "Chờ bắt đầu". - Phiên họp đã bắt đầu: Để 1 trạng thái "Đang họp". Quản lý họp: - CHỉ để trạng thái: "Đang họp", "Đã duyệt". Chủ trì: - Để 1 trạng thái: "Chờ duyệt", "Chờ bắt đầu", "Đang họp". Cán bộ: Giữ nguyên trạng thái phiên họp, đưa trạng thái cán bộ lên trên.', 0, 0, false, false, 4, '', 0, 1637313429, 1638760544, 0, false, 0); INSERT INTO public.issue VALUES (228, 21, 112, 11, '', 0, 'update phan quyen + filter', '', 0, 0, true, true, 0, '', 0, 1705631058, 1705631137, 1705631135, false, 0); INSERT INTO public.issue VALUES (227, 21, 111, 11, '', 0, 'fix bug', '', 0, 0, true, true, 0, '', 0, 1705561832, 1705561864, 1705561862, false, 0); INSERT INTO public.issue VALUES (117, 29, 20, 1, 'dungnguyn', 5662031, 'Thông tin cá nhân - sửa chữ bị tràn.', '', 0, 0, false, false, 2, '', 0, 1637544038, 1638243189, 0, false, 0); INSERT INTO public.issue VALUES (119, 29, 22, 1, 'tiensybinhdinh', 10245630, 'ERROR - Chọn ý kiến thảo luận (Phiên họp vào từ thông báo) không được + Hiển thị vấn đề thảo luận trong phiên họp', '', 0, 0, false, false, 4, '', 0, 1637550699, 1639562306, 0, false, 0); INSERT INTO public.issue VALUES (129, 29, 32, 1, 'dungnguyn', 5662031, 'Trong tab phiên họp, tài khoản chủ trì, phiên họp đã ủy quyền thì vẫn có hiện nút xác nhận, ủy quyền, từ chối. Phiên họp đăng ký lại báo đã chuyển họp cho ......', '', 0, 0, false, false, 3, '', 0, 1638425602, 1639561586, 0, false, 0); INSERT INTO public.issue VALUES (130, 29, 33, 1, 'dungnguyn', 5662031, 'Thêm trường hợp thông báo cán bộ được ủy quyền.', '- Phiên họp đã được bắt đầu, cán bộ được ủy quyền sẽ nhấn vào thông báo xác nhận tham gia và vào thẳng diễn biến phiên họp. - Phiên họp chưa bắt đầu, cán bộ được ủy quyền nhấn vào thông báo sẽ ra màng hình meeting detail.', 0, 0, false, false, 3, '', 0, 1638426571, 1639625224, 0, false, 0); INSERT INTO public.issue VALUES (131, 29, 34, 1, 'dungnguyn', 5662031, 'Sửa api kết quả biểu quyết trong Vấn đề của phiên họp (Phần chọn ý kiến khác).', 'Trước là lúc tạo ý kiến khác sẽ call api post phương án bổ sung, rồi lấy id phương án bổ sung mới tạo để call api patch kết quả biểu quyết. Hiện tại, sẽ làm cả hai trong cùng một api.', 0, 0, false, false, 7, '', 0, 1638427751, 1638936268, 0, false, 0); INSERT INTO public.issue VALUES (132, 29, 35, 1, 'dungnguyn', 5662031, 'Sửa api kết quả kiến trong vấn đề của phiếu lấy ý kiến.', '', 0, 0, false, false, 2, '', 0, 1638428201, 1639965245, 0, false, 0); INSERT INTO public.issue VALUES (133, 29, 36, 1, 'dungnguyn', 5662031, 'KIểm tra cả chủ trì, tổ trưởng kiểm phiếu thì như Quản lý họp trong phiếu lấy ý kiến.', '', 0, 0, false, false, 2, '', 0, 1638429744, 1638513237, 0, false, 0); INSERT INTO public.issue VALUES (128, 29, 31, 1, 'dungnguyn', 5662031, 'Lỗi khi xác nhận tham gia phiên họp.', 'Chọn Xác nhận, hiển thị lỗi bên dưới nhưng vẫn xác nhận tham gia thành công. ', 0, 0, false, false, 7, '', 0, 1638413536, 1639561294, 0, false, 0); INSERT INTO public.issue VALUES (139, 29, 42, 1, 'dungnguyn', 5662031, 'Những thông báo thuộc dạng cảnh báo, sửa thành màu cam.', '', 0, 0, false, false, 2, '', 0, 1638784251, 1639560966, 0, false, 0); INSERT INTO public.issue VALUES (134, 29, 37, 1, 'dungnguyn', 5662031, 'Sửa giao diện danh sách tham gia ý kiến trong phiếu lấy ý kiến.', '', 0, 0, false, false, 2, '', 0, 1638499937, 1639625605, 0, false, 0); INSERT INTO public.issue VALUES (136, 29, 39, 1, 'tiensybinhdinh', 10245630, 'Tính năng - Giao diện thư viện phiên họp không ổn', 'Nên thêm khung như bên ngoài như bên ngoài kho tài liệu ', 0, 0, false, false, 6, '', 0, 1638761276, 1639562198, 0, false, 0); INSERT INTO public.issue VALUES (137, 29, 40, 1, 'tiensybinhdinh', 10245630, 'Tính năng - Load xem lại ý kiến bị chậm + Giao diện thống kê ý kiến thảo luận (số thập phân quá dài)', '', 0, 0, false, false, 4, '', 0, 1638761485, 1638935451, 0, false, 0); INSERT INTO public.issue VALUES (138, 29, 41, 1, 'dungnguyn', 5662031, 'Tài khoản chủ trì, từ dashboard vào bắt đầu phiên họp vào thẳng diễn biến phiên họp, bấm quay lại vẫn còn thông báo bắt đầu phiên họp.', '', 0, 0, false, false, 4, '', 0, 1638784061, 1639626777, 0, false, 0); INSERT INTO public.issue VALUES (135, 29, 38, 1, 'tiensybinhdinh', 10245630, 'ERROR - 2 Nội dung trong cùng 1 phiền cùng đang diễn ra', '', 0, 0, false, false, 2, '', 0, 1638761008, 1639562455, 0, false, 0); INSERT INTO public.issue VALUES (210, 29, 113, 1, 'hoatrongkylovestory1999', 8539277, 'Thêm reload và refresh. Sửa màu xanh nhạt đi một chút xíu.', '', 0, 0, false, false, 2, '', 0, 1640167505, 1640253597, 0, false, 0); INSERT INTO public.issue VALUES (211, 29, 114, 1, 'hoatrongkylovestory1999', 8539277, 'Lịch hôm nay dữ liệu trống (Thông báo đưa vào giữa) (17/12/2021)', '', 0, 0, false, false, 2, '', 0, 1640252436, 1640253597, 0, false, 0); INSERT INTO public.issue VALUES (212, 29, 115, 1, 'hoatrongkylovestory1999', 8539277, 'Phân trang cho cá nhân và đơn vị', '', 0, 0, false, false, 1, '', 0, 1641461354, 1641782670, 0, false, 0); INSERT INTO public.issue VALUES (144, 29, 47, 1, 'dungnguyn', 5662031, 'Từ lịch họp cá nhân, xác nhận tham gia thành công nhưng thông báo bị đè.', '', 0, 0, true, false, 0, '', 0, 1639117295, 1639117620, 1639117620, false, 0); INSERT INTO public.issue VALUES (106, 29, 9, 1, 'tiensybinhdinh', 10245630, 'Error - Chủ trì mở được vấn đề thảo luận từ bên ngoài xem', '', 0, 0, false, false, 10, '', 0, 1637289630, 1639626594, 0, false, 0); INSERT INTO public.issue VALUES (116, 29, 19, 1, 'tiensybinhdinh', 10245630, 'Error (IOS) -Danh sách xác nhận phiên họp các góc trắng không cong theo', '', 0, 0, false, false, 3, '', 0, 1637313686, 1638243289, 0, false, 0); INSERT INTO public.issue VALUES (120, 29, 23, 1, 'tiensybinhdinh', 10245630, 'ERROR - Xem file PDF từ mục Phiên Họp lỗi kéo không được sài các công cụ không được', '', 0, 0, false, false, 6, '', 0, 1637562564, 1641353201, 0, false, 0); INSERT INTO public.issue VALUES (121, 29, 24, 1, 'tiensybinhdinh', 10245630, 'ERROR -Đăng ký phát biểu lỗi chính tả thông báo thành công + Hủyđăng ký trong phiên họp không thành công', '', 0, 0, false, false, 2, '', 0, 1637567534, 1639626644, 0, false, 0); INSERT INTO public.issue VALUES (123, 29, 26, 1, 'dungnguyn', 5662031, 'Đồng bộ header.', '', 0, 0, false, false, 1, '', 0, 1637640502, 1641886518, 0, false, 0); INSERT INTO public.issue VALUES (125, 29, 28, 1, 'datqn1234', 8343428, 'Thêm thông tin cán bộ phụ trách nội dung', '', 0, 0, false, false, 2, '', 0, 1637640812, 1639562374, 0, false, 0); INSERT INTO public.issue VALUES (126, 29, 29, 1, 'dungnguyn', 5662031, 'Thêm tính năng từ chối cho tài khoản chủ trì.', 'Chủ trì từ chối, tức phiên họp đó chưa đủ điều kiện để được duyệt cần bổ sung thêm, chuyển trạng thái phiên họp sang bổ sung.', 0, 0, false, false, 3, '', 0, 1637716083, 1639562401, 0, false, 0); INSERT INTO public.issue VALUES (118, 29, 21, 1, 'tiensybinhdinh', 10245630, 'ERROR - Trong phiên họp nhấn chọn ý kiến khác trong thảo luận mà không nhập ý kiến vẫn được', '', 0, 0, false, false, 2, '', 0, 1637545490, 1638760426, 0, false, 0); INSERT INTO public.issue VALUES (122, 29, 25, 1, 'tiensybinhdinh', 10245630, 'Tính năng - Thu âm phiên họp nên cho bấm nút bự là kết thúc ghi âm luôn + Thời gian phát lại ghi âm lỗi', ' {{image.png}}', 0, 0, false, false, 4, '', 0, 1637570950, 1641349225, 0, false, 0); INSERT INTO public.issue VALUES (124, 29, 27, 1, 'datqn1234', 8343428, 'Sửa giao diện thư viện phiên họp', '', 0, 0, false, false, 3, '', 0, 1637640771, 1639562263, 0, false, 0); INSERT INTO public.issue VALUES (127, 29, 30, 1, 'dungnguyn', 5662031, 'Sửa trạng thái tham gia cho cán bộ, chủ trì, thư ký đối với phiên họp ở trạng thái bổ sung.', 'Đối với cán bộ, không hiển thị phiên họp ở trạng thái bổ sung; với chủ trì + thư ký trạng thái tham dự đổi thành ''Chờ bổ sung tài liệu''.', 0, 0, false, false, 4, '', 0, 1637744697, 1639617897, 0, false, 0); INSERT INTO public.issue VALUES (142, 29, 45, 1, 'dungnguyn', 5662031, 'ERROR - Không thể bắt đầu phiên họp.', '{{image.png}}', 0, 0, true, false, 2, '', 0, 1638934829, 1638949649, 1638949649, false, 0); INSERT INTO public.issue VALUES (149, 29, 52, 1, 'dungnguyn', 5662031, 'Tách nội dung phiên họp ra một trang riêng, chi tiết nội dung một trang riêng.', '', 0, 0, false, false, 2, '', 0, 1639118748, 1646614349, 0, false, 0); INSERT INTO public.issue VALUES (140, 29, 43, 1, 'dungnguyn', 5662031, 'Chủ trì không ủy quyền được cho QLH, chỉ được ủy quyền cho thư ký của phiên họp.', '', 0, 0, false, false, 2, '', 0, 1638784656, 1639562135, 0, false, 0); INSERT INTO public.issue VALUES (141, 29, 44, 1, 'tiensybinhdinh', 10245630, 'ERROR- Phiên họp kết thúc vẫn đẩy ra xong vẫn vào lại được', '', 0, 0, false, false, 2, '', 0, 1638934757, 1639620175, 0, false, 0); INSERT INTO public.issue VALUES (143, 29, 46, 1, 'tiensybinhdinh', 10245630, 'ERROR- Khoảng Trống cách thiếu + Canh Đầu dòng không hài hòa', '', 0, 0, false, false, 4, '', 0, 1638936715, 1639560442, 0, false, 0); INSERT INTO public.issue VALUES (145, 29, 48, 1, 'dungnguyn', 5662031, 'Từ lịch họp cá nhân, xác nhận tham gia thành công nhưng thông báo bị đè.', '', 0, 0, false, false, 2, '', 0, 1639117334, 1639560670, 0, false, 0); INSERT INTO public.issue VALUES (146, 29, 49, 1, 'dungnguyn', 5662031, 'Sửa giao diện đăng ký phát biểu.', '- Tách chữ với ảnh đại diện ra. ok - Đưa file ghi âm ra sau trạng thái. ok', 0, 0, false, false, 5, '', 0, 1639117699, 1639618571, 0, false, 0); INSERT INTO public.issue VALUES (147, 29, 50, 1, 'dungnguyn', 5662031, 'Sửa ngày trong lịch họp cá nhân.', '- Có từ ngày đến ngày thì giữ lại, còn có ngày tháng (10/12) thì không cần.', 0, 0, false, false, 2, '', 0, 1639117841, 1639561228, 0, false, 0); INSERT INTO public.issue VALUES (148, 29, 51, 1, 'dungnguyn', 5662031, 'Tách list phiên họp ra thành một trang, chi tiết phiên họp thành một trang.', '', 0, 0, false, false, 2, '', 0, 1639118505, 1642140867, 0, false, 0); INSERT INTO public.issue VALUES (150, 29, 53, 1, 'dungnguyn', 5662031, 'Hủy đăng ký phát biểu dành cho thứ ký chủ trì loại chỉ định.', '', 0, 0, false, false, 1, '', 0, 1639118895, 1639560297, 0, false, 0); INSERT INTO public.issue VALUES (151, 29, 54, 1, 'dungnguyn', 5662031, 'Sửa giao diện ghi chú.', '- Sửa giao diện ghi chú thành 1 textarea', 0, 0, false, false, 3, '', 0, 1639119002, 1639714235, 0, false, 0); INSERT INTO public.issue VALUES (152, 29, 55, 1, 'dungnguyn', 5662031, 'Từ thông báo vào thêm điểm danh.', '', 0, 0, false, false, 1, '', 0, 1639119143, 1639560274, 0, false, 0); INSERT INTO public.issue VALUES (155, 29, 58, 1, 'dungnguyn', 5662031, 'Kiểm tra thông báo kết thúc phiên họp.', '', 0, 0, true, false, 0, '', 0, 1639120002, 1639121290, 1639121290, false, 0); INSERT INTO public.issue VALUES (169, 29, 72, 1, 'dungnguyn', 5662031, 'Khi chủ trì hoặc thư ký cho phép cán bộ phát biểu, hiển thị thông báo nếu có cán bộ khác đang phát biểu.', '', 0, 0, true, false, 1, '', 0, 1639557371, 1639630381, 1639630381, false, 0); INSERT INTO public.issue VALUES (170, 29, 73, 1, 'dungnguyn', 5662031, 'Hiển thị thông báo nội dung nào được bắt đầu họp cho tất cả mọi người.', '', 0, 0, true, false, 4, '', 0, 1639557427, 1639630547, 1639630547, false, 0); INSERT INTO public.issue VALUES (167, 29, 70, 1, 'dungnguyn', 5662031, 'Notification.', '- [x] Trong thông báo, thêm loại ủy quyền duyệt. - [x] Thông báo chỉ trả về tên của phiên họp, tên của phiếu lấy ý kiến. - [ ] Thông báo chạy ngầm. - [x] Hiển thị được thông báo trên app lúc mở app. - [x] Click vào chi tiết của từng thông báo. - [x] Phiên họp được duyệt cũng sẽ gửi thông báo về cho thành phần tham dự. - [x] Thông baó của bà thư ký, kiểm tra lại. - [x] Nhận thông báo fetch lại các compent. - [x] Kiểm tra thông báo lần đầu tiên.', 0, 0, false, false, 18, '', 0, 1639557249, 1641289184, 0, false, 0); INSERT INTO public.issue VALUES (168, 29, 71, 1, 'dungnguyn', 5662031, 'Hiển thị message của lỗi ra ngoài.', '- [x] thay đổi message thông báo lỗi khi bắt đầu phiên họp không có nội dung', 0, 0, false, false, 7, '', 0, 1639557282, 1641351139, 0, false, 0); INSERT INTO public.issue VALUES (171, 29, 74, 1, 'dungnguyn', 5662031, 'Ghi âm phát biểu.', '- Kết thúc thu âm cho hiện loading để biết đang đẩy file thu âm. - Fix lỗi ghi âm nút tiếp tục và tạm dừng lỗi khi ghi đang ghi âm mà icon tiếp tục - Cho nút giao diện và nút thu âm nhỏ xuống.', 0, 0, false, false, 4, '', 0, 1639557468, 1639714412, 0, false, 0); INSERT INTO public.issue VALUES (158, 29, 61, 1, 'dungnguyn', 5662031, 'Vào họp hoặc đứng trong nội dung phiên họp, màn hình vấn đề tự bật lên (xem hìnhảnh kèm theo).', '{{image.png}}', 0, 0, false, false, 2, '', 0, 1639120477, 1639362244, 0, false, 0); INSERT INTO public.issue VALUES (161, 29, 64, 1, 'dungnguyn', 5662031, 'Duyệt phiên họp thông báo bị đè. (Vào thừ lịch họp cá nhân)', '', 0, 0, false, false, 1, '', 0, 1639368355, 1639560865, 0, false, 0); INSERT INTO public.issue VALUES (175, 29, 78, 1, 'hoatrongkylovestory1999', 8539277, 'Text trong phần thêm ý kiến khác mặc định màu đen.', '', 0, 0, false, false, 2, '', 0, 1639560230, 1639702516, 0, false, 0); INSERT INTO public.issue VALUES (174, 29, 77, 1, 'hoatrongkylovestory1999', 8539277, 'Làm sao để xem hết tên của vấn đề,Tiêu đề của vấn đề.', '', 0, 0, false, false, 4, '', 0, 1639560110, 1639702541, 0, false, 0); INSERT INTO public.issue VALUES (179, 29, 82, 1, 'hoatrongkylovestory1999', 8539277, 'Hiển thị thông báo khi một vấn đề đang mở thì không mở vấn đề khác.', '', 0, 0, false, false, 2, '', 0, 1639560548, 1639702523, 0, false, 0); INSERT INTO public.issue VALUES (180, 29, 83, 1, 'datqn1234', 8343428, 'thay đổi message thông báo lỗi khi bắt đầu phiên họp không có nội dung', '', 0, 0, false, false, 2, '', 0, 1639560656, 1639648191, 0, false, 0); INSERT INTO public.issue VALUES (182, 29, 85, 1, 'dungnguyn', 5662031, 'Nội dung trong phiên họp.', '- [x] Thông báo hoàn thành nội dung phải được hiển thị trên tất cả modal. - [x] Khi hoàn thành nội dung, nếu vấn đề còn mở hoặc có cán bộ đang phát biểu thì hiển thị thông báo hỏi có muốn hoàn thành nội dung không, nếu hoàn thành thì tự động đóng vấn đề và hoàn thành phát biểu. - [x] Hiển thị thông báo nội dung nào được bắt đầu họp cho tất cả mọi người.', 0, 0, false, false, 7, '', 0, 1639561850, 1643102465, 0, false, 0); INSERT INTO public.issue VALUES (192, 29, 95, 1, 'datqn1234', 8343428, 'Fix hiển thị đính kèm, diễn biến, kết luận', '', 0, 0, false, false, 2, '', 0, 1639648922, 1639982972, 0, false, 0); INSERT INTO public.issue VALUES (186, 29, 89, 1, 'datqn1234', 8343428, 'chặn lăn ở lịch cá nhân', '', 0, 0, false, false, 2, '', 0, 1639563274, 1639648183, 0, false, 0); INSERT INTO public.issue VALUES (187, 29, 90, 1, 'dungnguyn', 5662031, 'Khi hoàn thành nội dung, nếu vấn đề còn mở hoặc có cán bộ đang phát biểu thì hiển thị thông báo hỏi có muốn hoàn thành nội dung không, nếu hoàn thành thì tự động đóng vấn đề và hoàn thành phát biểu.', '', 0, 0, true, false, 2, '', 0, 1639615292, 1639630564, 1639630564, false, 0); INSERT INTO public.issue VALUES (188, 29, 91, 1, 'dungnguyn', 5662031, 'Thông báo hoàn thành nội dung phải hiển thị trên tất cả modal.', '', 0, 0, true, false, 5, '', 0, 1639615345, 1639630584, 1639630584, false, 0); INSERT INTO public.issue VALUES (191, 29, 94, 1, 'dungnguyn', 5662031, 'Báo vắng.', '- [x] Báo vắng có người đi thay và không có người đi thay nếu người đó đã đăng ký phát biểu rồi thì phải tự động xóa hết đăng ký phát biểu. - [x] Đổi hai api báo vắng một cái là update thành phần tham dự một cái là PhienHop/DiThay thành một api.', 0, 0, false, false, 6, '', 0, 1639628872, 1640830658, 0, false, 0); INSERT INTO public.issue VALUES (185, 29, 88, 1, 'datqn1234', 8343428, 'Cho nút giao diện và nút thu âm nhỏ xuống.', '', 0, 0, false, false, 2, '', 0, 1639562510, 1639648186, 0, false, 0); INSERT INTO public.issue VALUES (189, 29, 92, 1, 'hoatrongkylovestory1999', 8539277, 'Vấn đề có hoặc không thời gian', '', 0, 0, false, false, 6, '', 0, 1639622909, 1640016994, 0, false, 0); INSERT INTO public.issue VALUES (190, 29, 93, 1, 'hoatrongkylovestory1999', 8539277, 'Loại biểu quyếtđể xem kết quả vấn đề', '', 0, 0, false, false, 1, '', 0, 1639623367, 1641461416, 0, false, 0); INSERT INTO public.issue VALUES (195, 29, 98, 1, 'dungnguyn', 5662031, 'Lỗi anh Tiến gán cho anh Tuấn.', '', 0, 0, false, false, 1, '', 0, 1639709435, 1639709612, 0, false, 0); INSERT INTO public.issue VALUES (196, 29, 99, 1, 'datqn1234', 8343428, 'lỗi ghi chú nhấn phía dưới không ghi đươc', '', 0, 0, false, false, 2, '', 0, 1639714367, 1639983003, 0, false, 0); INSERT INTO public.issue VALUES (197, 29, 100, 1, 'datqn1234', 8343428, 'xóa ghi chú không xóa hoàn toàn', '', 0, 0, false, false, 2, '', 0, 1639714399, 1639981718, 0, false, 0); INSERT INTO public.issue VALUES (193, 29, 96, 1, 'datqn1234', 8343428, 'kéo ghi chú bên details phiên họp', '', 0, 0, false, false, 2, '', 0, 1639648983, 1639982978, 0, false, 0); INSERT INTO public.issue VALUES (194, 29, 97, 1, 'hoatrongkylovestory1999', 8539277, 'Cho chủ trì không cần chọn ý kiến biểu quyết vẫn có thể hoàn thành.', '', 0, 0, false, false, 2, '', 0, 1639649046, 1639721625, 0, false, 0); INSERT INTO public.issue VALUES (213, 29, 116, 1, 'hoatrongkylovestory1999', 8539277, 'Check mất kết nối mạng', '', 0, 0, true, false, 1, '', 0, 1642142002, 1642147348, 1642147348, false, 0); INSERT INTO public.issue VALUES (214, 29, 117, 1, 'dungnguyn', 5662031, 'Loading ở trang home + danh sách phiên bị che.', '', 0, 0, false, false, 2, '', 0, 1643102294, 1647402285, 0, false, 0); INSERT INTO public.issue VALUES (162, 29, 65, 1, 'dungnguyn', 5662031, 'Bắt đầu phiên họp, quay lại nút vào họp lúc có lúc không (Vào từ lịch họp cá nhân).', '', 0, 0, false, false, 3, '', 0, 1639368428, 1639714934, 0, false, 0); INSERT INTO public.issue VALUES (163, 29, 66, 1, 'datqn1234', 8343428, 'Sửa trạng thái huy thư kí phien họp ( giao diện+reload)', 'Sửa trạng thái huy thư kí phien họp không load lại trạng thái ở meetingdetail', 0, 0, false, false, 2, '', 0, 1639390088, 1639707616, 0, false, 0); INSERT INTO public.issue VALUES (153, 29, 56, 1, 'dungnguyn', 5662031, 'Vấn đề, tài khoản thư ký chỗ cán bộ chưa biểu quyết bị undefined.', '', 0, 0, false, false, 1, '', 0, 1639119770, 1639625438, 0, false, 0); INSERT INTO public.issue VALUES (154, 29, 57, 1, 'dungnguyn', 5662031, 'Kiểm tra lại GRPC của vấn đề đối với tài khoản chủ trì và thư ký.', '', 0, 0, false, false, 2, '', 0, 1639119903, 1639387677, 0, false, 0); INSERT INTO public.issue VALUES (157, 29, 60, 1, 'dungnguyn', 5662031, 'Sửa tiêu đề của vấn đề.', '', 0, 0, false, false, 2, '', 0, 1639120124, 1639125239, 0, false, 0); INSERT INTO public.issue VALUES (156, 29, 59, 1, 'dungnguyn', 5662031, 'Kiểm tra thông báo kết thúc phiên họp.', '', 0, 0, false, false, 1, '', 0, 1639120029, 1639560474, 0, false, 0); INSERT INTO public.issue VALUES (159, 29, 62, 1, 'dungnguyn', 5662031, 'Từ tab vấn đề chọn biểu quyết có thông báo thành công, như từ tab đăng ký chọn biểu quyết không có thông báo.', '', 0, 0, false, false, 1, '', 0, 1639120838, 1639369357, 0, false, 0); INSERT INTO public.issue VALUES (160, 29, 63, 1, 'dungnguyn', 5662031, 'Thêm thông báo khi hoàn thành nội dung phiên họp.', '', 0, 0, false, false, 1, '', 0, 1639120918, 1639620204, 0, false, 0); INSERT INTO public.issue VALUES (164, 29, 67, 1, 'dungnguyn', 5662031, 'Thêm trạng thái ủy quyền trong lịch họp cá nhân.', '', 0, 0, false, false, 1, '', 0, 1639390279, 1639624133, 0, false, 0); INSERT INTO public.issue VALUES (165, 29, 68, 1, 'datqn1234', 8343428, 'Danh sách thư ký ủy quyền hiện tất cả thư ký khi không có thư ký phiên họp , ngoài ra hiện thư ký phiên họp', '', 0, 0, false, false, 1, '', 0, 1639445839, 1639562152, 0, false, 0); INSERT INTO public.issue VALUES (166, 29, 69, 1, 'dungnguyn', 5662031, 'Đăng ký phát biểu.', '- [x] Đăng ký phát biểu cho khách mời. - [x] Chỉ định phát biểu cho khách mời. - [x] Hiển thị thông báo cán bộ đã hoàn thành thu âm cho tất cả mọi người. - [x] Sửa nội dung bị tràn trong đăng ký phát biểu. - [x] Thêm chủ trì,thư ký được dừng đăng ký phát biểu của cán bộ. - [x] Cảnh báo của đăng ký phát biểu vào từ contentmeeting bị đè. - [x] Bắt đầu vấn đề, nếu còn ai đăng ký phát biểu thì hiển thị thông báo có muốn dừng phát biểu không.(Không cần làm đã hỏi anh Vũ). - [x] Thứ tự danh sách đăng ký phát biểu là đang phát biểu, chờ, xong. - [x] Thống kê đăng ký phát biểu chuyển thành biểu đồ tròn. - [x] Đổi api hủy đăng ký phát biểu từ hai thành một. - [x] Thêm lable để thể hiện đó là đăng ký phát biểu được chỉ định. - [x] Hiển thị cho dù cán bộ ở bất kì vị trí nào trong nội dung phiên họp. - [x] Hiển thị trên tất cả các nội dung thông báo hoặc ghi âm phát biểu. - [x] Sửa biểu đồ đăng ký phát biểu (màu của biểu đồ).', 0, 0, false, false, 50, '', 0, 1639557203, 1643102494, 0, false, 0); INSERT INTO public.issue VALUES (172, 29, 75, 1, 'dungnguyn', 5662031, 'Vấn đề biểu quyết.', '- [x] Tiêu đề của vấn đề. - [x] Làm sao để xem hết tên của vấn đề. - [x] Text trong phần thêm ý kiến khác mặc định màu đen. - [x] Vấn đề vào lần đầu thì xuất hiện skeleton, những lần sau không xuất hiện skeleton nhưng vẫn cập nhật dữ liệu. - [x] Khi có cán bộ thêm ý kiến khác, thì ý kiến đó phải được cập nhật lại cho những cán bộ khác đều thấy. - [x] Đồng bộ thông báo hoàn thành trong vấn đề, cho tên vấn đề ngắn lại khi hiển thị trong thông báo. - [x] Hiển thị thông báo khi một vấn đề đang mở thì không mở vấn đề khác. - [x] Kết quả biểu quyết chú thích phải nằm gần cái biểu đồ để dễ biết. - [x] Cho chủ trì không cần chọn ý kiến biểu quyết vẫn có thể hoàn thành. - [x] Thêm một component khi vấn đề ở trạng thái chưa thảo luận, cả chủ trì, cán bộ và thư ký đều hiển thị thông tin chung. - [x] Chủ trì vào vấn đề hoàn thành trong phiên họp đã kết thúc không xem được biểu quyết. - [x] Thư ký vào vấn đề chưa hoàn thành thì không được hiển thị kết quả biểu quyết. - [x] Đổi nội dung thông báo chọn của cán bộ trong vấn đề.', 0, 0, false, false, 24, '', 0, 1639557780, 1641289294, 0, false, 0); INSERT INTO public.issue VALUES (173, 29, 76, 1, 'dungnguyn', 5662031, 'Lịch họp đơn vị.', '- [x] Sau khi nhấn tới hoặc quay lại tên tháng load lâu - [x] Lọc những tháng nào chỉ hiện thị lịch những tháng đó - [x] Sau khi lọc phiên họp 2 tháng , rồi nhấn trên lịch 2-3 tháng nhấn hôm nay không load lại danh sách phiên họp - [x] Lịch hôm nay dữ liệu trống (Thông báo đưa vào giữa) (17/12/2021) - [x] Lọc lịch tháng (Từ ngày đến ngày không có ngày hôm nay thì nên ẩn đến ngày hôm nay) (17/12/2021) - [x] Lỗi rerender (loading lại nhiều lần) (17/12/2021) - [x] Lịch Tháng hiển thị ngày bên dưới kéo bị đè - Hình minh họa (17/12/2021) - [x] Thêm reload và refresh. - [x] Sửa màu xanh nhạt đi một chút xíu.', 0, 0, false, false, 23, '', 0, 1639559566, 1641289349, 0, false, 0); INSERT INTO public.issue VALUES (183, 29, 86, 1, 'datqn1234', 8343428, 'Kết thúc thu âm cho hiện loading để biết đang đẩy file thu âm.', '', 0, 0, true, false, 4, '', 0, 1639562450, 1639648369, 1639648369, false, 0); INSERT INTO public.issue VALUES (184, 29, 87, 1, 'datqn1234', 8343428, 'Kết thúc thu âm cho hiện loading để biết đang đẩy file thu âm.', '', 0, 0, false, false, 2, '', 0, 1639562497, 1639712024, 0, false, 0); INSERT INTO public.issue VALUES (176, 29, 79, 1, 'hoatrongkylovestory1999', 8539277, 'Hiển thị thông báo khi một vấn đề đang mở thì không mở vấn đề khác.', '', 0, 0, false, false, 2, '', 0, 1639560331, 1639702519, 0, false, 0); INSERT INTO public.issue VALUES (177, 29, 80, 1, 'hoatrongkylovestory1999', 8539277, 'Khi có cán bộ thêm ý kiến khác, thì ý kiến đó phải được cập nhật lại cho những cán bộ khác đều thấy.', '', 0, 0, false, false, 3, '', 0, 1639560456, 1639723448, 0, false, 0); INSERT INTO public.issue VALUES (178, 29, 81, 1, 'hoatrongkylovestory1999', 8539277, 'Đồng bộ thông báo hoàn thành trong vấn đề, cho tên vấn đề ngắn lại khi hiển thị trong thông báo.', '', 0, 0, false, false, 2, '', 0, 1639560506, 1639702525, 0, false, 0); INSERT INTO public.issue VALUES (181, 29, 84, 1, 'hoatrongkylovestory1999', 8539277, 'Vấn đề vào lần đầu thì xuất hiện skeleton, những lần sau không xuất hiện skeleton nhưng vẫn cập nhật dữ liệu.', '', 0, 0, false, false, 3, '', 0, 1639560824, 1640314260, 0, false, 0); INSERT INTO public.issue VALUES (209, 29, 112, 1, 'hoatrongkylovestory1999', 8539277, 'Lọc những tháng nào chỉ hiện thị lịch những tháng đó', '', 0, 0, true, false, 0, '', 0, 1640167467, 1640661112, 1640661112, false, 0); INSERT INTO public.issue VALUES (206, 29, 109, 1, 'datqn1234', 8343428, 'Trang chủ-Trạng thái trong phiên họp của phiên duyệt một là bỏ hai là đổi.', '', 0, 0, false, false, 2, '', 0, 1639983046, 1640081309, 0, false, 0); INSERT INTO public.issue VALUES (199, 29, 102, 1, 'tiensybinhdinh', 10245630, 'FEATURE-Ủy quyền duyệt cho thư ký cố định 1 thứ ký nên không cần chọn', '', 0, 0, false, false, 1, '', 0, 1639722877, 1641455959, 0, false, 0); INSERT INTO public.issue VALUES (201, 29, 104, 1, 'dungnguyn', 5662031, 'MeetingDetails.', '- [ ] Sửa thành phần tham dự thành cái nút trong meetingdetails.', 0, 0, false, false, 2, '', 0, 1639731038, 1639994798, 0, false, 0); INSERT INTO public.issue VALUES (204, 29, 107, 1, 'hoatrongkylovestory1999', 8539277, 'Vấn đề trong và ngoài biểu quyết', '', 0, 0, false, false, 3, '', 0, 1639971687, 1640165972, 0, false, 0); INSERT INTO public.issue VALUES (208, 29, 111, 1, 'dungnguyn', 5662031, 'Phiếu lấy ý kiến.', '- [x] Thêm link pdf.', 0, 0, false, false, 4, '', 0, 1640158258, 1642140879, 0, false, 0); INSERT INTO public.issue VALUES (207, 29, 110, 1, 'datqn1234', 8343428, 'Kho tài liệu', '- [x] Sửa search - [x] Load thêm bị lỗi key', 0, 0, false, false, 5, '', 0, 1640074407, 1641436450, 0, false, 0); INSERT INTO public.issue VALUES (200, 29, 103, 1, 'dungnguyn', 5662031, 'Trang chủ.', '- [x] Giảm spinner trong trang chủ. - [x] Cho chữ tham gia từ chối nhỏ lại bằng font chữ header của dashboard. - [x] Trạng thái trong phiên họp của phiên duyệt một là bỏ hai là đổi. - [x] Sửa nút di chuyển, khi nào kéo danh sách phiên họp xuống dưới mới hiện cái nút ra, còn lăn lên trên thì không có nút đó.', 0, 0, false, false, 14, '', 0, 1639730384, 1641351119, 0, false, 0); INSERT INTO public.issue VALUES (205, 29, 108, 1, 'datqn1234', 8343428, 'Trangchủ-Cho chữ tham gia từ chối nhỏ lại bằng font chữ header của dashboard.', '', 0, 0, false, false, 1, '', 0, 1639983019, 1639994802, 0, false, 0); INSERT INTO public.issue VALUES (198, 29, 101, 1, 'datqn1234', 8343428, 'Lịch đơn vị-Lịch Tháng hiển thị ngày bên dưới kéo bị đè', '', 0, 0, false, false, 2, '', 0, 1639714547, 1639981657, 0, false, 0); INSERT INTO public.issue VALUES (202, 29, 105, 1, 'dungnguyn', 5662031, 'Kiểm tra connect GRPC khi mất mạng.', '', 0, 0, false, false, 1, '', 0, 1639731500, 1641455844, 0, false, 0); INSERT INTO public.issue VALUES (203, 29, 106, 1, 'dungnguyn', 5662031, 'Chỉnh toàn bộ thời gian thành giờ ngày.', '', 0, 0, false, false, 1, '', 0, 1639733777, 1639994800, 0, false, 0); INSERT INTO public.issue VALUES (215, 21, 99, 11, '', 0, 'change login', '', 0, 0, true, true, 0, '', 0, 1705369961, 1705369982, 1705369982, false, 0); INSERT INTO public.issue VALUES (216, 21, 100, 11, '', 0, 'fix datatable', '', 0, 0, true, true, 0, '', 0, 1705389567, 1705389625, 1705389625, false, 0); INSERT INTO public.issue VALUES (221, 21, 105, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1705396840, 1705396865, 1705396862, false, 0); INSERT INTO public.issue VALUES (217, 21, 101, 11, '', 0, 'fix odata QLLD_HoSo', '', 0, 0, true, true, 0, '', 0, 1705393318, 1705393335, 1705393335, false, 0); INSERT INTO public.issue VALUES (218, 21, 102, 11, '', 0, 'fix hidden change year hoso', '', 0, 0, true, true, 0, '', 0, 1705394267, 1705394332, 1705394331, false, 0); INSERT INTO public.issue VALUES (219, 21, 103, 11, '', 0, 'fix phan quyen', '', 0, 0, true, true, 0, '', 0, 1705395688, 1705395801, 1705395799, false, 0); INSERT INTO public.issue VALUES (222, 21, 106, 11, '', 0, 'thinh', '', 0, 0, true, true, 0, '', 0, 1705397249, 1705397270, 1705397268, false, 0); INSERT INTO public.issue VALUES (220, 21, 104, 11, '', 0, 'fix change page', '', 0, 0, true, true, 0, '', 0, 1705396606, 1705396642, 1705396640, false, 0); INSERT INTO public.issue VALUES (223, 21, 107, 11, '', 0, 'fix trang thai ho so', '', 0, 0, true, true, 0, '', 0, 1705457134, 1705457158, 1705457156, false, 0); INSERT INTO public.issue VALUES (224, 21, 108, 11, '', 0, 'fix gdnn', '', 0, 0, true, true, 0, '', 0, 1705458405, 1705458437, 1705458436, false, 0); -- -- Data for Name: issue_assignees; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: issue_content_history; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: issue_dependency; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: issue_index; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.issue_index VALUES (5, 0); INSERT INTO public.issue_index VALUES (1, 1); INSERT INTO public.issue_index VALUES (17, 0); INSERT INTO public.issue_index VALUES (18, 0); INSERT INTO public.issue_index VALUES (20, 0); INSERT INTO public.issue_index VALUES (22, 0); INSERT INTO public.issue_index VALUES (23, 0); INSERT INTO public.issue_index VALUES (21, 112); INSERT INTO public.issue_index VALUES (27, 0); INSERT INTO public.issue_index VALUES (28, 0); INSERT INTO public.issue_index VALUES (29, 117); -- -- Data for Name: issue_label; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.issue_label VALUES (1, 100, 1); INSERT INTO public.issue_label VALUES (2, 100, 2); INSERT INTO public.issue_label VALUES (3, 101, 1); INSERT INTO public.issue_label VALUES (4, 102, 1); INSERT INTO public.issue_label VALUES (5, 103, 1); INSERT INTO public.issue_label VALUES (6, 103, 2); INSERT INTO public.issue_label VALUES (7, 104, 6); INSERT INTO public.issue_label VALUES (8, 105, 1); INSERT INTO public.issue_label VALUES (9, 105, 2); INSERT INTO public.issue_label VALUES (10, 106, 1); INSERT INTO public.issue_label VALUES (11, 106, 2); INSERT INTO public.issue_label VALUES (12, 107, 1); INSERT INTO public.issue_label VALUES (13, 107, 2); INSERT INTO public.issue_label VALUES (14, 108, 1); INSERT INTO public.issue_label VALUES (15, 108, 2); INSERT INTO public.issue_label VALUES (16, 109, 2); INSERT INTO public.issue_label VALUES (17, 109, 6); INSERT INTO public.issue_label VALUES (18, 110, 1); INSERT INTO public.issue_label VALUES (19, 110, 2); INSERT INTO public.issue_label VALUES (20, 111, 1); INSERT INTO public.issue_label VALUES (21, 111, 2); INSERT INTO public.issue_label VALUES (22, 112, 1); INSERT INTO public.issue_label VALUES (23, 112, 2); INSERT INTO public.issue_label VALUES (24, 113, 1); INSERT INTO public.issue_label VALUES (25, 113, 2); INSERT INTO public.issue_label VALUES (26, 114, 1); INSERT INTO public.issue_label VALUES (27, 114, 2); INSERT INTO public.issue_label VALUES (28, 115, 1); INSERT INTO public.issue_label VALUES (29, 116, 1); INSERT INTO public.issue_label VALUES (30, 117, 1); INSERT INTO public.issue_label VALUES (31, 117, 2); INSERT INTO public.issue_label VALUES (32, 118, 1); INSERT INTO public.issue_label VALUES (33, 119, 1); INSERT INTO public.issue_label VALUES (34, 119, 2); INSERT INTO public.issue_label VALUES (35, 120, 2); INSERT INTO public.issue_label VALUES (36, 120, 6); INSERT INTO public.issue_label VALUES (37, 121, 1); INSERT INTO public.issue_label VALUES (38, 122, 3); INSERT INTO public.issue_label VALUES (39, 122, 6); INSERT INTO public.issue_label VALUES (40, 123, 5); INSERT INTO public.issue_label VALUES (41, 124, 1); INSERT INTO public.issue_label VALUES (42, 125, 1); INSERT INTO public.issue_label VALUES (43, 126, 1); INSERT INTO public.issue_label VALUES (44, 126, 3); INSERT INTO public.issue_label VALUES (45, 127, 1); INSERT INTO public.issue_label VALUES (46, 128, 1); INSERT INTO public.issue_label VALUES (47, 128, 2); INSERT INTO public.issue_label VALUES (48, 129, 1); INSERT INTO public.issue_label VALUES (49, 129, 2); INSERT INTO public.issue_label VALUES (50, 130, 1); INSERT INTO public.issue_label VALUES (51, 131, 1); INSERT INTO public.issue_label VALUES (52, 132, 1); INSERT INTO public.issue_label VALUES (53, 133, 3); INSERT INTO public.issue_label VALUES (54, 133, 6); INSERT INTO public.issue_label VALUES (55, 134, 1); INSERT INTO public.issue_label VALUES (56, 134, 2); INSERT INTO public.issue_label VALUES (57, 135, 1); INSERT INTO public.issue_label VALUES (58, 136, 1); INSERT INTO public.issue_label VALUES (59, 136, 3); INSERT INTO public.issue_label VALUES (60, 137, 1); INSERT INTO public.issue_label VALUES (61, 138, 1); INSERT INTO public.issue_label VALUES (62, 138, 2); INSERT INTO public.issue_label VALUES (63, 139, 1); INSERT INTO public.issue_label VALUES (64, 140, 1); INSERT INTO public.issue_label VALUES (65, 141, 1); INSERT INTO public.issue_label VALUES (66, 142, 2); INSERT INTO public.issue_label VALUES (67, 142, 5); INSERT INTO public.issue_label VALUES (68, 143, 1); INSERT INTO public.issue_label VALUES (69, 144, 5); INSERT INTO public.issue_label VALUES (70, 145, 1); INSERT INTO public.issue_label VALUES (71, 145, 2); INSERT INTO public.issue_label VALUES (72, 146, 1); INSERT INTO public.issue_label VALUES (73, 146, 2); INSERT INTO public.issue_label VALUES (74, 147, 1); INSERT INTO public.issue_label VALUES (75, 147, 2); INSERT INTO public.issue_label VALUES (76, 148, 3); INSERT INTO public.issue_label VALUES (77, 148, 6); INSERT INTO public.issue_label VALUES (78, 149, 3); INSERT INTO public.issue_label VALUES (79, 149, 6); INSERT INTO public.issue_label VALUES (80, 150, 1); INSERT INTO public.issue_label VALUES (81, 150, 2); INSERT INTO public.issue_label VALUES (82, 151, 2); INSERT INTO public.issue_label VALUES (83, 151, 6); INSERT INTO public.issue_label VALUES (84, 152, 1); INSERT INTO public.issue_label VALUES (85, 152, 2); INSERT INTO public.issue_label VALUES (86, 153, 1); INSERT INTO public.issue_label VALUES (87, 153, 2); INSERT INTO public.issue_label VALUES (88, 154, 2); INSERT INTO public.issue_label VALUES (89, 154, 6); INSERT INTO public.issue_label VALUES (90, 155, 5); INSERT INTO public.issue_label VALUES (91, 156, 1); INSERT INTO public.issue_label VALUES (92, 156, 2); INSERT INTO public.issue_label VALUES (93, 157, 2); INSERT INTO public.issue_label VALUES (94, 157, 6); INSERT INTO public.issue_label VALUES (95, 158, 2); INSERT INTO public.issue_label VALUES (96, 158, 6); INSERT INTO public.issue_label VALUES (97, 159, 2); INSERT INTO public.issue_label VALUES (98, 159, 6); INSERT INTO public.issue_label VALUES (99, 160, 1); INSERT INTO public.issue_label VALUES (100, 160, 2); INSERT INTO public.issue_label VALUES (101, 161, 1); INSERT INTO public.issue_label VALUES (102, 161, 2); INSERT INTO public.issue_label VALUES (103, 162, 2); INSERT INTO public.issue_label VALUES (104, 162, 6); INSERT INTO public.issue_label VALUES (105, 163, 1); INSERT INTO public.issue_label VALUES (106, 164, 1); INSERT INTO public.issue_label VALUES (107, 165, 1); INSERT INTO public.issue_label VALUES (108, 166, 6); INSERT INTO public.issue_label VALUES (109, 167, 3); INSERT INTO public.issue_label VALUES (110, 167, 5); INSERT INTO public.issue_label VALUES (111, 168, 2); INSERT INTO public.issue_label VALUES (112, 168, 6); INSERT INTO public.issue_label VALUES (113, 169, 5); INSERT INTO public.issue_label VALUES (114, 170, 7); INSERT INTO public.issue_label VALUES (115, 171, 6); INSERT INTO public.issue_label VALUES (116, 172, 6); INSERT INTO public.issue_label VALUES (117, 173, 6); INSERT INTO public.issue_label VALUES (118, 174, 6); INSERT INTO public.issue_label VALUES (119, 175, 6); INSERT INTO public.issue_label VALUES (120, 176, 6); INSERT INTO public.issue_label VALUES (121, 177, 6); INSERT INTO public.issue_label VALUES (122, 178, 6); INSERT INTO public.issue_label VALUES (123, 179, 6); INSERT INTO public.issue_label VALUES (124, 180, 6); INSERT INTO public.issue_label VALUES (125, 181, 6); INSERT INTO public.issue_label VALUES (126, 182, 6); INSERT INTO public.issue_label VALUES (127, 183, 7); INSERT INTO public.issue_label VALUES (128, 184, 1); INSERT INTO public.issue_label VALUES (129, 185, 6); INSERT INTO public.issue_label VALUES (130, 186, 6); INSERT INTO public.issue_label VALUES (131, 187, 7); INSERT INTO public.issue_label VALUES (132, 188, 7); INSERT INTO public.issue_label VALUES (133, 189, 6); INSERT INTO public.issue_label VALUES (134, 190, 6); INSERT INTO public.issue_label VALUES (135, 191, 6); INSERT INTO public.issue_label VALUES (136, 192, 6); INSERT INTO public.issue_label VALUES (137, 193, 6); INSERT INTO public.issue_label VALUES (138, 194, 6); INSERT INTO public.issue_label VALUES (139, 195, 5); INSERT INTO public.issue_label VALUES (140, 196, 6); INSERT INTO public.issue_label VALUES (141, 197, 6); INSERT INTO public.issue_label VALUES (142, 198, 6); INSERT INTO public.issue_label VALUES (143, 199, 6); INSERT INTO public.issue_label VALUES (144, 200, 6); INSERT INTO public.issue_label VALUES (145, 201, 6); INSERT INTO public.issue_label VALUES (146, 202, 6); INSERT INTO public.issue_label VALUES (147, 203, 6); INSERT INTO public.issue_label VALUES (148, 204, 6); INSERT INTO public.issue_label VALUES (149, 205, 6); INSERT INTO public.issue_label VALUES (150, 206, 6); INSERT INTO public.issue_label VALUES (151, 207, 6); INSERT INTO public.issue_label VALUES (152, 208, 6); INSERT INTO public.issue_label VALUES (153, 210, 6); INSERT INTO public.issue_label VALUES (154, 211, 6); INSERT INTO public.issue_label VALUES (155, 212, 6); INSERT INTO public.issue_label VALUES (156, 214, 2); INSERT INTO public.issue_label VALUES (157, 214, 6); -- -- Data for Name: issue_user; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.issue_user VALUES (100, 11, 26, true, false); INSERT INTO public.issue_user VALUES (103, 5, 27, false, false); INSERT INTO public.issue_user VALUES (1, 2, 1, false, true); INSERT INTO public.issue_user VALUES (29, 1, 8, true, false); INSERT INTO public.issue_user VALUES (31, 5, 9, false, false); INSERT INTO public.issue_user VALUES (33, 1, 9, false, false); INSERT INTO public.issue_user VALUES (34, 2, 9, false, false); INSERT INTO public.issue_user VALUES (2, 1, 1, true, false); INSERT INTO public.issue_user VALUES (3, 5, 2, false, false); INSERT INTO public.issue_user VALUES (4, 11, 2, false, false); INSERT INTO public.issue_user VALUES (6, 2, 2, false, false); INSERT INTO public.issue_user VALUES (60, 11, 16, true, false); INSERT INTO public.issue_user VALUES (67, 5, 18, false, false); INSERT INTO public.issue_user VALUES (69, 1, 18, false, false); INSERT INTO public.issue_user VALUES (32, 11, 9, true, false); INSERT INTO public.issue_user VALUES (35, 5, 10, false, false); INSERT INTO public.issue_user VALUES (37, 1, 10, false, false); INSERT INTO public.issue_user VALUES (38, 2, 10, false, false); INSERT INTO public.issue_user VALUES (70, 2, 18, false, false); INSERT INTO public.issue_user VALUES (105, 1, 27, false, false); INSERT INTO public.issue_user VALUES (5, 1, 2, true, false); INSERT INTO public.issue_user VALUES (7, 5, 3, false, false); INSERT INTO public.issue_user VALUES (9, 1, 3, false, false); INSERT INTO public.issue_user VALUES (10, 2, 3, false, false); INSERT INTO public.issue_user VALUES (88, 11, 23, true, false); INSERT INTO public.issue_user VALUES (36, 11, 10, true, false); INSERT INTO public.issue_user VALUES (39, 5, 11, false, false); INSERT INTO public.issue_user VALUES (41, 1, 11, false, false); INSERT INTO public.issue_user VALUES (42, 2, 11, false, false); INSERT INTO public.issue_user VALUES (91, 5, 24, false, false); INSERT INTO public.issue_user VALUES (8, 11, 3, true, false); INSERT INTO public.issue_user VALUES (11, 5, 4, false, false); INSERT INTO public.issue_user VALUES (13, 1, 4, false, false); INSERT INTO public.issue_user VALUES (14, 2, 4, false, false); INSERT INTO public.issue_user VALUES (68, 11, 18, true, false); INSERT INTO public.issue_user VALUES (71, 5, 19, false, false); INSERT INTO public.issue_user VALUES (40, 11, 11, true, false); INSERT INTO public.issue_user VALUES (12, 11, 4, true, false); INSERT INTO public.issue_user VALUES (15, 5, 5, false, false); INSERT INTO public.issue_user VALUES (17, 1, 5, false, false); INSERT INTO public.issue_user VALUES (18, 2, 5, false, false); INSERT INTO public.issue_user VALUES (43, 5, 12, false, false); INSERT INTO public.issue_user VALUES (45, 1, 12, false, false); INSERT INTO public.issue_user VALUES (46, 2, 12, false, false); INSERT INTO public.issue_user VALUES (16, 11, 5, true, false); INSERT INTO public.issue_user VALUES (19, 5, 6, false, false); INSERT INTO public.issue_user VALUES (21, 1, 6, false, false); INSERT INTO public.issue_user VALUES (22, 2, 6, false, false); INSERT INTO public.issue_user VALUES (73, 1, 19, false, false); INSERT INTO public.issue_user VALUES (74, 2, 19, false, false); INSERT INTO public.issue_user VALUES (93, 1, 24, false, false); INSERT INTO public.issue_user VALUES (20, 11, 6, true, false); INSERT INTO public.issue_user VALUES (23, 5, 7, false, false); INSERT INTO public.issue_user VALUES (25, 1, 7, false, false); INSERT INTO public.issue_user VALUES (26, 2, 7, false, false); INSERT INTO public.issue_user VALUES (44, 11, 12, true, false); INSERT INTO public.issue_user VALUES (47, 5, 13, false, false); INSERT INTO public.issue_user VALUES (49, 1, 13, false, false); INSERT INTO public.issue_user VALUES (24, 11, 7, true, false); INSERT INTO public.issue_user VALUES (27, 5, 8, false, false); INSERT INTO public.issue_user VALUES (30, 2, 8, false, false); INSERT INTO public.issue_user VALUES (50, 2, 13, false, false); INSERT INTO public.issue_user VALUES (94, 2, 24, false, false); INSERT INTO public.issue_user VALUES (106, 16, 27, false, false); INSERT INTO public.issue_user VALUES (107, 2, 27, false, false); INSERT INTO public.issue_user VALUES (28, 11, 8, true, false); INSERT INTO public.issue_user VALUES (119, 11, 30, true, false); INSERT INTO public.issue_user VALUES (72, 11, 19, true, false); INSERT INTO public.issue_user VALUES (75, 5, 20, false, false); INSERT INTO public.issue_user VALUES (48, 11, 13, true, false); INSERT INTO public.issue_user VALUES (51, 5, 14, false, false); INSERT INTO public.issue_user VALUES (53, 1, 14, false, false); INSERT INTO public.issue_user VALUES (54, 2, 14, false, false); INSERT INTO public.issue_user VALUES (77, 1, 20, false, false); INSERT INTO public.issue_user VALUES (78, 2, 20, false, false); INSERT INTO public.issue_user VALUES (109, 11, 28, true, false); INSERT INTO public.issue_user VALUES (92, 11, 24, true, false); INSERT INTO public.issue_user VALUES (95, 5, 25, false, false); INSERT INTO public.issue_user VALUES (52, 11, 14, true, false); INSERT INTO public.issue_user VALUES (55, 5, 15, false, false); INSERT INTO public.issue_user VALUES (57, 1, 15, false, false); INSERT INTO public.issue_user VALUES (58, 2, 15, false, false); INSERT INTO public.issue_user VALUES (97, 1, 25, false, false); INSERT INTO public.issue_user VALUES (98, 2, 25, false, false); INSERT INTO public.issue_user VALUES (76, 11, 20, true, false); INSERT INTO public.issue_user VALUES (79, 5, 21, false, false); INSERT INTO public.issue_user VALUES (56, 11, 15, true, false); INSERT INTO public.issue_user VALUES (59, 5, 16, false, false); INSERT INTO public.issue_user VALUES (61, 1, 16, false, false); INSERT INTO public.issue_user VALUES (62, 2, 16, false, false); INSERT INTO public.issue_user VALUES (81, 1, 21, false, false); INSERT INTO public.issue_user VALUES (82, 2, 21, false, false); INSERT INTO public.issue_user VALUES (113, 5, 29, false, false); INSERT INTO public.issue_user VALUES (63, 5, 17, false, false); INSERT INTO public.issue_user VALUES (65, 1, 17, false, false); INSERT INTO public.issue_user VALUES (66, 2, 17, false, false); INSERT INTO public.issue_user VALUES (104, 11, 27, true, false); INSERT INTO public.issue_user VALUES (108, 5, 28, false, false); INSERT INTO public.issue_user VALUES (96, 11, 25, true, false); INSERT INTO public.issue_user VALUES (80, 11, 21, true, false); INSERT INTO public.issue_user VALUES (83, 5, 22, false, false); INSERT INTO public.issue_user VALUES (85, 1, 22, false, false); INSERT INTO public.issue_user VALUES (64, 11, 17, true, false); INSERT INTO public.issue_user VALUES (86, 2, 22, false, false); INSERT INTO public.issue_user VALUES (99, 5, 26, false, false); INSERT INTO public.issue_user VALUES (101, 1, 26, false, false); INSERT INTO public.issue_user VALUES (102, 2, 26, false, false); INSERT INTO public.issue_user VALUES (84, 11, 22, true, false); INSERT INTO public.issue_user VALUES (87, 5, 23, false, false); INSERT INTO public.issue_user VALUES (89, 1, 23, false, false); INSERT INTO public.issue_user VALUES (90, 2, 23, false, false); INSERT INTO public.issue_user VALUES (110, 1, 28, false, false); INSERT INTO public.issue_user VALUES (111, 16, 28, false, false); INSERT INTO public.issue_user VALUES (115, 1, 29, false, false); INSERT INTO public.issue_user VALUES (112, 2, 28, false, false); INSERT INTO public.issue_user VALUES (116, 16, 29, false, false); INSERT INTO public.issue_user VALUES (117, 2, 29, false, false); INSERT INTO public.issue_user VALUES (124, 11, 31, true, false); INSERT INTO public.issue_user VALUES (123, 5, 31, false, false); INSERT INTO public.issue_user VALUES (114, 11, 29, true, false); INSERT INTO public.issue_user VALUES (118, 5, 30, false, false); INSERT INTO public.issue_user VALUES (120, 1, 30, false, false); INSERT INTO public.issue_user VALUES (121, 16, 30, false, false); INSERT INTO public.issue_user VALUES (122, 2, 30, false, false); INSERT INTO public.issue_user VALUES (125, 1, 31, false, false); INSERT INTO public.issue_user VALUES (126, 16, 31, false, false); INSERT INTO public.issue_user VALUES (127, 2, 31, false, false); INSERT INTO public.issue_user VALUES (128, 5, 32, false, false); INSERT INTO public.issue_user VALUES (130, 1, 32, false, false); INSERT INTO public.issue_user VALUES (131, 16, 32, false, false); INSERT INTO public.issue_user VALUES (132, 2, 32, false, false); INSERT INTO public.issue_user VALUES (129, 11, 32, true, false); INSERT INTO public.issue_user VALUES (133, 5, 33, false, false); INSERT INTO public.issue_user VALUES (135, 1, 33, false, false); INSERT INTO public.issue_user VALUES (136, 16, 33, false, false); INSERT INTO public.issue_user VALUES (137, 2, 33, false, false); INSERT INTO public.issue_user VALUES (249, 11, 56, true, false); INSERT INTO public.issue_user VALUES (254, 11, 57, true, false); INSERT INTO public.issue_user VALUES (253, 5, 57, false, false); INSERT INTO public.issue_user VALUES (244, 11, 55, true, false); INSERT INTO public.issue_user VALUES (134, 11, 33, true, false); INSERT INTO public.issue_user VALUES (138, 5, 34, false, false); INSERT INTO public.issue_user VALUES (140, 1, 34, false, false); INSERT INTO public.issue_user VALUES (141, 16, 34, false, false); INSERT INTO public.issue_user VALUES (142, 2, 34, false, false); INSERT INTO public.issue_user VALUES (194, 11, 45, true, false); INSERT INTO public.issue_user VALUES (198, 5, 46, false, false); INSERT INTO public.issue_user VALUES (200, 1, 46, false, false); INSERT INTO public.issue_user VALUES (139, 11, 34, true, false); INSERT INTO public.issue_user VALUES (143, 5, 35, false, false); INSERT INTO public.issue_user VALUES (145, 1, 35, false, false); INSERT INTO public.issue_user VALUES (146, 16, 35, false, false); INSERT INTO public.issue_user VALUES (147, 2, 35, false, false); INSERT INTO public.issue_user VALUES (201, 16, 46, false, false); INSERT INTO public.issue_user VALUES (202, 2, 46, false, false); INSERT INTO public.issue_user VALUES (224, 11, 51, true, false); INSERT INTO public.issue_user VALUES (228, 5, 52, false, false); INSERT INTO public.issue_user VALUES (144, 11, 35, true, false); INSERT INTO public.issue_user VALUES (148, 5, 36, false, false); INSERT INTO public.issue_user VALUES (150, 1, 36, false, false); INSERT INTO public.issue_user VALUES (151, 16, 36, false, false); INSERT INTO public.issue_user VALUES (152, 2, 36, false, false); INSERT INTO public.issue_user VALUES (199, 11, 46, true, false); INSERT INTO public.issue_user VALUES (203, 5, 47, false, false); INSERT INTO public.issue_user VALUES (149, 11, 36, true, false); INSERT INTO public.issue_user VALUES (153, 5, 37, false, false); INSERT INTO public.issue_user VALUES (155, 1, 37, false, false); INSERT INTO public.issue_user VALUES (156, 16, 37, false, false); INSERT INTO public.issue_user VALUES (157, 2, 37, false, false); INSERT INTO public.issue_user VALUES (205, 1, 47, false, false); INSERT INTO public.issue_user VALUES (206, 16, 47, false, false); INSERT INTO public.issue_user VALUES (207, 2, 47, false, false); INSERT INTO public.issue_user VALUES (230, 1, 52, false, false); INSERT INTO public.issue_user VALUES (154, 11, 37, true, false); INSERT INTO public.issue_user VALUES (158, 5, 38, false, false); INSERT INTO public.issue_user VALUES (160, 1, 38, false, false); INSERT INTO public.issue_user VALUES (161, 16, 38, false, false); INSERT INTO public.issue_user VALUES (162, 2, 38, false, false); INSERT INTO public.issue_user VALUES (231, 16, 52, false, false); INSERT INTO public.issue_user VALUES (232, 2, 52, false, false); INSERT INTO public.issue_user VALUES (239, 11, 54, true, false); INSERT INTO public.issue_user VALUES (204, 11, 47, true, false); INSERT INTO public.issue_user VALUES (159, 11, 38, true, false); INSERT INTO public.issue_user VALUES (163, 5, 39, false, false); INSERT INTO public.issue_user VALUES (165, 1, 39, false, false); INSERT INTO public.issue_user VALUES (166, 16, 39, false, false); INSERT INTO public.issue_user VALUES (167, 2, 39, false, false); INSERT INTO public.issue_user VALUES (208, 5, 48, false, false); INSERT INTO public.issue_user VALUES (210, 1, 48, false, false); INSERT INTO public.issue_user VALUES (211, 16, 48, false, false); INSERT INTO public.issue_user VALUES (164, 11, 39, true, false); INSERT INTO public.issue_user VALUES (168, 5, 40, false, false); INSERT INTO public.issue_user VALUES (170, 1, 40, false, false); INSERT INTO public.issue_user VALUES (171, 16, 40, false, false); INSERT INTO public.issue_user VALUES (172, 2, 40, false, false); INSERT INTO public.issue_user VALUES (212, 2, 48, false, false); INSERT INTO public.issue_user VALUES (243, 5, 55, false, false); INSERT INTO public.issue_user VALUES (245, 1, 55, false, false); INSERT INTO public.issue_user VALUES (169, 11, 40, true, false); INSERT INTO public.issue_user VALUES (173, 5, 41, false, false); INSERT INTO public.issue_user VALUES (175, 1, 41, false, false); INSERT INTO public.issue_user VALUES (176, 16, 41, false, false); INSERT INTO public.issue_user VALUES (177, 2, 41, false, false); INSERT INTO public.issue_user VALUES (229, 11, 52, true, false); INSERT INTO public.issue_user VALUES (209, 11, 48, true, false); INSERT INTO public.issue_user VALUES (213, 5, 49, false, false); INSERT INTO public.issue_user VALUES (174, 11, 41, true, false); INSERT INTO public.issue_user VALUES (178, 5, 42, false, false); INSERT INTO public.issue_user VALUES (180, 1, 42, false, false); INSERT INTO public.issue_user VALUES (181, 16, 42, false, false); INSERT INTO public.issue_user VALUES (182, 2, 42, false, false); INSERT INTO public.issue_user VALUES (215, 1, 49, false, false); INSERT INTO public.issue_user VALUES (216, 16, 49, false, false); INSERT INTO public.issue_user VALUES (217, 2, 49, false, false); INSERT INTO public.issue_user VALUES (233, 5, 53, false, false); INSERT INTO public.issue_user VALUES (179, 11, 42, true, false); INSERT INTO public.issue_user VALUES (183, 5, 43, false, false); INSERT INTO public.issue_user VALUES (185, 1, 43, false, false); INSERT INTO public.issue_user VALUES (186, 16, 43, false, false); INSERT INTO public.issue_user VALUES (187, 2, 43, false, false); INSERT INTO public.issue_user VALUES (235, 1, 53, false, false); INSERT INTO public.issue_user VALUES (236, 16, 53, false, false); INSERT INTO public.issue_user VALUES (214, 11, 49, true, false); INSERT INTO public.issue_user VALUES (184, 11, 43, true, false); INSERT INTO public.issue_user VALUES (188, 5, 44, false, false); INSERT INTO public.issue_user VALUES (190, 1, 44, false, false); INSERT INTO public.issue_user VALUES (191, 16, 44, false, false); INSERT INTO public.issue_user VALUES (192, 2, 44, false, false); INSERT INTO public.issue_user VALUES (218, 5, 50, false, false); INSERT INTO public.issue_user VALUES (220, 1, 50, false, false); INSERT INTO public.issue_user VALUES (221, 16, 50, false, false); INSERT INTO public.issue_user VALUES (189, 11, 44, true, false); INSERT INTO public.issue_user VALUES (193, 5, 45, false, false); INSERT INTO public.issue_user VALUES (195, 1, 45, false, false); INSERT INTO public.issue_user VALUES (196, 16, 45, false, false); INSERT INTO public.issue_user VALUES (197, 2, 45, false, false); INSERT INTO public.issue_user VALUES (222, 2, 50, false, false); INSERT INTO public.issue_user VALUES (237, 2, 53, false, false); INSERT INTO public.issue_user VALUES (246, 16, 55, false, false); INSERT INTO public.issue_user VALUES (247, 2, 55, false, false); INSERT INTO public.issue_user VALUES (219, 11, 50, true, false); INSERT INTO public.issue_user VALUES (223, 5, 51, false, false); INSERT INTO public.issue_user VALUES (225, 1, 51, false, false); INSERT INTO public.issue_user VALUES (226, 16, 51, false, false); INSERT INTO public.issue_user VALUES (227, 2, 51, false, false); INSERT INTO public.issue_user VALUES (248, 5, 56, false, false); INSERT INTO public.issue_user VALUES (234, 11, 53, true, false); INSERT INTO public.issue_user VALUES (238, 5, 54, false, false); INSERT INTO public.issue_user VALUES (240, 1, 54, false, false); INSERT INTO public.issue_user VALUES (241, 16, 54, false, false); INSERT INTO public.issue_user VALUES (242, 2, 54, false, false); INSERT INTO public.issue_user VALUES (250, 1, 56, false, false); INSERT INTO public.issue_user VALUES (251, 16, 56, false, false); INSERT INTO public.issue_user VALUES (252, 2, 56, false, false); INSERT INTO public.issue_user VALUES (255, 1, 57, false, false); INSERT INTO public.issue_user VALUES (256, 16, 57, false, false); INSERT INTO public.issue_user VALUES (257, 2, 57, false, false); INSERT INTO public.issue_user VALUES (259, 11, 58, true, false); INSERT INTO public.issue_user VALUES (258, 5, 58, false, false); INSERT INTO public.issue_user VALUES (260, 1, 58, false, false); INSERT INTO public.issue_user VALUES (261, 16, 58, false, false); INSERT INTO public.issue_user VALUES (262, 2, 58, false, false); INSERT INTO public.issue_user VALUES (264, 11, 59, true, false); INSERT INTO public.issue_user VALUES (263, 5, 59, false, false); INSERT INTO public.issue_user VALUES (265, 1, 59, false, false); INSERT INTO public.issue_user VALUES (266, 16, 59, false, false); INSERT INTO public.issue_user VALUES (267, 2, 59, false, false); INSERT INTO public.issue_user VALUES (268, 5, 60, false, false); INSERT INTO public.issue_user VALUES (270, 1, 60, false, false); INSERT INTO public.issue_user VALUES (271, 16, 60, false, false); INSERT INTO public.issue_user VALUES (272, 2, 60, false, false); INSERT INTO public.issue_user VALUES (379, 11, 82, true, false); INSERT INTO public.issue_user VALUES (383, 5, 83, false, false); INSERT INTO public.issue_user VALUES (384, 11, 83, true, false); INSERT INTO public.issue_user VALUES (269, 11, 60, true, false); INSERT INTO public.issue_user VALUES (273, 5, 61, false, false); INSERT INTO public.issue_user VALUES (275, 1, 61, false, false); INSERT INTO public.issue_user VALUES (276, 16, 61, false, false); INSERT INTO public.issue_user VALUES (277, 2, 61, false, false); INSERT INTO public.issue_user VALUES (329, 11, 72, true, false); INSERT INTO public.issue_user VALUES (333, 5, 73, false, false); INSERT INTO public.issue_user VALUES (335, 1, 73, false, false); INSERT INTO public.issue_user VALUES (274, 11, 61, true, false); INSERT INTO public.issue_user VALUES (278, 5, 62, false, false); INSERT INTO public.issue_user VALUES (280, 1, 62, false, false); INSERT INTO public.issue_user VALUES (281, 16, 62, false, false); INSERT INTO public.issue_user VALUES (282, 2, 62, false, false); INSERT INTO public.issue_user VALUES (336, 16, 73, false, false); INSERT INTO public.issue_user VALUES (337, 2, 73, false, false); INSERT INTO public.issue_user VALUES (359, 11, 78, true, false); INSERT INTO public.issue_user VALUES (363, 5, 79, false, false); INSERT INTO public.issue_user VALUES (279, 11, 62, true, false); INSERT INTO public.issue_user VALUES (283, 5, 63, false, false); INSERT INTO public.issue_user VALUES (285, 1, 63, false, false); INSERT INTO public.issue_user VALUES (286, 16, 63, false, false); INSERT INTO public.issue_user VALUES (287, 2, 63, false, false); INSERT INTO public.issue_user VALUES (365, 1, 79, false, false); INSERT INTO public.issue_user VALUES (334, 11, 73, true, false); INSERT INTO public.issue_user VALUES (338, 5, 74, false, false); INSERT INTO public.issue_user VALUES (284, 11, 63, true, false); INSERT INTO public.issue_user VALUES (288, 5, 64, false, false); INSERT INTO public.issue_user VALUES (290, 1, 64, false, false); INSERT INTO public.issue_user VALUES (291, 16, 64, false, false); INSERT INTO public.issue_user VALUES (292, 2, 64, false, false); INSERT INTO public.issue_user VALUES (340, 1, 74, false, false); INSERT INTO public.issue_user VALUES (341, 16, 74, false, false); INSERT INTO public.issue_user VALUES (342, 2, 74, false, false); INSERT INTO public.issue_user VALUES (289, 11, 64, true, false); INSERT INTO public.issue_user VALUES (293, 5, 65, false, false); INSERT INTO public.issue_user VALUES (295, 1, 65, false, false); INSERT INTO public.issue_user VALUES (296, 16, 65, false, false); INSERT INTO public.issue_user VALUES (297, 2, 65, false, false); INSERT INTO public.issue_user VALUES (366, 16, 79, false, false); INSERT INTO public.issue_user VALUES (367, 2, 79, false, false); INSERT INTO public.issue_user VALUES (374, 11, 81, true, false); INSERT INTO public.issue_user VALUES (378, 5, 82, false, false); INSERT INTO public.issue_user VALUES (294, 11, 65, true, false); INSERT INTO public.issue_user VALUES (298, 5, 66, false, false); INSERT INTO public.issue_user VALUES (300, 1, 66, false, false); INSERT INTO public.issue_user VALUES (301, 16, 66, false, false); INSERT INTO public.issue_user VALUES (302, 2, 66, false, false); INSERT INTO public.issue_user VALUES (339, 11, 74, true, false); INSERT INTO public.issue_user VALUES (343, 5, 75, false, false); INSERT INTO public.issue_user VALUES (345, 1, 75, false, false); INSERT INTO public.issue_user VALUES (299, 11, 66, true, false); INSERT INTO public.issue_user VALUES (303, 5, 67, false, false); INSERT INTO public.issue_user VALUES (305, 1, 67, false, false); INSERT INTO public.issue_user VALUES (306, 16, 67, false, false); INSERT INTO public.issue_user VALUES (307, 2, 67, false, false); INSERT INTO public.issue_user VALUES (346, 16, 75, false, false); INSERT INTO public.issue_user VALUES (347, 2, 75, false, false); INSERT INTO public.issue_user VALUES (380, 1, 82, false, false); INSERT INTO public.issue_user VALUES (304, 11, 67, true, false); INSERT INTO public.issue_user VALUES (308, 5, 68, false, false); INSERT INTO public.issue_user VALUES (310, 1, 68, false, false); INSERT INTO public.issue_user VALUES (311, 16, 68, false, false); INSERT INTO public.issue_user VALUES (312, 2, 68, false, false); INSERT INTO public.issue_user VALUES (364, 11, 79, true, false); INSERT INTO public.issue_user VALUES (368, 5, 80, false, false); INSERT INTO public.issue_user VALUES (344, 11, 75, true, false); INSERT INTO public.issue_user VALUES (348, 5, 76, false, false); INSERT INTO public.issue_user VALUES (309, 11, 68, true, false); INSERT INTO public.issue_user VALUES (313, 5, 69, false, false); INSERT INTO public.issue_user VALUES (315, 1, 69, false, false); INSERT INTO public.issue_user VALUES (316, 16, 69, false, false); INSERT INTO public.issue_user VALUES (317, 2, 69, false, false); INSERT INTO public.issue_user VALUES (350, 1, 76, false, false); INSERT INTO public.issue_user VALUES (351, 16, 76, false, false); INSERT INTO public.issue_user VALUES (352, 2, 76, false, false); INSERT INTO public.issue_user VALUES (314, 11, 69, true, false); INSERT INTO public.issue_user VALUES (318, 5, 70, false, false); INSERT INTO public.issue_user VALUES (320, 1, 70, false, false); INSERT INTO public.issue_user VALUES (321, 16, 70, false, false); INSERT INTO public.issue_user VALUES (322, 2, 70, false, false); INSERT INTO public.issue_user VALUES (370, 1, 80, false, false); INSERT INTO public.issue_user VALUES (371, 16, 80, false, false); INSERT INTO public.issue_user VALUES (372, 2, 80, false, false); INSERT INTO public.issue_user VALUES (319, 11, 70, true, false); INSERT INTO public.issue_user VALUES (323, 5, 71, false, false); INSERT INTO public.issue_user VALUES (325, 1, 71, false, false); INSERT INTO public.issue_user VALUES (326, 16, 71, false, false); INSERT INTO public.issue_user VALUES (327, 2, 71, false, false); INSERT INTO public.issue_user VALUES (349, 11, 76, true, false); INSERT INTO public.issue_user VALUES (353, 5, 77, false, false); INSERT INTO public.issue_user VALUES (355, 1, 77, false, false); INSERT INTO public.issue_user VALUES (324, 11, 71, true, false); INSERT INTO public.issue_user VALUES (328, 5, 72, false, false); INSERT INTO public.issue_user VALUES (330, 1, 72, false, false); INSERT INTO public.issue_user VALUES (331, 16, 72, false, false); INSERT INTO public.issue_user VALUES (332, 2, 72, false, false); INSERT INTO public.issue_user VALUES (356, 16, 77, false, false); INSERT INTO public.issue_user VALUES (357, 2, 77, false, false); INSERT INTO public.issue_user VALUES (381, 16, 82, false, false); INSERT INTO public.issue_user VALUES (382, 2, 82, false, false); INSERT INTO public.issue_user VALUES (385, 1, 83, false, false); INSERT INTO public.issue_user VALUES (386, 16, 83, false, false); INSERT INTO public.issue_user VALUES (354, 11, 77, true, false); INSERT INTO public.issue_user VALUES (358, 5, 78, false, false); INSERT INTO public.issue_user VALUES (360, 1, 78, false, false); INSERT INTO public.issue_user VALUES (361, 16, 78, false, false); INSERT INTO public.issue_user VALUES (362, 2, 78, false, false); INSERT INTO public.issue_user VALUES (369, 11, 80, true, false); INSERT INTO public.issue_user VALUES (373, 5, 81, false, false); INSERT INTO public.issue_user VALUES (375, 1, 81, false, false); INSERT INTO public.issue_user VALUES (376, 16, 81, false, false); INSERT INTO public.issue_user VALUES (377, 2, 81, false, false); INSERT INTO public.issue_user VALUES (387, 2, 83, false, false); INSERT INTO public.issue_user VALUES (389, 11, 84, true, false); INSERT INTO public.issue_user VALUES (388, 5, 84, false, false); INSERT INTO public.issue_user VALUES (390, 1, 84, false, false); INSERT INTO public.issue_user VALUES (391, 16, 84, false, false); INSERT INTO public.issue_user VALUES (392, 2, 84, false, false); INSERT INTO public.issue_user VALUES (394, 11, 85, true, false); INSERT INTO public.issue_user VALUES (393, 5, 85, false, false); INSERT INTO public.issue_user VALUES (395, 1, 85, false, false); INSERT INTO public.issue_user VALUES (396, 16, 85, false, false); INSERT INTO public.issue_user VALUES (397, 2, 85, false, false); INSERT INTO public.issue_user VALUES (398, 5, 86, false, false); INSERT INTO public.issue_user VALUES (400, 1, 86, false, false); INSERT INTO public.issue_user VALUES (401, 16, 86, false, false); INSERT INTO public.issue_user VALUES (402, 2, 86, false, false); INSERT INTO public.issue_user VALUES (514, 11, 224, true, false); INSERT INTO public.issue_user VALUES (509, 11, 223, true, false); INSERT INTO public.issue_user VALUES (513, 5, 224, false, false); INSERT INTO public.issue_user VALUES (399, 11, 86, true, false); INSERT INTO public.issue_user VALUES (403, 5, 87, false, false); INSERT INTO public.issue_user VALUES (405, 1, 87, false, false); INSERT INTO public.issue_user VALUES (406, 16, 87, false, false); INSERT INTO public.issue_user VALUES (407, 2, 87, false, false); INSERT INTO public.issue_user VALUES (459, 11, 98, true, false); INSERT INTO public.issue_user VALUES (463, 5, 99, false, false); INSERT INTO public.issue_user VALUES (465, 1, 99, false, false); INSERT INTO public.issue_user VALUES (404, 11, 87, true, false); INSERT INTO public.issue_user VALUES (408, 5, 88, false, false); INSERT INTO public.issue_user VALUES (410, 1, 88, false, false); INSERT INTO public.issue_user VALUES (411, 16, 88, false, false); INSERT INTO public.issue_user VALUES (412, 2, 88, false, false); INSERT INTO public.issue_user VALUES (466, 16, 99, false, false); INSERT INTO public.issue_user VALUES (467, 2, 99, false, false); INSERT INTO public.issue_user VALUES (489, 11, 219, true, false); INSERT INTO public.issue_user VALUES (493, 5, 220, false, false); INSERT INTO public.issue_user VALUES (409, 11, 88, true, false); INSERT INTO public.issue_user VALUES (413, 5, 89, false, false); INSERT INTO public.issue_user VALUES (415, 1, 89, false, false); INSERT INTO public.issue_user VALUES (416, 16, 89, false, false); INSERT INTO public.issue_user VALUES (417, 2, 89, false, false); INSERT INTO public.issue_user VALUES (495, 1, 220, false, false); INSERT INTO public.issue_user VALUES (464, 11, 99, true, false); INSERT INTO public.issue_user VALUES (468, 5, 215, false, false); INSERT INTO public.issue_user VALUES (414, 11, 89, true, false); INSERT INTO public.issue_user VALUES (418, 5, 90, false, false); INSERT INTO public.issue_user VALUES (420, 1, 90, false, false); INSERT INTO public.issue_user VALUES (421, 16, 90, false, false); INSERT INTO public.issue_user VALUES (422, 2, 90, false, false); INSERT INTO public.issue_user VALUES (470, 1, 215, false, false); INSERT INTO public.issue_user VALUES (471, 16, 215, false, false); INSERT INTO public.issue_user VALUES (472, 2, 215, false, false); INSERT INTO public.issue_user VALUES (419, 11, 90, true, false); INSERT INTO public.issue_user VALUES (423, 5, 91, false, false); INSERT INTO public.issue_user VALUES (425, 1, 91, false, false); INSERT INTO public.issue_user VALUES (426, 16, 91, false, false); INSERT INTO public.issue_user VALUES (427, 2, 91, false, false); INSERT INTO public.issue_user VALUES (496, 16, 220, false, false); INSERT INTO public.issue_user VALUES (497, 2, 220, false, false); INSERT INTO public.issue_user VALUES (504, 11, 222, true, false); INSERT INTO public.issue_user VALUES (508, 5, 223, false, false); INSERT INTO public.issue_user VALUES (424, 11, 91, true, false); INSERT INTO public.issue_user VALUES (428, 5, 92, false, false); INSERT INTO public.issue_user VALUES (430, 1, 92, false, false); INSERT INTO public.issue_user VALUES (431, 16, 92, false, false); INSERT INTO public.issue_user VALUES (432, 2, 92, false, false); INSERT INTO public.issue_user VALUES (469, 11, 215, true, false); INSERT INTO public.issue_user VALUES (473, 5, 216, false, false); INSERT INTO public.issue_user VALUES (475, 1, 216, false, false); INSERT INTO public.issue_user VALUES (429, 11, 92, true, false); INSERT INTO public.issue_user VALUES (433, 5, 93, false, false); INSERT INTO public.issue_user VALUES (435, 1, 93, false, false); INSERT INTO public.issue_user VALUES (436, 16, 93, false, false); INSERT INTO public.issue_user VALUES (437, 2, 93, false, false); INSERT INTO public.issue_user VALUES (476, 16, 216, false, false); INSERT INTO public.issue_user VALUES (477, 2, 216, false, false); INSERT INTO public.issue_user VALUES (510, 1, 223, false, false); INSERT INTO public.issue_user VALUES (434, 11, 93, true, false); INSERT INTO public.issue_user VALUES (438, 5, 94, false, false); INSERT INTO public.issue_user VALUES (440, 1, 94, false, false); INSERT INTO public.issue_user VALUES (441, 16, 94, false, false); INSERT INTO public.issue_user VALUES (442, 2, 94, false, false); INSERT INTO public.issue_user VALUES (494, 11, 220, true, false); INSERT INTO public.issue_user VALUES (498, 5, 221, false, false); INSERT INTO public.issue_user VALUES (474, 11, 216, true, false); INSERT INTO public.issue_user VALUES (478, 5, 217, false, false); INSERT INTO public.issue_user VALUES (439, 11, 94, true, false); INSERT INTO public.issue_user VALUES (443, 5, 95, false, false); INSERT INTO public.issue_user VALUES (445, 1, 95, false, false); INSERT INTO public.issue_user VALUES (446, 16, 95, false, false); INSERT INTO public.issue_user VALUES (447, 2, 95, false, false); INSERT INTO public.issue_user VALUES (480, 1, 217, false, false); INSERT INTO public.issue_user VALUES (481, 16, 217, false, false); INSERT INTO public.issue_user VALUES (482, 2, 217, false, false); INSERT INTO public.issue_user VALUES (444, 11, 95, true, false); INSERT INTO public.issue_user VALUES (448, 5, 96, false, false); INSERT INTO public.issue_user VALUES (450, 1, 96, false, false); INSERT INTO public.issue_user VALUES (451, 16, 96, false, false); INSERT INTO public.issue_user VALUES (452, 2, 96, false, false); INSERT INTO public.issue_user VALUES (500, 1, 221, false, false); INSERT INTO public.issue_user VALUES (501, 16, 221, false, false); INSERT INTO public.issue_user VALUES (502, 2, 221, false, false); INSERT INTO public.issue_user VALUES (449, 11, 96, true, false); INSERT INTO public.issue_user VALUES (453, 5, 97, false, false); INSERT INTO public.issue_user VALUES (455, 1, 97, false, false); INSERT INTO public.issue_user VALUES (456, 16, 97, false, false); INSERT INTO public.issue_user VALUES (457, 2, 97, false, false); INSERT INTO public.issue_user VALUES (479, 11, 217, true, false); INSERT INTO public.issue_user VALUES (483, 5, 218, false, false); INSERT INTO public.issue_user VALUES (485, 1, 218, false, false); INSERT INTO public.issue_user VALUES (454, 11, 97, true, false); INSERT INTO public.issue_user VALUES (458, 5, 98, false, false); INSERT INTO public.issue_user VALUES (460, 1, 98, false, false); INSERT INTO public.issue_user VALUES (461, 16, 98, false, false); INSERT INTO public.issue_user VALUES (462, 2, 98, false, false); INSERT INTO public.issue_user VALUES (486, 16, 218, false, false); INSERT INTO public.issue_user VALUES (487, 2, 218, false, false); INSERT INTO public.issue_user VALUES (511, 16, 223, false, false); INSERT INTO public.issue_user VALUES (512, 2, 223, false, false); INSERT INTO public.issue_user VALUES (515, 1, 224, false, false); INSERT INTO public.issue_user VALUES (516, 16, 224, false, false); INSERT INTO public.issue_user VALUES (484, 11, 218, true, false); INSERT INTO public.issue_user VALUES (488, 5, 219, false, false); INSERT INTO public.issue_user VALUES (490, 1, 219, false, false); INSERT INTO public.issue_user VALUES (491, 16, 219, false, false); INSERT INTO public.issue_user VALUES (492, 2, 219, false, false); INSERT INTO public.issue_user VALUES (499, 11, 221, true, false); INSERT INTO public.issue_user VALUES (503, 5, 222, false, false); INSERT INTO public.issue_user VALUES (505, 1, 222, false, false); INSERT INTO public.issue_user VALUES (506, 16, 222, false, false); INSERT INTO public.issue_user VALUES (507, 2, 222, false, false); INSERT INTO public.issue_user VALUES (518, 5, 225, false, false); INSERT INTO public.issue_user VALUES (517, 2, 224, false, false); INSERT INTO public.issue_user VALUES (519, 11, 225, true, false); INSERT INTO public.issue_user VALUES (520, 1, 225, false, false); INSERT INTO public.issue_user VALUES (521, 16, 225, false, false); INSERT INTO public.issue_user VALUES (522, 2, 225, false, false); INSERT INTO public.issue_user VALUES (524, 11, 226, true, false); INSERT INTO public.issue_user VALUES (523, 5, 226, false, false); INSERT INTO public.issue_user VALUES (525, 1, 226, false, false); INSERT INTO public.issue_user VALUES (526, 16, 226, false, false); INSERT INTO public.issue_user VALUES (527, 2, 226, false, false); INSERT INTO public.issue_user VALUES (529, 11, 227, true, false); INSERT INTO public.issue_user VALUES (528, 5, 227, false, false); INSERT INTO public.issue_user VALUES (530, 1, 227, false, false); INSERT INTO public.issue_user VALUES (531, 16, 227, false, false); INSERT INTO public.issue_user VALUES (532, 2, 227, false, false); INSERT INTO public.issue_user VALUES (533, 5, 228, false, false); INSERT INTO public.issue_user VALUES (535, 1, 228, false, false); INSERT INTO public.issue_user VALUES (536, 16, 228, false, false); INSERT INTO public.issue_user VALUES (537, 2, 228, false, false); INSERT INTO public.issue_user VALUES (534, 11, 228, true, false); -- -- Data for Name: issue_watch; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: label; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.label VALUES (1, 29, 0, 'DONE', false, '', '#00b140', 50, 2, 1705366770, 1705366770, 0); INSERT INTO public.label VALUES (2, 29, 0, 'ERROR', false, 'Lỗi ứng dụng', '#ff0000', 37, 1, 1705366770, 1705366770, 0); INSERT INTO public.label VALUES (3, 29, 0, 'FEATURE', false, 'Tính năng ứng dụng', '#6699cc', 7, 0, 1705366770, 1705366770, 0); INSERT INTO public.label VALUES (4, 29, 0, 'MISS DEADLINE', false, '', '#9400d3', 0, 0, 1705366770, 1705366770, 0); INSERT INTO public.label VALUES (5, 29, 0, 'TASK', false, '', '#f59f00', 7, 4, 1705366770, 1705366770, 0); INSERT INTO public.label VALUES (6, 29, 0, 'TESTING', false, '', '#0000ff', 52, 0, 1705366770, 1705366770, 0); INSERT INTO public.label VALUES (7, 29, 0, 'TODAY', false, '', '#dc143c', 4, 4, 1705366770, 1705366770, 0); -- -- Data for Name: language_stat; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.language_stat VALUES (1, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', false, 'Kotlin', 138, 1685008696); INSERT INTO public.language_stat VALUES (2, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', false, 'Swift', 1728, 1685008696); INSERT INTO public.language_stat VALUES (3, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', false, 'Objective-C', 38, 1685008696); INSERT INTO public.language_stat VALUES (4, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', false, 'Dart', 6038, 1685008696); INSERT INTO public.language_stat VALUES (5, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', false, 'CMake', 18794, 1685008696); INSERT INTO public.language_stat VALUES (6, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', true, 'C++', 22813, 1685008696); INSERT INTO public.language_stat VALUES (7, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', false, 'C', 1425, 1685008696); INSERT INTO public.language_stat VALUES (8, 1, '69239c62fdf7a0f80d409af5ec5be9fdacb7f57c', false, 'HTML', 1867, 1685008696); INSERT INTO public.language_stat VALUES (9, 5, '2f139a8e94a15b037dc31fcc30e5823857257013', false, 'JavaScript', 362, 1685070684); INSERT INTO public.language_stat VALUES (10, 5, '2f139a8e94a15b037dc31fcc30e5823857257013', false, 'HTML', 1756, 1685070684); INSERT INTO public.language_stat VALUES (11, 5, '2f139a8e94a15b037dc31fcc30e5823857257013', false, 'CSS', 43462, 1685070684); INSERT INTO public.language_stat VALUES (12, 5, '2f139a8e94a15b037dc31fcc30e5823857257013', true, 'TypeScript', 364017, 1685070684); INSERT INTO public.language_stat VALUES (13, 6, 'ea13e1d90318274180b5572fbf7d109463ce01b0', false, 'PowerShell', 67, 1685353383); INSERT INTO public.language_stat VALUES (14, 6, 'ea13e1d90318274180b5572fbf7d109463ce01b0', true, 'C#', 7735, 1685353383); INSERT INTO public.language_stat VALUES (15, 7, 'db631c23c653da1f63b740d7e7814fc345df17c0', true, 'TypeScript', 143623, 1685678671); INSERT INTO public.language_stat VALUES (19, 8, '997c70fb991ad1c41df5d8dd04873f291b57becd', true, 'TypeScript', 801888, 1685679008); INSERT INTO public.language_stat VALUES (16, 8, '997c70fb991ad1c41df5d8dd04873f291b57becd', false, 'HTML', 369483, 1685679008); INSERT INTO public.language_stat VALUES (17, 8, '997c70fb991ad1c41df5d8dd04873f291b57becd', false, 'SCSS', 131998, 1685679008); INSERT INTO public.language_stat VALUES (18, 8, '997c70fb991ad1c41df5d8dd04873f291b57becd', false, 'JavaScript', 13170, 1685679008); INSERT INTO public.language_stat VALUES (20, 9, 'eecc690536ed3f49a97cbb6bb416175b0ff4eb06', true, 'TypeScript', 405901, 1685933371); INSERT INTO public.language_stat VALUES (21, 9, 'eecc690536ed3f49a97cbb6bb416175b0ff4eb06', false, 'HTML', 94550, 1685933371); INSERT INTO public.language_stat VALUES (22, 9, 'eecc690536ed3f49a97cbb6bb416175b0ff4eb06', false, 'SCSS', 275515, 1685933371); INSERT INTO public.language_stat VALUES (23, 9, 'eecc690536ed3f49a97cbb6bb416175b0ff4eb06', false, 'JavaScript', 18417, 1685933371); INSERT INTO public.language_stat VALUES (24, 10, '580251b795de3f4ab4760b74af176873ee4129d7', true, 'C#', 774055, 1685933867); INSERT INTO public.language_stat VALUES (27, 10, '580251b795de3f4ab4760b74af176873ee4129d7', false, 'Dockerfile', 384, 1685933867); INSERT INTO public.language_stat VALUES (28, 10, '580251b795de3f4ab4760b74af176873ee4129d7', false, 'ASP.NET', 107, 1685933867); INSERT INTO public.language_stat VALUES (26, 10, '580251b795de3f4ab4760b74af176873ee4129d7', false, 'HTML', 20694, 1685933867); INSERT INTO public.language_stat VALUES (48, 18, '15aab07c22634b263f541cf2a5740d0fbc6e18d7', false, 'TypeScript', 508452, 1701226321); INSERT INTO public.language_stat VALUES (44, 18, '15aab07c22634b263f541cf2a5740d0fbc6e18d7', true, 'JavaScript', 510348, 1701226321); INSERT INTO public.language_stat VALUES (43, 17, '3388156ba70abc12c5d9f57ba31b3273f2bc34ae', false, 'JavaScript', 626, 1701226117); INSERT INTO public.language_stat VALUES (40, 17, '3388156ba70abc12c5d9f57ba31b3273f2bc34ae', true, 'TypeScript', 447025, 1701226117); INSERT INTO public.language_stat VALUES (34, 12, '7b700cce960bebc6fad9e06adb1d76eba7ebc29f', false, 'HTML', 1162, 1686814498); INSERT INTO public.language_stat VALUES (35, 12, '7b700cce960bebc6fad9e06adb1d76eba7ebc29f', false, 'CSS', 557404, 1686814498); INSERT INTO public.language_stat VALUES (45, 18, '15aab07c22634b263f541cf2a5740d0fbc6e18d7', false, 'SCSS', 9229, 1701226321); INSERT INTO public.language_stat VALUES (46, 18, '15aab07c22634b263f541cf2a5740d0fbc6e18d7', false, 'CSS', 29606, 1701226321); INSERT INTO public.language_stat VALUES (51, 22, 'fdee172356b6f9f25ce145921047bafcb1d2e5ca', false, 'HTML', 199854, 1701833901); INSERT INTO public.language_stat VALUES (38, 15, '35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5', true, 'C#', 1067690, 1700799256); INSERT INTO public.language_stat VALUES (39, 15, '35db819f5fc4ea5bf5f07bdb5f90e9867269a1c5', false, 'HTML', 19443, 1700799256); INSERT INTO public.language_stat VALUES (49, 20, '28c1828a5eff67f9b6ed1e9ce669b06f9d04b83a', true, 'C#', 210506, 1701226697); INSERT INTO public.language_stat VALUES (31, 11, '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', false, 'HTML', 781, 1685934957); INSERT INTO public.language_stat VALUES (30, 11, '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', true, 'JavaScript', 2465944, 1685934957); INSERT INTO public.language_stat VALUES (32, 11, '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', false, 'SCSS', 300976, 1685934957); INSERT INTO public.language_stat VALUES (33, 11, '7c8fac0f7d192807ceb4bf49dfebf8f13dc1eb66', false, 'CSS', 549, 1685934957); INSERT INTO public.language_stat VALUES (52, 22, 'fdee172356b6f9f25ce145921047bafcb1d2e5ca', true, 'C#', 2368414, 1701833901); INSERT INTO public.language_stat VALUES (53, 22, 'fdee172356b6f9f25ce145921047bafcb1d2e5ca', false, 'Dockerfile', 384, 1701833901); INSERT INTO public.language_stat VALUES (41, 17, '3388156ba70abc12c5d9f57ba31b3273f2bc34ae', false, 'CSS', 10529, 1701226117); INSERT INTO public.language_stat VALUES (54, 22, 'fdee172356b6f9f25ce145921047bafcb1d2e5ca', false, 'ASP.NET', 103, 1701833901); INSERT INTO public.language_stat VALUES (36, 12, '7b700cce960bebc6fad9e06adb1d76eba7ebc29f', false, 'SCSS', 333352, 1686814498); INSERT INTO public.language_stat VALUES (37, 12, '7b700cce960bebc6fad9e06adb1d76eba7ebc29f', true, 'JavaScript', 3206605, 1686814498); INSERT INTO public.language_stat VALUES (47, 18, '15aab07c22634b263f541cf2a5740d0fbc6e18d7', false, 'HTML', 7404, 1701226321); INSERT INTO public.language_stat VALUES (50, 22, 'fdee172356b6f9f25ce145921047bafcb1d2e5ca', false, 'TSQL', 2778, 1701833901); INSERT INTO public.language_stat VALUES (55, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'Starlark', 602, 1701833954); INSERT INTO public.language_stat VALUES (56, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'Objective-C++', 4441, 1701833954); INSERT INTO public.language_stat VALUES (57, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'C++', 7283, 1701833954); INSERT INTO public.language_stat VALUES (58, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'JavaScript', 775, 1701833954); INSERT INTO public.language_stat VALUES (59, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'Objective-C', 2379, 1701833954); INSERT INTO public.language_stat VALUES (60, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'Ruby', 1610, 1701833954); INSERT INTO public.language_stat VALUES (61, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'Java', 15538, 1701833954); INSERT INTO public.language_stat VALUES (42, 17, '3388156ba70abc12c5d9f57ba31b3273f2bc34ae', false, 'HTML', 141258, 1701226117); INSERT INTO public.language_stat VALUES (62, 23, 'dff222e66d727340377ee089801d61d867450f43', false, 'CMake', 268, 1701833954); INSERT INTO public.language_stat VALUES (63, 23, 'dff222e66d727340377ee089801d61d867450f43', true, 'TypeScript', 19576, 1701833954); INSERT INTO public.language_stat VALUES (70, 25, 'd6c2e64af79bb97a5b57cf8e173d2f2d29f3019b', true, 'C#', 48730, 1703835150); INSERT INTO public.language_stat VALUES (71, 25, 'd6c2e64af79bb97a5b57cf8e173d2f2d29f3019b', false, 'Rich Text Format', 253, 1703835150); INSERT INTO public.language_stat VALUES (64, 24, 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', false, 'JavaScript', 652, 1703824266); INSERT INTO public.language_stat VALUES (65, 24, 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', false, 'Objective-C', 2289, 1703824266); INSERT INTO public.language_stat VALUES (66, 24, 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', false, 'Objective-C++', 806, 1703824266); INSERT INTO public.language_stat VALUES (67, 24, 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', true, 'TypeScript', 271088, 1703824266); INSERT INTO public.language_stat VALUES (68, 24, 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', false, 'Ruby', 2205, 1703824266); INSERT INTO public.language_stat VALUES (69, 24, 'f87e57452ea8eb0c41bbdb0f03c41522f317dfb7', false, 'Kotlin', 2570, 1703824266); INSERT INTO public.language_stat VALUES (75, 26, '814c2834abecae300e8f733df62b8c2d0e7f835f', false, 'SCSS', 9229, 1704425277); INSERT INTO public.language_stat VALUES (76, 26, '814c2834abecae300e8f733df62b8c2d0e7f835f', false, 'CSS', 29606, 1704425277); INSERT INTO public.language_stat VALUES (72, 26, '814c2834abecae300e8f733df62b8c2d0e7f835f', false, 'HTML', 7508, 1704425277); INSERT INTO public.language_stat VALUES (73, 26, '814c2834abecae300e8f733df62b8c2d0e7f835f', true, 'TypeScript', 608155, 1704425277); INSERT INTO public.language_stat VALUES (74, 26, '814c2834abecae300e8f733df62b8c2d0e7f835f', false, 'JavaScript', 516039, 1704425277); INSERT INTO public.language_stat VALUES (77, 27, '67c62e1bb972c3731c1207adab34819d00dda8c6', true, 'JavaScript', 6988714, 1705366279); INSERT INTO public.language_stat VALUES (78, 27, '67c62e1bb972c3731c1207adab34819d00dda8c6', false, 'SCSS', 331196, 1705366279); INSERT INTO public.language_stat VALUES (79, 27, '67c62e1bb972c3731c1207adab34819d00dda8c6', false, 'CSS', 80771, 1705366279); INSERT INTO public.language_stat VALUES (80, 27, '67c62e1bb972c3731c1207adab34819d00dda8c6', false, 'HTML', 2634, 1705366279); INSERT INTO public.language_stat VALUES (81, 28, '94169c8272994c848786971f0f5b1231c24fefd0', false, 'Dockerfile', 1278, 1705366330); INSERT INTO public.language_stat VALUES (82, 28, '94169c8272994c848786971f0f5b1231c24fefd0', false, 'Shell', 2037, 1705366330); INSERT INTO public.language_stat VALUES (83, 28, '94169c8272994c848786971f0f5b1231c24fefd0', false, 'PowerShell', 853, 1705366330); INSERT INTO public.language_stat VALUES (84, 28, '94169c8272994c848786971f0f5b1231c24fefd0', true, 'C#', 1540598, 1705366330); INSERT INTO public.language_stat VALUES (85, 28, '94169c8272994c848786971f0f5b1231c24fefd0', false, 'HTML', 10953, 1705366330); INSERT INTO public.language_stat VALUES (86, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'JavaScript', 340230, 1705366923); INSERT INTO public.language_stat VALUES (87, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'Swift', 101, 1705366923); INSERT INTO public.language_stat VALUES (88, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'Lua', 257, 1705366923); INSERT INTO public.language_stat VALUES (89, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'Objective-C', 4803, 1705366923); INSERT INTO public.language_stat VALUES (90, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'Ruby', 1345, 1705366923); INSERT INTO public.language_stat VALUES (91, 29, 'f48875268f70978021fd327c465baf007dd868b9', true, 'TypeScript', 989771, 1705366923); INSERT INTO public.language_stat VALUES (92, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'Java', 9119, 1705366923); INSERT INTO public.language_stat VALUES (93, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'HTML', 4130, 1705366923); INSERT INTO public.language_stat VALUES (94, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'Starlark', 602, 1705366923); INSERT INTO public.language_stat VALUES (95, 29, 'f48875268f70978021fd327c465baf007dd868b9', false, 'C', 227, 1705366923); -- -- Data for Name: lfs_lock; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: lfs_meta_object; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: login_source; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: milestone; Type: TABLE DATA; Schema: public; Owner: gitea -- -- -- Data for Name: mirror; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.mirror VALUES (4, 20, 28800000000000, true, 1705634913, 1705663713, false, '', 'https://gitlab.com/binh-dinh-f1/webapi.git'); INSERT INTO public.mirror VALUES (1, 5, 28800000000000, true, 1705644510, 1687677422, false, '', 'https://gitlab.com/dongtv2510/quanly-datdai.git'); INSERT INTO public.mirror VALUES (6, 22, 28800000000000, true, 1705624712, 1705653512, false, '', 'https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/backend.git'); INSERT INTO public.mirror VALUES (7, 23, 28800000000000, true, 1705624716, 1705653516, false, '', 'https://gitlab.com/quan-ly-giao-duc-nghe-nghiep/mobile.git'); INSERT INTO public.mirror VALUES (2, 17, 28800000000000, true, 1705634312, 1705663112, false, '', 'https://gitlab.com/binh-dinh-f1/binhdinhf1-website.git'); INSERT INTO public.mirror VALUES (3, 18, 28800000000000, true, 1705634316, 1705663116, false, '', 'https://gitlab.com/binh-dinh-f1/admin.git'); -- -- Data for Name: notice; Type: TABLE DATA; Schema: public; Owner: gitea -- INSERT INTO public.notice VALUES (1, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687678021); INSERT INTO public.notice VALUES (2, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687678619); INSERT INTO public.notice VALUES (3, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687679220); INSERT INTO public.notice VALUES (4, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687679820); INSERT INTO public.notice VALUES (5, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687680421); INSERT INTO public.notice VALUES (6, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687681020); INSERT INTO public.notice VALUES (7, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687681619); INSERT INTO public.notice VALUES (8, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687682219); INSERT INTO public.notice VALUES (9, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687682820); INSERT INTO public.notice VALUES (10, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687683420); INSERT INTO public.notice VALUES (11, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687684020); INSERT INTO public.notice VALUES (12, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687684620); INSERT INTO public.notice VALUES (13, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687685222); INSERT INTO public.notice VALUES (14, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687685820); INSERT INTO public.notice VALUES (15, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687686420); INSERT INTO public.notice VALUES (25, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687692419); INSERT INTO public.notice VALUES (1218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688408219); INSERT INTO public.notice VALUES (1219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688408820); INSERT INTO public.notice VALUES (1221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688410020); INSERT INTO public.notice VALUES (1372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688500620); INSERT INTO public.notice VALUES (1440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688541420); INSERT INTO public.notice VALUES (1441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688542020); INSERT INTO public.notice VALUES (1442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688542619); INSERT INTO public.notice VALUES (1443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688543219); INSERT INTO public.notice VALUES (1444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688543820); INSERT INTO public.notice VALUES (1478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688564220); INSERT INTO public.notice VALUES (1479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688564820); INSERT INTO public.notice VALUES (1482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688566619); INSERT INTO public.notice VALUES (16, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687687019); INSERT INTO public.notice VALUES (17, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687687619); INSERT INTO public.notice VALUES (18, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687688220); INSERT INTO public.notice VALUES (19, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687688820); INSERT INTO public.notice VALUES (20, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687689420); INSERT INTO public.notice VALUES (21, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687690020); INSERT INTO public.notice VALUES (22, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687690620); INSERT INTO public.notice VALUES (23, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687691220); INSERT INTO public.notice VALUES (24, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687691820); INSERT INTO public.notice VALUES (26, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687693020); INSERT INTO public.notice VALUES (27, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687693623); INSERT INTO public.notice VALUES (28, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687694220); INSERT INTO public.notice VALUES (29, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687694821); INSERT INTO public.notice VALUES (30, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687695419); INSERT INTO public.notice VALUES (31, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687696020); INSERT INTO public.notice VALUES (32, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687696620); INSERT INTO public.notice VALUES (33, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687697220); INSERT INTO public.notice VALUES (34, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687697820); INSERT INTO public.notice VALUES (41, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687702020); INSERT INTO public.notice VALUES (42, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687702620); INSERT INTO public.notice VALUES (1220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688409420); INSERT INTO public.notice VALUES (1222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688410620); INSERT INTO public.notice VALUES (1223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688411219); INSERT INTO public.notice VALUES (1224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688411820); INSERT INTO public.notice VALUES (1225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688412420); INSERT INTO public.notice VALUES (1226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688413019); INSERT INTO public.notice VALUES (1227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688413620); INSERT INTO public.notice VALUES (1228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688414219); INSERT INTO public.notice VALUES (35, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687698420); INSERT INTO public.notice VALUES (36, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687699020); INSERT INTO public.notice VALUES (37, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687699620); INSERT INTO public.notice VALUES (38, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687700220); INSERT INTO public.notice VALUES (39, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687700820); INSERT INTO public.notice VALUES (40, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687701421); INSERT INTO public.notice VALUES (43, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687703220); INSERT INTO public.notice VALUES (44, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687703820); INSERT INTO public.notice VALUES (45, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687704420); INSERT INTO public.notice VALUES (46, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687705020); INSERT INTO public.notice VALUES (47, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687705620); INSERT INTO public.notice VALUES (48, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687706220); INSERT INTO public.notice VALUES (49, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687706819); INSERT INTO public.notice VALUES (50, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687707420); INSERT INTO public.notice VALUES (51, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687708021); INSERT INTO public.notice VALUES (52, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687708620); INSERT INTO public.notice VALUES (53, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687709220); INSERT INTO public.notice VALUES (54, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687709820); INSERT INTO public.notice VALUES (55, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687710422); INSERT INTO public.notice VALUES (56, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687711021); INSERT INTO public.notice VALUES (57, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687711620); INSERT INTO public.notice VALUES (58, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687712220); INSERT INTO public.notice VALUES (59, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687712820); INSERT INTO public.notice VALUES (60, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687713419); INSERT INTO public.notice VALUES (61, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687714019); INSERT INTO public.notice VALUES (62, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687714620); INSERT INTO public.notice VALUES (63, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687715220); INSERT INTO public.notice VALUES (64, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687715820); INSERT INTO public.notice VALUES (65, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687716420); INSERT INTO public.notice VALUES (66, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687717019); INSERT INTO public.notice VALUES (67, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687717620); INSERT INTO public.notice VALUES (71, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687720019); INSERT INTO public.notice VALUES (72, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687720620); INSERT INTO public.notice VALUES (73, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687721220); INSERT INTO public.notice VALUES (1229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688414820); INSERT INTO public.notice VALUES (1231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688416019); INSERT INTO public.notice VALUES (1235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688418419); INSERT INTO public.notice VALUES (1236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688419019); INSERT INTO public.notice VALUES (1239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688420822); INSERT INTO public.notice VALUES (1373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688501221); INSERT INTO public.notice VALUES (1374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688501821); INSERT INTO public.notice VALUES (1445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688544420); INSERT INTO public.notice VALUES (68, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687718220); INSERT INTO public.notice VALUES (69, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687718820); INSERT INTO public.notice VALUES (70, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687719420); INSERT INTO public.notice VALUES (74, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687721820); INSERT INTO public.notice VALUES (75, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687722420); INSERT INTO public.notice VALUES (76, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687723019); INSERT INTO public.notice VALUES (77, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687723619); INSERT INTO public.notice VALUES (78, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687724220); INSERT INTO public.notice VALUES (79, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687724820); INSERT INTO public.notice VALUES (80, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687725420); INSERT INTO public.notice VALUES (81, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687726020); INSERT INTO public.notice VALUES (82, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687726619); INSERT INTO public.notice VALUES (83, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687727221); INSERT INTO public.notice VALUES (84, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687727824); INSERT INTO public.notice VALUES (85, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687728420); INSERT INTO public.notice VALUES (86, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687729019); INSERT INTO public.notice VALUES (1230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688415419); INSERT INTO public.notice VALUES (1232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688416619); INSERT INTO public.notice VALUES (1233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688417220); INSERT INTO public.notice VALUES (1234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688417820); INSERT INTO public.notice VALUES (1237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688419619); INSERT INTO public.notice VALUES (1238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688420219); INSERT INTO public.notice VALUES (1246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688425019); INSERT INTO public.notice VALUES (1249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688426820); INSERT INTO public.notice VALUES (1375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688502420); INSERT INTO public.notice VALUES (1376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688503020); INSERT INTO public.notice VALUES (1446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688545019); INSERT INTO public.notice VALUES (1451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688548020); INSERT INTO public.notice VALUES (87, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687729619); INSERT INTO public.notice VALUES (88, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687730220); INSERT INTO public.notice VALUES (89, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687730819); INSERT INTO public.notice VALUES (90, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687731420); INSERT INTO public.notice VALUES (91, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687732020); INSERT INTO public.notice VALUES (92, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687732619); INSERT INTO public.notice VALUES (93, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687733220); INSERT INTO public.notice VALUES (94, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687733820); INSERT INTO public.notice VALUES (95, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687734419); INSERT INTO public.notice VALUES (96, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687735020); INSERT INTO public.notice VALUES (97, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687735620); INSERT INTO public.notice VALUES (98, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687736219); INSERT INTO public.notice VALUES (99, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687736820); INSERT INTO public.notice VALUES (100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687737419); INSERT INTO public.notice VALUES (101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687738019); INSERT INTO public.notice VALUES (102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687738620); INSERT INTO public.notice VALUES (103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687739220); INSERT INTO public.notice VALUES (104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687739819); INSERT INTO public.notice VALUES (105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687740420); INSERT INTO public.notice VALUES (106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687741021); INSERT INTO public.notice VALUES (107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687741620); INSERT INTO public.notice VALUES (108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687742220); INSERT INTO public.notice VALUES (109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687742821); INSERT INTO public.notice VALUES (110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687743420); INSERT INTO public.notice VALUES (111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687744019); INSERT INTO public.notice VALUES (112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687744619); INSERT INTO public.notice VALUES (113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687745219); INSERT INTO public.notice VALUES (114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687745820); INSERT INTO public.notice VALUES (115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687746420); INSERT INTO public.notice VALUES (116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687747021); INSERT INTO public.notice VALUES (117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687747620); INSERT INTO public.notice VALUES (118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687748220); INSERT INTO public.notice VALUES (119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687748821); INSERT INTO public.notice VALUES (135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687758419); INSERT INTO public.notice VALUES (138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687760219); INSERT INTO public.notice VALUES (1240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688421420); INSERT INTO public.notice VALUES (1241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688422020); INSERT INTO public.notice VALUES (1377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688503620); INSERT INTO public.notice VALUES (1378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688504220); INSERT INTO public.notice VALUES (1381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688506020); INSERT INTO public.notice VALUES (1382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688506619); INSERT INTO public.notice VALUES (1383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688507219); INSERT INTO public.notice VALUES (120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687749420); INSERT INTO public.notice VALUES (121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687750020); INSERT INTO public.notice VALUES (122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687750620); INSERT INTO public.notice VALUES (123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687751221); INSERT INTO public.notice VALUES (124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687751820); INSERT INTO public.notice VALUES (125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687752420); INSERT INTO public.notice VALUES (126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687753020); INSERT INTO public.notice VALUES (127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687753627); INSERT INTO public.notice VALUES (128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687754221); INSERT INTO public.notice VALUES (129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687754821); INSERT INTO public.notice VALUES (130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687755420); INSERT INTO public.notice VALUES (131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687756022); INSERT INTO public.notice VALUES (132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687756620); INSERT INTO public.notice VALUES (133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687757220); INSERT INTO public.notice VALUES (134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687757820); INSERT INTO public.notice VALUES (136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687759021); INSERT INTO public.notice VALUES (137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687759619); INSERT INTO public.notice VALUES (139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687760820); INSERT INTO public.notice VALUES (140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687761420); INSERT INTO public.notice VALUES (141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687762020); INSERT INTO public.notice VALUES (142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687762623); INSERT INTO public.notice VALUES (143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687763224); INSERT INTO public.notice VALUES (144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687763820); INSERT INTO public.notice VALUES (145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687764420); INSERT INTO public.notice VALUES (146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687765020); INSERT INTO public.notice VALUES (147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687765620); INSERT INTO public.notice VALUES (148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687766220); INSERT INTO public.notice VALUES (149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687766820); INSERT INTO public.notice VALUES (150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687767420); INSERT INTO public.notice VALUES (151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687768021); INSERT INTO public.notice VALUES (152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687768620); INSERT INTO public.notice VALUES (153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687769221); INSERT INTO public.notice VALUES (154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687769820); INSERT INTO public.notice VALUES (155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687770420); INSERT INTO public.notice VALUES (156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687771021); INSERT INTO public.notice VALUES (157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687771619); INSERT INTO public.notice VALUES (158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687772220); INSERT INTO public.notice VALUES (159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687772821); INSERT INTO public.notice VALUES (160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687773419); INSERT INTO public.notice VALUES (161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687774021); INSERT INTO public.notice VALUES (162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687774621); INSERT INTO public.notice VALUES (163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687775219); INSERT INTO public.notice VALUES (164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687775820); INSERT INTO public.notice VALUES (165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687776420); INSERT INTO public.notice VALUES (166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687777020); INSERT INTO public.notice VALUES (167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687777620); INSERT INTO public.notice VALUES (168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687778220); INSERT INTO public.notice VALUES (169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687778820); INSERT INTO public.notice VALUES (170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687779419); INSERT INTO public.notice VALUES (171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687780019); INSERT INTO public.notice VALUES (172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687780619); INSERT INTO public.notice VALUES (173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687781220); INSERT INTO public.notice VALUES (174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687781820); INSERT INTO public.notice VALUES (175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687782420); INSERT INTO public.notice VALUES (176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687783019); INSERT INTO public.notice VALUES (177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687783621); INSERT INTO public.notice VALUES (178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687784220); INSERT INTO public.notice VALUES (179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687784820); INSERT INTO public.notice VALUES (180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687785419); INSERT INTO public.notice VALUES (181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687786020); INSERT INTO public.notice VALUES (182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687786620); INSERT INTO public.notice VALUES (183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687787220); INSERT INTO public.notice VALUES (184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687787820); INSERT INTO public.notice VALUES (201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687798019); INSERT INTO public.notice VALUES (202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687798620); INSERT INTO public.notice VALUES (1242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688422620); INSERT INTO public.notice VALUES (1380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688505420); INSERT INTO public.notice VALUES (1389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688510819); INSERT INTO public.notice VALUES (1392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688512619); INSERT INTO public.notice VALUES (1452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688548620); INSERT INTO public.notice VALUES (185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687788421); INSERT INTO public.notice VALUES (186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687789020); INSERT INTO public.notice VALUES (187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687789620); INSERT INTO public.notice VALUES (188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687790220); INSERT INTO public.notice VALUES (189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687790820); INSERT INTO public.notice VALUES (190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687791420); INSERT INTO public.notice VALUES (191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687792020); INSERT INTO public.notice VALUES (192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687792620); INSERT INTO public.notice VALUES (193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687793220); INSERT INTO public.notice VALUES (194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687793820); INSERT INTO public.notice VALUES (195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687794421); INSERT INTO public.notice VALUES (196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687795021); INSERT INTO public.notice VALUES (197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687795620); INSERT INTO public.notice VALUES (198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687796220); INSERT INTO public.notice VALUES (199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687796820); INSERT INTO public.notice VALUES (200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687797420); INSERT INTO public.notice VALUES (203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687799220); INSERT INTO public.notice VALUES (204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687799820); INSERT INTO public.notice VALUES (205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687800420); INSERT INTO public.notice VALUES (206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687801021); INSERT INTO public.notice VALUES (207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687801620); INSERT INTO public.notice VALUES (208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687802220); INSERT INTO public.notice VALUES (209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687802820); INSERT INTO public.notice VALUES (210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687803419); INSERT INTO public.notice VALUES (211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687804020); INSERT INTO public.notice VALUES (212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687804620); INSERT INTO public.notice VALUES (213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687805220); INSERT INTO public.notice VALUES (214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687805820); INSERT INTO public.notice VALUES (215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687806419); INSERT INTO public.notice VALUES (216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687807020); INSERT INTO public.notice VALUES (217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687807620); INSERT INTO public.notice VALUES (219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687808820); INSERT INTO public.notice VALUES (1243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688423220); INSERT INTO public.notice VALUES (1244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688423820); INSERT INTO public.notice VALUES (1245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688424419); INSERT INTO public.notice VALUES (1247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688425621); INSERT INTO public.notice VALUES (1248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688426219); INSERT INTO public.notice VALUES (1384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688507820); INSERT INTO public.notice VALUES (1385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688508419); INSERT INTO public.notice VALUES (1454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688549820); INSERT INTO public.notice VALUES (1455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688550419); INSERT INTO public.notice VALUES (1460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688553420); INSERT INTO public.notice VALUES (218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687808220); INSERT INTO public.notice VALUES (220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687809420); INSERT INTO public.notice VALUES (221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687810020); INSERT INTO public.notice VALUES (222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687810620); INSERT INTO public.notice VALUES (223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687811219); INSERT INTO public.notice VALUES (224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687811820); INSERT INTO public.notice VALUES (225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687812420); INSERT INTO public.notice VALUES (226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687813019); INSERT INTO public.notice VALUES (227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687813620); INSERT INTO public.notice VALUES (228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687814220); INSERT INTO public.notice VALUES (229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687814820); INSERT INTO public.notice VALUES (230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687815420); INSERT INTO public.notice VALUES (231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687816020); INSERT INTO public.notice VALUES (232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687816621); INSERT INTO public.notice VALUES (233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687817220); INSERT INTO public.notice VALUES (1250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688427420); INSERT INTO public.notice VALUES (1251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688428020); INSERT INTO public.notice VALUES (1252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688428619); INSERT INTO public.notice VALUES (1253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688429220); INSERT INTO public.notice VALUES (1386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688509020); INSERT INTO public.notice VALUES (1387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688509619); INSERT INTO public.notice VALUES (1388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688510219); INSERT INTO public.notice VALUES (1390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688511420); INSERT INTO public.notice VALUES (1391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688512019); INSERT INTO public.notice VALUES (1394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688513820); INSERT INTO public.notice VALUES (1396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688515020); INSERT INTO public.notice VALUES (1457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688551620); INSERT INTO public.notice VALUES (1458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688552220); INSERT INTO public.notice VALUES (234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687817820); INSERT INTO public.notice VALUES (235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687818420); INSERT INTO public.notice VALUES (236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687819020); INSERT INTO public.notice VALUES (237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687819620); INSERT INTO public.notice VALUES (238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687820221); INSERT INTO public.notice VALUES (239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687820819); INSERT INTO public.notice VALUES (240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687821420); INSERT INTO public.notice VALUES (241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687822020); INSERT INTO public.notice VALUES (242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687822620); INSERT INTO public.notice VALUES (243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687823220); INSERT INTO public.notice VALUES (244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687823820); INSERT INTO public.notice VALUES (245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687824420); INSERT INTO public.notice VALUES (246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687825020); INSERT INTO public.notice VALUES (247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687825620); INSERT INTO public.notice VALUES (248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687826220); INSERT INTO public.notice VALUES (249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687826820); INSERT INTO public.notice VALUES (250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687827420); INSERT INTO public.notice VALUES (259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687832819); INSERT INTO public.notice VALUES (260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687833420); INSERT INTO public.notice VALUES (1254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688429820); INSERT INTO public.notice VALUES (1255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688430419); INSERT INTO public.notice VALUES (1256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688431020); INSERT INTO public.notice VALUES (1261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688434019); INSERT INTO public.notice VALUES (1269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688438820); INSERT INTO public.notice VALUES (1270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688439419); INSERT INTO public.notice VALUES (1271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688440019); INSERT INTO public.notice VALUES (1276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688443021); INSERT INTO public.notice VALUES (1277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688443619); INSERT INTO public.notice VALUES (251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687828020); INSERT INTO public.notice VALUES (252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687828620); INSERT INTO public.notice VALUES (253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687829219); INSERT INTO public.notice VALUES (254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687829820); INSERT INTO public.notice VALUES (255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687830420); INSERT INTO public.notice VALUES (256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687831020); INSERT INTO public.notice VALUES (257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687831620); INSERT INTO public.notice VALUES (258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687832219); INSERT INTO public.notice VALUES (261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687834020); INSERT INTO public.notice VALUES (262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687834621); INSERT INTO public.notice VALUES (263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687835219); INSERT INTO public.notice VALUES (264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687835819); INSERT INTO public.notice VALUES (265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687836419); INSERT INTO public.notice VALUES (266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687837020); INSERT INTO public.notice VALUES (267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687837620); INSERT INTO public.notice VALUES (268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687838220); INSERT INTO public.notice VALUES (269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687838819); INSERT INTO public.notice VALUES (270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687839419); INSERT INTO public.notice VALUES (281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687846020); INSERT INTO public.notice VALUES (283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687847221); INSERT INTO public.notice VALUES (1257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688431619); INSERT INTO public.notice VALUES (1258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688432219); INSERT INTO public.notice VALUES (1259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688432819); INSERT INTO public.notice VALUES (1260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688433419); INSERT INTO public.notice VALUES (1393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688513221); INSERT INTO public.notice VALUES (1395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688514419); INSERT INTO public.notice VALUES (1397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688515620); INSERT INTO public.notice VALUES (1398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688516220); INSERT INTO public.notice VALUES (271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687840020); INSERT INTO public.notice VALUES (272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687840620); INSERT INTO public.notice VALUES (273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687841221); INSERT INTO public.notice VALUES (274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687841821); INSERT INTO public.notice VALUES (275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687842419); INSERT INTO public.notice VALUES (276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687843020); INSERT INTO public.notice VALUES (277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687843620); INSERT INTO public.notice VALUES (278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687844219); INSERT INTO public.notice VALUES (279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687844820); INSERT INTO public.notice VALUES (280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687845420); INSERT INTO public.notice VALUES (282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687846620); INSERT INTO public.notice VALUES (284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687847820); INSERT INTO public.notice VALUES (285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687848419); INSERT INTO public.notice VALUES (286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687849024); INSERT INTO public.notice VALUES (287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687849621); INSERT INTO public.notice VALUES (288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687850220); INSERT INTO public.notice VALUES (289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687850820); INSERT INTO public.notice VALUES (292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687852620); INSERT INTO public.notice VALUES (1262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688434620); INSERT INTO public.notice VALUES (1263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688435220); INSERT INTO public.notice VALUES (1264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688435819); INSERT INTO public.notice VALUES (1265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688436420); INSERT INTO public.notice VALUES (1266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688437019); INSERT INTO public.notice VALUES (1267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688437619); INSERT INTO public.notice VALUES (1268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688438220); INSERT INTO public.notice VALUES (1272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688440621); INSERT INTO public.notice VALUES (1273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688441220); INSERT INTO public.notice VALUES (1274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688441820); INSERT INTO public.notice VALUES (290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687851420); INSERT INTO public.notice VALUES (291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687852024); INSERT INTO public.notice VALUES (293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687853220); INSERT INTO public.notice VALUES (294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687853819); INSERT INTO public.notice VALUES (295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687854423); INSERT INTO public.notice VALUES (296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687855019); INSERT INTO public.notice VALUES (297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687855621); INSERT INTO public.notice VALUES (298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687856219); INSERT INTO public.notice VALUES (299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687856821); INSERT INTO public.notice VALUES (300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687857420); INSERT INTO public.notice VALUES (301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687858020); INSERT INTO public.notice VALUES (302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687858621); INSERT INTO public.notice VALUES (303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687859220); INSERT INTO public.notice VALUES (304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687859820); INSERT INTO public.notice VALUES (305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687860420); INSERT INTO public.notice VALUES (306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687861020); INSERT INTO public.notice VALUES (307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687861620); INSERT INTO public.notice VALUES (308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687862220); INSERT INTO public.notice VALUES (309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687862820); INSERT INTO public.notice VALUES (310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687863420); INSERT INTO public.notice VALUES (311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687864020); INSERT INTO public.notice VALUES (312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687864620); INSERT INTO public.notice VALUES (313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687865220); INSERT INTO public.notice VALUES (314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687865820); INSERT INTO public.notice VALUES (315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687866420); INSERT INTO public.notice VALUES (316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687867020); INSERT INTO public.notice VALUES (317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687867621); INSERT INTO public.notice VALUES (318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687868219); INSERT INTO public.notice VALUES (319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687868820); INSERT INTO public.notice VALUES (320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687869420); INSERT INTO public.notice VALUES (321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687870020); INSERT INTO public.notice VALUES (322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687870620); INSERT INTO public.notice VALUES (323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687871221); INSERT INTO public.notice VALUES (324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687871820); INSERT INTO public.notice VALUES (325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687872420); INSERT INTO public.notice VALUES (326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687873020); INSERT INTO public.notice VALUES (327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687873620); INSERT INTO public.notice VALUES (328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687874219); INSERT INTO public.notice VALUES (329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687874820); INSERT INTO public.notice VALUES (330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687875419); INSERT INTO public.notice VALUES (331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687876021); INSERT INTO public.notice VALUES (332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687876621); INSERT INTO public.notice VALUES (333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687877220); INSERT INTO public.notice VALUES (334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687877821); INSERT INTO public.notice VALUES (337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687879619); INSERT INTO public.notice VALUES (1275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688442419); INSERT INTO public.notice VALUES (1279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688444819); INSERT INTO public.notice VALUES (1280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688445420); INSERT INTO public.notice VALUES (1281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688446020); INSERT INTO public.notice VALUES (1286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688449020); INSERT INTO public.notice VALUES (1287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688449620); INSERT INTO public.notice VALUES (1288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688450221); INSERT INTO public.notice VALUES (1289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688450819); INSERT INTO public.notice VALUES (1290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688451420); INSERT INTO public.notice VALUES (1292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688452621); INSERT INTO public.notice VALUES (1297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688455619); INSERT INTO public.notice VALUES (335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687878421); INSERT INTO public.notice VALUES (336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687879020); INSERT INTO public.notice VALUES (338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687880221); INSERT INTO public.notice VALUES (339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687880820); INSERT INTO public.notice VALUES (340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687881420); INSERT INTO public.notice VALUES (341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687882019); INSERT INTO public.notice VALUES (342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687882620); INSERT INTO public.notice VALUES (343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687883219); INSERT INTO public.notice VALUES (344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687883820); INSERT INTO public.notice VALUES (345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687884420); INSERT INTO public.notice VALUES (346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687885020); INSERT INTO public.notice VALUES (347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687885619); INSERT INTO public.notice VALUES (348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687886220); INSERT INTO public.notice VALUES (349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687886819); INSERT INTO public.notice VALUES (350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687887421); INSERT INTO public.notice VALUES (351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687888021); INSERT INTO public.notice VALUES (352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687888620); INSERT INTO public.notice VALUES (353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687889220); INSERT INTO public.notice VALUES (357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687891619); INSERT INTO public.notice VALUES (358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687892219); INSERT INTO public.notice VALUES (1278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688444219); INSERT INTO public.notice VALUES (1282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688446620); INSERT INTO public.notice VALUES (1283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688447219); INSERT INTO public.notice VALUES (1284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688447820); INSERT INTO public.notice VALUES (1285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688448420); INSERT INTO public.notice VALUES (1291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688452020); INSERT INTO public.notice VALUES (1293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688453220); INSERT INTO public.notice VALUES (1294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688453819); INSERT INTO public.notice VALUES (354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687889819); INSERT INTO public.notice VALUES (355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687890419); INSERT INTO public.notice VALUES (356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687891019); INSERT INTO public.notice VALUES (359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687892820); INSERT INTO public.notice VALUES (360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687893419); INSERT INTO public.notice VALUES (361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687894020); INSERT INTO public.notice VALUES (362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687894620); INSERT INTO public.notice VALUES (363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687895220); INSERT INTO public.notice VALUES (364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687895820); INSERT INTO public.notice VALUES (365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687896423); INSERT INTO public.notice VALUES (366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687897020); INSERT INTO public.notice VALUES (367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687897620); INSERT INTO public.notice VALUES (368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687898219); INSERT INTO public.notice VALUES (369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687898820); INSERT INTO public.notice VALUES (370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687899420); INSERT INTO public.notice VALUES (378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687904219); INSERT INTO public.notice VALUES (386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687909021); INSERT INTO public.notice VALUES (1295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688454419); INSERT INTO public.notice VALUES (1399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688516819); INSERT INTO public.notice VALUES (1400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688517420); INSERT INTO public.notice VALUES (1401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688518019); INSERT INTO public.notice VALUES (1402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688518619); INSERT INTO public.notice VALUES (1403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688519219); INSERT INTO public.notice VALUES (1404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688519819); INSERT INTO public.notice VALUES (1405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688520420); INSERT INTO public.notice VALUES (1406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688521020); INSERT INTO public.notice VALUES (1411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688524020); INSERT INTO public.notice VALUES (1412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688524620); INSERT INTO public.notice VALUES (371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687900020); INSERT INTO public.notice VALUES (372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687900619); INSERT INTO public.notice VALUES (373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687901220); INSERT INTO public.notice VALUES (374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687901819); INSERT INTO public.notice VALUES (375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687902421); INSERT INTO public.notice VALUES (376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687903020); INSERT INTO public.notice VALUES (377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687903620); INSERT INTO public.notice VALUES (379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687904820); INSERT INTO public.notice VALUES (380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687905419); INSERT INTO public.notice VALUES (381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687906021); INSERT INTO public.notice VALUES (382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687906620); INSERT INTO public.notice VALUES (383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687907220); INSERT INTO public.notice VALUES (384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687907820); INSERT INTO public.notice VALUES (385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687908419); INSERT INTO public.notice VALUES (387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687909619); INSERT INTO public.notice VALUES (388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687910220); INSERT INTO public.notice VALUES (389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687910820); INSERT INTO public.notice VALUES (390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687911421); INSERT INTO public.notice VALUES (391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687912020); INSERT INTO public.notice VALUES (392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687912620); INSERT INTO public.notice VALUES (393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687913220); INSERT INTO public.notice VALUES (394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687913820); INSERT INTO public.notice VALUES (395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687914419); INSERT INTO public.notice VALUES (396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687915020); INSERT INTO public.notice VALUES (397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687915619); INSERT INTO public.notice VALUES (398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687916220); INSERT INTO public.notice VALUES (399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687916819); INSERT INTO public.notice VALUES (400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687917420); INSERT INTO public.notice VALUES (401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687918021); INSERT INTO public.notice VALUES (402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687918621); INSERT INTO public.notice VALUES (403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687919220); INSERT INTO public.notice VALUES (404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687919823); INSERT INTO public.notice VALUES (405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687920420); INSERT INTO public.notice VALUES (406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687921019); INSERT INTO public.notice VALUES (409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687922821); INSERT INTO public.notice VALUES (1296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688455021); INSERT INTO public.notice VALUES (1303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688459220); INSERT INTO public.notice VALUES (1304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688459820); INSERT INTO public.notice VALUES (1313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688465219); INSERT INTO public.notice VALUES (1314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688465819); INSERT INTO public.notice VALUES (1315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688466421); INSERT INTO public.notice VALUES (1316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688467019); INSERT INTO public.notice VALUES (407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687921619); INSERT INTO public.notice VALUES (408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687922220); INSERT INTO public.notice VALUES (410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687923420); INSERT INTO public.notice VALUES (411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687924020); INSERT INTO public.notice VALUES (412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687924620); INSERT INTO public.notice VALUES (413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687925220); INSERT INTO public.notice VALUES (414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687925820); INSERT INTO public.notice VALUES (415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687926420); INSERT INTO public.notice VALUES (416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687927020); INSERT INTO public.notice VALUES (417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687927620); INSERT INTO public.notice VALUES (418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687928224); INSERT INTO public.notice VALUES (419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687928820); INSERT INTO public.notice VALUES (420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687929420); INSERT INTO public.notice VALUES (421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687930020); INSERT INTO public.notice VALUES (422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687930619); INSERT INTO public.notice VALUES (423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687931220); INSERT INTO public.notice VALUES (424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687931821); INSERT INTO public.notice VALUES (425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687932420); INSERT INTO public.notice VALUES (426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687933020); INSERT INTO public.notice VALUES (427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687933621); INSERT INTO public.notice VALUES (428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687934220); INSERT INTO public.notice VALUES (429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687934822); INSERT INTO public.notice VALUES (430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687935420); INSERT INTO public.notice VALUES (431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687936020); INSERT INTO public.notice VALUES (432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687936619); INSERT INTO public.notice VALUES (433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687937220); INSERT INTO public.notice VALUES (434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687937819); INSERT INTO public.notice VALUES (435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687938423); INSERT INTO public.notice VALUES (436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687939020); INSERT INTO public.notice VALUES (437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687939619); INSERT INTO public.notice VALUES (1298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688456220); INSERT INTO public.notice VALUES (1299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688456820); INSERT INTO public.notice VALUES (1300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688457421); INSERT INTO public.notice VALUES (1407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688521621); INSERT INTO public.notice VALUES (1408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688522220); INSERT INTO public.notice VALUES (1409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688522821); INSERT INTO public.notice VALUES (1410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688523419); INSERT INTO public.notice VALUES (1413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688525221); INSERT INTO public.notice VALUES (1459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688552819); INSERT INTO public.notice VALUES (1481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688566020); INSERT INTO public.notice VALUES (1484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688567820); INSERT INTO public.notice VALUES (1485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688568423); INSERT INTO public.notice VALUES (438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687940220); INSERT INTO public.notice VALUES (439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687940819); INSERT INTO public.notice VALUES (440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687941419); INSERT INTO public.notice VALUES (441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687942020); INSERT INTO public.notice VALUES (442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687942619); INSERT INTO public.notice VALUES (443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687943221); INSERT INTO public.notice VALUES (444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687943819); INSERT INTO public.notice VALUES (445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687944420); INSERT INTO public.notice VALUES (446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687945021); INSERT INTO public.notice VALUES (447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687945620); INSERT INTO public.notice VALUES (448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687946221); INSERT INTO public.notice VALUES (449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687946819); INSERT INTO public.notice VALUES (450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687947420); INSERT INTO public.notice VALUES (451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687948020); INSERT INTO public.notice VALUES (452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687948620); INSERT INTO public.notice VALUES (453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687949220); INSERT INTO public.notice VALUES (454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687949819); INSERT INTO public.notice VALUES (461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687954021); INSERT INTO public.notice VALUES (462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687954619); INSERT INTO public.notice VALUES (463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687955220); INSERT INTO public.notice VALUES (464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687955820); INSERT INTO public.notice VALUES (465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687956421); INSERT INTO public.notice VALUES (466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687957020); INSERT INTO public.notice VALUES (467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687957619); INSERT INTO public.notice VALUES (468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687958221); INSERT INTO public.notice VALUES (469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687958820); INSERT INTO public.notice VALUES (470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687959419); INSERT INTO public.notice VALUES (472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687960620); INSERT INTO public.notice VALUES (455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687950420); INSERT INTO public.notice VALUES (456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687951023); INSERT INTO public.notice VALUES (457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687951619); INSERT INTO public.notice VALUES (458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687952220); INSERT INTO public.notice VALUES (459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687952819); INSERT INTO public.notice VALUES (460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687953420); INSERT INTO public.notice VALUES (471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687960020); INSERT INTO public.notice VALUES (478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687964220); INSERT INTO public.notice VALUES (480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687965420); INSERT INTO public.notice VALUES (1301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688458019); INSERT INTO public.notice VALUES (1302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688458619); INSERT INTO public.notice VALUES (1414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688525821); INSERT INTO public.notice VALUES (1461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688554020); INSERT INTO public.notice VALUES (1462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688554620); INSERT INTO public.notice VALUES (473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687961219); INSERT INTO public.notice VALUES (474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687961821); INSERT INTO public.notice VALUES (475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687962419); INSERT INTO public.notice VALUES (476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687963019); INSERT INTO public.notice VALUES (477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687963619); INSERT INTO public.notice VALUES (479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687964820); INSERT INTO public.notice VALUES (481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687966019); INSERT INTO public.notice VALUES (482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687966620); INSERT INTO public.notice VALUES (483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687967223); INSERT INTO public.notice VALUES (484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687967820); INSERT INTO public.notice VALUES (485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687968419); INSERT INTO public.notice VALUES (486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687969020); INSERT INTO public.notice VALUES (487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687969619); INSERT INTO public.notice VALUES (488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687970221); INSERT INTO public.notice VALUES (489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687970820); INSERT INTO public.notice VALUES (490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687971420); INSERT INTO public.notice VALUES (491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687972020); INSERT INTO public.notice VALUES (492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687972621); INSERT INTO public.notice VALUES (498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687976220); INSERT INTO public.notice VALUES (499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687976820); INSERT INTO public.notice VALUES (500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687977419); INSERT INTO public.notice VALUES (501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687978020); INSERT INTO public.notice VALUES (502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687978620); INSERT INTO public.notice VALUES (503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687979220); INSERT INTO public.notice VALUES (504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687979820); INSERT INTO public.notice VALUES (505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687980420); INSERT INTO public.notice VALUES (506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687981020); INSERT INTO public.notice VALUES (507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687981621); INSERT INTO public.notice VALUES (493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687973219); INSERT INTO public.notice VALUES (494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687973820); INSERT INTO public.notice VALUES (495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687974421); INSERT INTO public.notice VALUES (496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687975020); INSERT INTO public.notice VALUES (497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687975619); INSERT INTO public.notice VALUES (521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687990020); INSERT INTO public.notice VALUES (522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687990619); INSERT INTO public.notice VALUES (1305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688460420); INSERT INTO public.notice VALUES (1415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688526420); INSERT INTO public.notice VALUES (1416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688527023); INSERT INTO public.notice VALUES (1421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688530019); INSERT INTO public.notice VALUES (1422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688530620); INSERT INTO public.notice VALUES (1423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688531221); INSERT INTO public.notice VALUES (1424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688531820); INSERT INTO public.notice VALUES (508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687982220); INSERT INTO public.notice VALUES (509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687982820); INSERT INTO public.notice VALUES (510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687983420); INSERT INTO public.notice VALUES (511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687984019); INSERT INTO public.notice VALUES (512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687984619); INSERT INTO public.notice VALUES (513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687985220); INSERT INTO public.notice VALUES (514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687985819); INSERT INTO public.notice VALUES (515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687986419); INSERT INTO public.notice VALUES (516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687987020); INSERT INTO public.notice VALUES (517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687987620); INSERT INTO public.notice VALUES (518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687988219); INSERT INTO public.notice VALUES (519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687988820); INSERT INTO public.notice VALUES (520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687989421); INSERT INTO public.notice VALUES (523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687991220); INSERT INTO public.notice VALUES (524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687991820); INSERT INTO public.notice VALUES (525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687992419); INSERT INTO public.notice VALUES (526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687993020); INSERT INTO public.notice VALUES (527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687993620); INSERT INTO public.notice VALUES (528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687994219); INSERT INTO public.notice VALUES (529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687994820); INSERT INTO public.notice VALUES (530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687995420); INSERT INTO public.notice VALUES (531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687996020); INSERT INTO public.notice VALUES (532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687996620); INSERT INTO public.notice VALUES (533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687997220); INSERT INTO public.notice VALUES (534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687997820); INSERT INTO public.notice VALUES (535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687998420); INSERT INTO public.notice VALUES (536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687999019); INSERT INTO public.notice VALUES (537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1687999619); INSERT INTO public.notice VALUES (538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688000219); INSERT INTO public.notice VALUES (539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688000819); INSERT INTO public.notice VALUES (540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688001419); INSERT INTO public.notice VALUES (541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688002019); INSERT INTO public.notice VALUES (542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688002620); INSERT INTO public.notice VALUES (543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688003220); INSERT INTO public.notice VALUES (550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688007420); INSERT INTO public.notice VALUES (562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688014620); INSERT INTO public.notice VALUES (566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688017020); INSERT INTO public.notice VALUES (567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688017620); INSERT INTO public.notice VALUES (568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688018220); INSERT INTO public.notice VALUES (569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688018821); INSERT INTO public.notice VALUES (570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688019420); INSERT INTO public.notice VALUES (571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688020019); INSERT INTO public.notice VALUES (544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688003820); INSERT INTO public.notice VALUES (545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688004421); INSERT INTO public.notice VALUES (546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688005019); INSERT INTO public.notice VALUES (547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688005620); INSERT INTO public.notice VALUES (548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688006220); INSERT INTO public.notice VALUES (549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688006825); INSERT INTO public.notice VALUES (551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688008020); INSERT INTO public.notice VALUES (552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688008620); INSERT INTO public.notice VALUES (553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688009220); INSERT INTO public.notice VALUES (554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688009819); INSERT INTO public.notice VALUES (555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688010420); INSERT INTO public.notice VALUES (556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688011020); INSERT INTO public.notice VALUES (557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688011619); INSERT INTO public.notice VALUES (558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688012220); INSERT INTO public.notice VALUES (559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688012820); INSERT INTO public.notice VALUES (560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688013424); INSERT INTO public.notice VALUES (561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688014019); INSERT INTO public.notice VALUES (563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688015221); INSERT INTO public.notice VALUES (564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688015819); INSERT INTO public.notice VALUES (565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688016420); INSERT INTO public.notice VALUES (572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688020619); INSERT INTO public.notice VALUES (573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688021224); INSERT INTO public.notice VALUES (574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688021820); INSERT INTO public.notice VALUES (575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688022420); INSERT INTO public.notice VALUES (576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688023020); INSERT INTO public.notice VALUES (1306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688461020); INSERT INTO public.notice VALUES (1307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688461619); INSERT INTO public.notice VALUES (1308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688462220); INSERT INTO public.notice VALUES (577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688023619); INSERT INTO public.notice VALUES (578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688024219); INSERT INTO public.notice VALUES (579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688024820); INSERT INTO public.notice VALUES (580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688025420); INSERT INTO public.notice VALUES (581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688026020); INSERT INTO public.notice VALUES (582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688026619); INSERT INTO public.notice VALUES (583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688027220); INSERT INTO public.notice VALUES (584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688027819); INSERT INTO public.notice VALUES (585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688028420); INSERT INTO public.notice VALUES (586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688029020); INSERT INTO public.notice VALUES (587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688029620); INSERT INTO public.notice VALUES (588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688030220); INSERT INTO public.notice VALUES (589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688030819); INSERT INTO public.notice VALUES (590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688031420); INSERT INTO public.notice VALUES (591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688032020); INSERT INTO public.notice VALUES (592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688032619); INSERT INTO public.notice VALUES (593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688033219); INSERT INTO public.notice VALUES (594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688033819); INSERT INTO public.notice VALUES (595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688034419); INSERT INTO public.notice VALUES (596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688035019); INSERT INTO public.notice VALUES (597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688035619); INSERT INTO public.notice VALUES (598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688036221); INSERT INTO public.notice VALUES (604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688039820); INSERT INTO public.notice VALUES (605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688040419); INSERT INTO public.notice VALUES (606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688041020); INSERT INTO public.notice VALUES (607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688041619); INSERT INTO public.notice VALUES (608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688042219); INSERT INTO public.notice VALUES (609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688042819); INSERT INTO public.notice VALUES (599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688036821); INSERT INTO public.notice VALUES (600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688037420); INSERT INTO public.notice VALUES (601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688038020); INSERT INTO public.notice VALUES (602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688038620); INSERT INTO public.notice VALUES (603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688039223); INSERT INTO public.notice VALUES (610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688043420); INSERT INTO public.notice VALUES (611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688044019); INSERT INTO public.notice VALUES (612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688044620); INSERT INTO public.notice VALUES (613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688045219); INSERT INTO public.notice VALUES (614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688045819); INSERT INTO public.notice VALUES (615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688046420); INSERT INTO public.notice VALUES (616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688047020); INSERT INTO public.notice VALUES (617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688047620); INSERT INTO public.notice VALUES (618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688048220); INSERT INTO public.notice VALUES (619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688048820); INSERT INTO public.notice VALUES (623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688051220); INSERT INTO public.notice VALUES (624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688051819); INSERT INTO public.notice VALUES (625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688052419); INSERT INTO public.notice VALUES (626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688053020); INSERT INTO public.notice VALUES (627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688053619); INSERT INTO public.notice VALUES (1309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688462821); INSERT INTO public.notice VALUES (1310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688463419); INSERT INTO public.notice VALUES (1417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688527619); INSERT INTO public.notice VALUES (1418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688528221); INSERT INTO public.notice VALUES (1419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688528819); INSERT INTO public.notice VALUES (1420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688529420); INSERT INTO public.notice VALUES (1425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688532420); INSERT INTO public.notice VALUES (1463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688555220); INSERT INTO public.notice VALUES (620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688049420); INSERT INTO public.notice VALUES (621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688050020); INSERT INTO public.notice VALUES (622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688050620); INSERT INTO public.notice VALUES (628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688054220); INSERT INTO public.notice VALUES (629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688054821); INSERT INTO public.notice VALUES (630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688055421); INSERT INTO public.notice VALUES (631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688056020); INSERT INTO public.notice VALUES (632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688056620); INSERT INTO public.notice VALUES (633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688057221); INSERT INTO public.notice VALUES (634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688057820); INSERT INTO public.notice VALUES (635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688058420); INSERT INTO public.notice VALUES (636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688059020); INSERT INTO public.notice VALUES (637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688059621); INSERT INTO public.notice VALUES (638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688060220); INSERT INTO public.notice VALUES (639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688060820); INSERT INTO public.notice VALUES (640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688061420); INSERT INTO public.notice VALUES (641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688062020); INSERT INTO public.notice VALUES (642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688062620); INSERT INTO public.notice VALUES (643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688063219); INSERT INTO public.notice VALUES (644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688063820); INSERT INTO public.notice VALUES (645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688064419); INSERT INTO public.notice VALUES (646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688065019); INSERT INTO public.notice VALUES (649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688066820); INSERT INTO public.notice VALUES (656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688071019); INSERT INTO public.notice VALUES (657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688071619); INSERT INTO public.notice VALUES (658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688072219); INSERT INTO public.notice VALUES (659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688072820); INSERT INTO public.notice VALUES (660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688073420); INSERT INTO public.notice VALUES (647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688065620); INSERT INTO public.notice VALUES (648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688066220); INSERT INTO public.notice VALUES (650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688067420); INSERT INTO public.notice VALUES (651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688068020); INSERT INTO public.notice VALUES (652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688068619); INSERT INTO public.notice VALUES (653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688069221); INSERT INTO public.notice VALUES (654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688069819); INSERT INTO public.notice VALUES (655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688070419); INSERT INTO public.notice VALUES (666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688077020); INSERT INTO public.notice VALUES (667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688077619); INSERT INTO public.notice VALUES (668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688078220); INSERT INTO public.notice VALUES (669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688078819); INSERT INTO public.notice VALUES (670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688079419); INSERT INTO public.notice VALUES (1311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688464020); INSERT INTO public.notice VALUES (661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688074019); INSERT INTO public.notice VALUES (662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688074620); INSERT INTO public.notice VALUES (663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688075220); INSERT INTO public.notice VALUES (664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688075819); INSERT INTO public.notice VALUES (665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688076420); INSERT INTO public.notice VALUES (671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688080020); INSERT INTO public.notice VALUES (672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688080620); INSERT INTO public.notice VALUES (673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688081219); INSERT INTO public.notice VALUES (674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688081820); INSERT INTO public.notice VALUES (675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688082419); INSERT INTO public.notice VALUES (676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688083019); INSERT INTO public.notice VALUES (677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688083620); INSERT INTO public.notice VALUES (678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688084219); INSERT INTO public.notice VALUES (679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688084820); INSERT INTO public.notice VALUES (680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688085420); INSERT INTO public.notice VALUES (682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688086620); INSERT INTO public.notice VALUES (683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688087219); INSERT INTO public.notice VALUES (684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688087820); INSERT INTO public.notice VALUES (1312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688464620); INSERT INTO public.notice VALUES (1323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688471220); INSERT INTO public.notice VALUES (1324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688471820); INSERT INTO public.notice VALUES (1325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688472419); INSERT INTO public.notice VALUES (1326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688473020); INSERT INTO public.notice VALUES (1426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688533020); INSERT INTO public.notice VALUES (1428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688534219); INSERT INTO public.notice VALUES (1429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688534819); INSERT INTO public.notice VALUES (1464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688555821); INSERT INTO public.notice VALUES (1465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688556420); INSERT INTO public.notice VALUES (681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688086020); INSERT INTO public.notice VALUES (685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688088420); INSERT INTO public.notice VALUES (686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688089020); INSERT INTO public.notice VALUES (687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688089619); INSERT INTO public.notice VALUES (688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688090219); INSERT INTO public.notice VALUES (689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688090820); INSERT INTO public.notice VALUES (690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688091419); INSERT INTO public.notice VALUES (691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688092019); INSERT INTO public.notice VALUES (692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688092619); INSERT INTO public.notice VALUES (693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688093219); INSERT INTO public.notice VALUES (694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688093819); INSERT INTO public.notice VALUES (695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688094419); INSERT INTO public.notice VALUES (696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688095019); INSERT INTO public.notice VALUES (697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688095620); INSERT INTO public.notice VALUES (698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688096221); INSERT INTO public.notice VALUES (699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688096820); INSERT INTO public.notice VALUES (700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688097420); INSERT INTO public.notice VALUES (704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688099819); INSERT INTO public.notice VALUES (705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688100420); INSERT INTO public.notice VALUES (706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688101020); INSERT INTO public.notice VALUES (709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688102819); INSERT INTO public.notice VALUES (710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688103419); INSERT INTO public.notice VALUES (1317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688467620); INSERT INTO public.notice VALUES (1318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688468220); INSERT INTO public.notice VALUES (1319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688468819); INSERT INTO public.notice VALUES (1320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688469420); INSERT INTO public.notice VALUES (1321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688470019); INSERT INTO public.notice VALUES (1322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688470619); INSERT INTO public.notice VALUES (701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688098020); INSERT INTO public.notice VALUES (702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688098621); INSERT INTO public.notice VALUES (703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688099219); INSERT INTO public.notice VALUES (707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688101620); INSERT INTO public.notice VALUES (708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688102225); INSERT INTO public.notice VALUES (711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688104020); INSERT INTO public.notice VALUES (712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688104620); INSERT INTO public.notice VALUES (713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688105220); INSERT INTO public.notice VALUES (714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688105820); INSERT INTO public.notice VALUES (715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688106421); INSERT INTO public.notice VALUES (716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688107020); INSERT INTO public.notice VALUES (717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688107619); INSERT INTO public.notice VALUES (718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688108221); INSERT INTO public.notice VALUES (719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688108820); INSERT INTO public.notice VALUES (720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688109420); INSERT INTO public.notice VALUES (721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688110019); INSERT INTO public.notice VALUES (726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688113021); INSERT INTO public.notice VALUES (728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688114220); INSERT INTO public.notice VALUES (729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688114819); INSERT INTO public.notice VALUES (730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688115420); INSERT INTO public.notice VALUES (731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688116020); INSERT INTO public.notice VALUES (732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688116620); INSERT INTO public.notice VALUES (736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688119020); INSERT INTO public.notice VALUES (737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688119620); INSERT INTO public.notice VALUES (738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688120219); INSERT INTO public.notice VALUES (739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688120819); INSERT INTO public.notice VALUES (740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688121419); INSERT INTO public.notice VALUES (741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688122021); INSERT INTO public.notice VALUES (722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688110620); INSERT INTO public.notice VALUES (723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688111220); INSERT INTO public.notice VALUES (724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688111820); INSERT INTO public.notice VALUES (725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688112421); INSERT INTO public.notice VALUES (727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688113619); INSERT INTO public.notice VALUES (733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688117219); INSERT INTO public.notice VALUES (734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688117820); INSERT INTO public.notice VALUES (735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688118419); INSERT INTO public.notice VALUES (742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688122619); INSERT INTO public.notice VALUES (743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688123220); INSERT INTO public.notice VALUES (744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688123820); INSERT INTO public.notice VALUES (745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688124419); INSERT INTO public.notice VALUES (746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688125019); INSERT INTO public.notice VALUES (747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688125620); INSERT INTO public.notice VALUES (748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688126220); INSERT INTO public.notice VALUES (749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688126820); INSERT INTO public.notice VALUES (750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688127419); INSERT INTO public.notice VALUES (751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688128020); INSERT INTO public.notice VALUES (752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688128620); INSERT INTO public.notice VALUES (753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688129222); INSERT INTO public.notice VALUES (754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688129821); INSERT INTO public.notice VALUES (755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688130420); INSERT INTO public.notice VALUES (756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688131020); INSERT INTO public.notice VALUES (757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688131619); INSERT INTO public.notice VALUES (758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688132220); INSERT INTO public.notice VALUES (760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688133420); INSERT INTO public.notice VALUES (762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688134620); INSERT INTO public.notice VALUES (763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688135219); INSERT INTO public.notice VALUES (759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688132819); INSERT INTO public.notice VALUES (761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688134020); INSERT INTO public.notice VALUES (765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688136419); INSERT INTO public.notice VALUES (770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688139420); INSERT INTO public.notice VALUES (771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688140019); INSERT INTO public.notice VALUES (772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688140620); INSERT INTO public.notice VALUES (773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688141220); INSERT INTO public.notice VALUES (774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688141820); INSERT INTO public.notice VALUES (775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688142420); INSERT INTO public.notice VALUES (776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688143020); INSERT INTO public.notice VALUES (778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688144220); INSERT INTO public.notice VALUES (1327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688473619); INSERT INTO public.notice VALUES (1328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688474221); INSERT INTO public.notice VALUES (1329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688474820); INSERT INTO public.notice VALUES (764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688135819); INSERT INTO public.notice VALUES (766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688137019); INSERT INTO public.notice VALUES (767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688137621); INSERT INTO public.notice VALUES (768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688138220); INSERT INTO public.notice VALUES (769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688138819); INSERT INTO public.notice VALUES (777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688143620); INSERT INTO public.notice VALUES (779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688144820); INSERT INTO public.notice VALUES (780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688145420); INSERT INTO public.notice VALUES (781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688146019); INSERT INTO public.notice VALUES (782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688146620); INSERT INTO public.notice VALUES (783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688147220); INSERT INTO public.notice VALUES (784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688147820); INSERT INTO public.notice VALUES (785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688148420); INSERT INTO public.notice VALUES (786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688149019); INSERT INTO public.notice VALUES (787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688149619); INSERT INTO public.notice VALUES (788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688150219); INSERT INTO public.notice VALUES (789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688150820); INSERT INTO public.notice VALUES (790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688151420); INSERT INTO public.notice VALUES (794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688153819); INSERT INTO public.notice VALUES (795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688154420); INSERT INTO public.notice VALUES (796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688155019); INSERT INTO public.notice VALUES (797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688155620); INSERT INTO public.notice VALUES (803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688159220); INSERT INTO public.notice VALUES (804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688159819); INSERT INTO public.notice VALUES (805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688160420); INSERT INTO public.notice VALUES (1330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688475421); INSERT INTO public.notice VALUES (1331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688476020); INSERT INTO public.notice VALUES (1333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688477219); INSERT INTO public.notice VALUES (791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688152020); INSERT INTO public.notice VALUES (792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688152619); INSERT INTO public.notice VALUES (793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688153220); INSERT INTO public.notice VALUES (798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688156220); INSERT INTO public.notice VALUES (799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688156819); INSERT INTO public.notice VALUES (800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688157420); INSERT INTO public.notice VALUES (801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688158019); INSERT INTO public.notice VALUES (802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688158620); INSERT INTO public.notice VALUES (806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688161021); INSERT INTO public.notice VALUES (807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688161620); INSERT INTO public.notice VALUES (808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688162220); INSERT INTO public.notice VALUES (809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688162820); INSERT INTO public.notice VALUES (810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688163420); INSERT INTO public.notice VALUES (811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688164019); INSERT INTO public.notice VALUES (812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688164620); INSERT INTO public.notice VALUES (813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688165220); INSERT INTO public.notice VALUES (814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688165819); INSERT INTO public.notice VALUES (815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688166419); INSERT INTO public.notice VALUES (816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688167019); INSERT INTO public.notice VALUES (817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688167619); INSERT INTO public.notice VALUES (818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688168219); INSERT INTO public.notice VALUES (819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688168819); INSERT INTO public.notice VALUES (820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688169419); INSERT INTO public.notice VALUES (821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688170020); INSERT INTO public.notice VALUES (822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688170620); INSERT INTO public.notice VALUES (823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688171219); INSERT INTO public.notice VALUES (824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688171819); INSERT INTO public.notice VALUES (825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688172419); INSERT INTO public.notice VALUES (826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688173020); INSERT INTO public.notice VALUES (827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688173619); INSERT INTO public.notice VALUES (828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688174221); INSERT INTO public.notice VALUES (831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688176020); INSERT INTO public.notice VALUES (1332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688476620); INSERT INTO public.notice VALUES (1335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688478420); INSERT INTO public.notice VALUES (1336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688479020); INSERT INTO public.notice VALUES (1427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688533621); INSERT INTO public.notice VALUES (1466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688557020); INSERT INTO public.notice VALUES (1467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688557620); INSERT INTO public.notice VALUES (1468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688558220); INSERT INTO public.notice VALUES (1474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688561820); INSERT INTO public.notice VALUES (1476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688563019); INSERT INTO public.notice VALUES (1483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688567219); INSERT INTO public.notice VALUES (829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688174820); INSERT INTO public.notice VALUES (830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688175419); INSERT INTO public.notice VALUES (832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688176622); INSERT INTO public.notice VALUES (833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688177220); INSERT INTO public.notice VALUES (834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688177819); INSERT INTO public.notice VALUES (835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688178420); INSERT INTO public.notice VALUES (836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688179020); INSERT INTO public.notice VALUES (837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688179621); INSERT INTO public.notice VALUES (838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688180219); INSERT INTO public.notice VALUES (839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688180819); INSERT INTO public.notice VALUES (840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688181419); INSERT INTO public.notice VALUES (841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688182019); INSERT INTO public.notice VALUES (842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688182620); INSERT INTO public.notice VALUES (843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688183219); INSERT INTO public.notice VALUES (844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688183820); INSERT INTO public.notice VALUES (845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688184420); INSERT INTO public.notice VALUES (846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688185020); INSERT INTO public.notice VALUES (847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688185619); INSERT INTO public.notice VALUES (848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688186221); INSERT INTO public.notice VALUES (849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688186820); INSERT INTO public.notice VALUES (850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688187419); INSERT INTO public.notice VALUES (851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688188020); INSERT INTO public.notice VALUES (863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688195219); INSERT INTO public.notice VALUES (864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688195819); INSERT INTO public.notice VALUES (865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688196420); INSERT INTO public.notice VALUES (866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688197020); INSERT INTO public.notice VALUES (867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688197621); INSERT INTO public.notice VALUES (876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688203019); INSERT INTO public.notice VALUES (852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688188620); INSERT INTO public.notice VALUES (853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688189220); INSERT INTO public.notice VALUES (854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688189820); INSERT INTO public.notice VALUES (855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688190420); INSERT INTO public.notice VALUES (856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688191020); INSERT INTO public.notice VALUES (857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688191620); INSERT INTO public.notice VALUES (858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688192219); INSERT INTO public.notice VALUES (859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688192823); INSERT INTO public.notice VALUES (860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688193420); INSERT INTO public.notice VALUES (861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688194019); INSERT INTO public.notice VALUES (862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688194620); INSERT INTO public.notice VALUES (868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688198220); INSERT INTO public.notice VALUES (869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688198819); INSERT INTO public.notice VALUES (870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688199419); INSERT INTO public.notice VALUES (871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688200020); INSERT INTO public.notice VALUES (872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688200620); INSERT INTO public.notice VALUES (873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688201220); INSERT INTO public.notice VALUES (874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688201820); INSERT INTO public.notice VALUES (875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688202420); INSERT INTO public.notice VALUES (888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688210220); INSERT INTO public.notice VALUES (889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688210820); INSERT INTO public.notice VALUES (898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688216220); INSERT INTO public.notice VALUES (899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688216820); INSERT INTO public.notice VALUES (900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688217421); INSERT INTO public.notice VALUES (901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688218020); INSERT INTO public.notice VALUES (902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688218619); INSERT INTO public.notice VALUES (903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688219220); INSERT INTO public.notice VALUES (904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688219821); INSERT INTO public.notice VALUES (877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688203620); INSERT INTO public.notice VALUES (878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688204219); INSERT INTO public.notice VALUES (879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688204820); INSERT INTO public.notice VALUES (880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688205420); INSERT INTO public.notice VALUES (881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688206020); INSERT INTO public.notice VALUES (882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688206620); INSERT INTO public.notice VALUES (883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688207220); INSERT INTO public.notice VALUES (884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688207820); INSERT INTO public.notice VALUES (885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688208421); INSERT INTO public.notice VALUES (886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688209019); INSERT INTO public.notice VALUES (887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688209619); INSERT INTO public.notice VALUES (890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688211420); INSERT INTO public.notice VALUES (891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688212019); INSERT INTO public.notice VALUES (892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688212620); INSERT INTO public.notice VALUES (893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688213220); INSERT INTO public.notice VALUES (894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688213820); INSERT INTO public.notice VALUES (895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688214420); INSERT INTO public.notice VALUES (896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688215020); INSERT INTO public.notice VALUES (897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688215620); INSERT INTO public.notice VALUES (905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688220419); INSERT INTO public.notice VALUES (906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688221019); INSERT INTO public.notice VALUES (907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688221620); INSERT INTO public.notice VALUES (908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688222220); INSERT INTO public.notice VALUES (909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688222819); INSERT INTO public.notice VALUES (910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688223419); INSERT INTO public.notice VALUES (911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688224020); INSERT INTO public.notice VALUES (912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688224620); INSERT INTO public.notice VALUES (913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688225220); INSERT INTO public.notice VALUES (914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688225820); INSERT INTO public.notice VALUES (926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688233020); INSERT INTO public.notice VALUES (927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688233619); INSERT INTO public.notice VALUES (928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688234223); INSERT INTO public.notice VALUES (929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688234819); INSERT INTO public.notice VALUES (930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688235419); INSERT INTO public.notice VALUES (931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688236019); INSERT INTO public.notice VALUES (937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688239620); INSERT INTO public.notice VALUES (1334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688477820); INSERT INTO public.notice VALUES (1339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688480820); INSERT INTO public.notice VALUES (1340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688481420); INSERT INTO public.notice VALUES (1341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688482020); INSERT INTO public.notice VALUES (1342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688482620); INSERT INTO public.notice VALUES (1346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688485021); INSERT INTO public.notice VALUES (915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688226421); INSERT INTO public.notice VALUES (916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688227020); INSERT INTO public.notice VALUES (917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688227620); INSERT INTO public.notice VALUES (918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688228220); INSERT INTO public.notice VALUES (919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688228819); INSERT INTO public.notice VALUES (920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688229420); INSERT INTO public.notice VALUES (921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688230019); INSERT INTO public.notice VALUES (922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688230619); INSERT INTO public.notice VALUES (923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688231220); INSERT INTO public.notice VALUES (924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688231819); INSERT INTO public.notice VALUES (925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688232420); INSERT INTO public.notice VALUES (932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688236620); INSERT INTO public.notice VALUES (933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688237219); INSERT INTO public.notice VALUES (934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688237820); INSERT INTO public.notice VALUES (935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688238420); INSERT INTO public.notice VALUES (936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688239020); INSERT INTO public.notice VALUES (938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688240220); INSERT INTO public.notice VALUES (939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688240820); INSERT INTO public.notice VALUES (940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688241420); INSERT INTO public.notice VALUES (941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688242020); INSERT INTO public.notice VALUES (942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688242620); INSERT INTO public.notice VALUES (943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688243220); INSERT INTO public.notice VALUES (944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688243820); INSERT INTO public.notice VALUES (945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688244420); INSERT INTO public.notice VALUES (946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688245021); INSERT INTO public.notice VALUES (947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688245620); INSERT INTO public.notice VALUES (948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688246220); INSERT INTO public.notice VALUES (949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688246819); INSERT INTO public.notice VALUES (950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688247420); INSERT INTO public.notice VALUES (951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688248019); INSERT INTO public.notice VALUES (952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688248619); INSERT INTO public.notice VALUES (953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688249220); INSERT INTO public.notice VALUES (954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688249820); INSERT INTO public.notice VALUES (955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688250420); INSERT INTO public.notice VALUES (956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688251020); INSERT INTO public.notice VALUES (957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688251620); INSERT INTO public.notice VALUES (958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688252220); INSERT INTO public.notice VALUES (959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688252819); INSERT INTO public.notice VALUES (960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688253420); INSERT INTO public.notice VALUES (961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688254019); INSERT INTO public.notice VALUES (962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688254620); INSERT INTO public.notice VALUES (963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688255220); INSERT INTO public.notice VALUES (964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688255820); INSERT INTO public.notice VALUES (965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688256419); INSERT INTO public.notice VALUES (966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688257020); INSERT INTO public.notice VALUES (967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688257620); INSERT INTO public.notice VALUES (968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688258220); INSERT INTO public.notice VALUES (969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688258819); INSERT INTO public.notice VALUES (970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688259420); INSERT INTO public.notice VALUES (971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688260019); INSERT INTO public.notice VALUES (972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688260621); INSERT INTO public.notice VALUES (973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688261219); INSERT INTO public.notice VALUES (974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688261819); INSERT INTO public.notice VALUES (975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688262420); INSERT INTO public.notice VALUES (976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688263021); INSERT INTO public.notice VALUES (977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688263619); INSERT INTO public.notice VALUES (978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688264220); INSERT INTO public.notice VALUES (979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688264819); INSERT INTO public.notice VALUES (981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688266019); INSERT INTO public.notice VALUES (982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688266619); INSERT INTO public.notice VALUES (991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688272020); INSERT INTO public.notice VALUES (992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688272619); INSERT INTO public.notice VALUES (1011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688284020); INSERT INTO public.notice VALUES (1012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688284619); INSERT INTO public.notice VALUES (1337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688479621); INSERT INTO public.notice VALUES (1338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688480219); INSERT INTO public.notice VALUES (1343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688483220); INSERT INTO public.notice VALUES (1430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688535420); INSERT INTO public.notice VALUES (1431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688536020); INSERT INTO public.notice VALUES (1432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688536620); INSERT INTO public.notice VALUES (980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688265420); INSERT INTO public.notice VALUES (983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688267220); INSERT INTO public.notice VALUES (984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688267820); INSERT INTO public.notice VALUES (985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688268420); INSERT INTO public.notice VALUES (986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688269020); INSERT INTO public.notice VALUES (987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688269620); INSERT INTO public.notice VALUES (988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688270220); INSERT INTO public.notice VALUES (989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688270820); INSERT INTO public.notice VALUES (990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688271420); INSERT INTO public.notice VALUES (993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688273221); INSERT INTO public.notice VALUES (994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688273819); INSERT INTO public.notice VALUES (995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688274419); INSERT INTO public.notice VALUES (996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688275020); INSERT INTO public.notice VALUES (997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688275619); INSERT INTO public.notice VALUES (998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688276219); INSERT INTO public.notice VALUES (999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688276819); INSERT INTO public.notice VALUES (1000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688277419); INSERT INTO public.notice VALUES (1001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688278020); INSERT INTO public.notice VALUES (1002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688278619); INSERT INTO public.notice VALUES (1003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688279219); INSERT INTO public.notice VALUES (1004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688279820); INSERT INTO public.notice VALUES (1005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688280419); INSERT INTO public.notice VALUES (1006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688281020); INSERT INTO public.notice VALUES (1007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688281620); INSERT INTO public.notice VALUES (1008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688282220); INSERT INTO public.notice VALUES (1009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688282819); INSERT INTO public.notice VALUES (1010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688283419); INSERT INTO public.notice VALUES (1013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688285219); INSERT INTO public.notice VALUES (1014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688285820); INSERT INTO public.notice VALUES (1015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688286420); INSERT INTO public.notice VALUES (1016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688287020); INSERT INTO public.notice VALUES (1017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688287620); INSERT INTO public.notice VALUES (1018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688288220); INSERT INTO public.notice VALUES (1019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688288820); INSERT INTO public.notice VALUES (1020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688289420); INSERT INTO public.notice VALUES (1021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688290020); INSERT INTO public.notice VALUES (1033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688297219); INSERT INTO public.notice VALUES (1034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688297820); INSERT INTO public.notice VALUES (1035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688298419); INSERT INTO public.notice VALUES (1036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688299022); INSERT INTO public.notice VALUES (1037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688299620); INSERT INTO public.notice VALUES (1038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688300220); INSERT INTO public.notice VALUES (1022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688290620); INSERT INTO public.notice VALUES (1023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688291221); INSERT INTO public.notice VALUES (1024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688291820); INSERT INTO public.notice VALUES (1025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688292421); INSERT INTO public.notice VALUES (1026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688293020); INSERT INTO public.notice VALUES (1027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688293619); INSERT INTO public.notice VALUES (1028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688294220); INSERT INTO public.notice VALUES (1029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688294820); INSERT INTO public.notice VALUES (1030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688295419); INSERT INTO public.notice VALUES (1031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688296019); INSERT INTO public.notice VALUES (1032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688296619); INSERT INTO public.notice VALUES (1039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688300820); INSERT INTO public.notice VALUES (1040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688301420); INSERT INTO public.notice VALUES (1042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688302619); INSERT INTO public.notice VALUES (1041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688302020); INSERT INTO public.notice VALUES (1043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688303219); INSERT INTO public.notice VALUES (1044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688303820); INSERT INTO public.notice VALUES (1045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688304420); INSERT INTO public.notice VALUES (1046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688305020); INSERT INTO public.notice VALUES (1047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688305620); INSERT INTO public.notice VALUES (1048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688306220); INSERT INTO public.notice VALUES (1049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688306819); INSERT INTO public.notice VALUES (1050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688307420); INSERT INTO public.notice VALUES (1051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688308020); INSERT INTO public.notice VALUES (1052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688308620); INSERT INTO public.notice VALUES (1053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688309220); INSERT INTO public.notice VALUES (1054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688309821); INSERT INTO public.notice VALUES (1055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688310420); INSERT INTO public.notice VALUES (1056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688311021); INSERT INTO public.notice VALUES (1057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688311619); INSERT INTO public.notice VALUES (1058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688312221); INSERT INTO public.notice VALUES (1059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688312820); INSERT INTO public.notice VALUES (1060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688313420); INSERT INTO public.notice VALUES (1061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688314020); INSERT INTO public.notice VALUES (1062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688314620); INSERT INTO public.notice VALUES (1063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688315219); INSERT INTO public.notice VALUES (1067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688317620); INSERT INTO public.notice VALUES (1068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688318220); INSERT INTO public.notice VALUES (1069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688318819); INSERT INTO public.notice VALUES (1344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688483820); INSERT INTO public.notice VALUES (1345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688484419); INSERT INTO public.notice VALUES (1349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688486820); INSERT INTO public.notice VALUES (1064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688315820); INSERT INTO public.notice VALUES (1065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688316421); INSERT INTO public.notice VALUES (1066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688317021); INSERT INTO public.notice VALUES (1070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688319420); INSERT INTO public.notice VALUES (1071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688320019); INSERT INTO public.notice VALUES (1072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688320620); INSERT INTO public.notice VALUES (1073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688321221); INSERT INTO public.notice VALUES (1074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688321820); INSERT INTO public.notice VALUES (1075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688322420); INSERT INTO public.notice VALUES (1076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688323019); INSERT INTO public.notice VALUES (1077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688323619); INSERT INTO public.notice VALUES (1078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688324219); INSERT INTO public.notice VALUES (1079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688324819); INSERT INTO public.notice VALUES (1080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688325419); INSERT INTO public.notice VALUES (1081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688326020); INSERT INTO public.notice VALUES (1082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688326620); INSERT INTO public.notice VALUES (1083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688327219); INSERT INTO public.notice VALUES (1084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688327819); INSERT INTO public.notice VALUES (1085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688328420); INSERT INTO public.notice VALUES (1086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688329019); INSERT INTO public.notice VALUES (1087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688329619); INSERT INTO public.notice VALUES (1088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688330220); INSERT INTO public.notice VALUES (1089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688330819); INSERT INTO public.notice VALUES (1090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688331419); INSERT INTO public.notice VALUES (1091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688332019); INSERT INTO public.notice VALUES (1092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688332619); INSERT INTO public.notice VALUES (1093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688333219); INSERT INTO public.notice VALUES (1094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688333819); INSERT INTO public.notice VALUES (1095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688334420); INSERT INTO public.notice VALUES (1096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688335020); INSERT INTO public.notice VALUES (1097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688335619); INSERT INTO public.notice VALUES (1098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688336220); INSERT INTO public.notice VALUES (1099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688336819); INSERT INTO public.notice VALUES (1100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688337419); INSERT INTO public.notice VALUES (1101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688338019); INSERT INTO public.notice VALUES (1102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688338619); INSERT INTO public.notice VALUES (1103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688339220); INSERT INTO public.notice VALUES (1104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688339819); INSERT INTO public.notice VALUES (1105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688340419); INSERT INTO public.notice VALUES (1106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688341019); INSERT INTO public.notice VALUES (1107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688341619); INSERT INTO public.notice VALUES (1108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688342220); INSERT INTO public.notice VALUES (1109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688342819); INSERT INTO public.notice VALUES (1110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688343420); INSERT INTO public.notice VALUES (1111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688344020); INSERT INTO public.notice VALUES (1112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688344619); INSERT INTO public.notice VALUES (1347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688485621); INSERT INTO public.notice VALUES (1348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688486220); INSERT INTO public.notice VALUES (1351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688488019); INSERT INTO public.notice VALUES (1352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688488619); INSERT INTO public.notice VALUES (1355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688490421); INSERT INTO public.notice VALUES (1356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688491020); INSERT INTO public.notice VALUES (1358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688492220); INSERT INTO public.notice VALUES (1359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688492825); INSERT INTO public.notice VALUES (1360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Failed to connect to gitlab.com port 443 after 28132 ms: Couldn''t connect to server error: could not fetch origin ', 1688493447); INSERT INTO public.notice VALUES (1433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688537219); INSERT INTO public.notice VALUES (1434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688537820); INSERT INTO public.notice VALUES (1113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688345219); INSERT INTO public.notice VALUES (1114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688345820); INSERT INTO public.notice VALUES (1115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688346421); INSERT INTO public.notice VALUES (1116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688347020); INSERT INTO public.notice VALUES (1117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688347620); INSERT INTO public.notice VALUES (1118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688348220); INSERT INTO public.notice VALUES (1119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688348819); INSERT INTO public.notice VALUES (1120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688349420); INSERT INTO public.notice VALUES (1121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688350021); INSERT INTO public.notice VALUES (1122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688350619); INSERT INTO public.notice VALUES (1123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688351222); INSERT INTO public.notice VALUES (1124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688351820); INSERT INTO public.notice VALUES (1125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688352419); INSERT INTO public.notice VALUES (1126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688353031); INSERT INTO public.notice VALUES (1127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688353619); INSERT INTO public.notice VALUES (1133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688357221); INSERT INTO public.notice VALUES (1136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688359020); INSERT INTO public.notice VALUES (1137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688359620); INSERT INTO public.notice VALUES (1138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688360220); INSERT INTO public.notice VALUES (1350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688487419); INSERT INTO public.notice VALUES (1435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688538420); INSERT INTO public.notice VALUES (1436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688539022); INSERT INTO public.notice VALUES (1447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688545619); INSERT INTO public.notice VALUES (1448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688546220); INSERT INTO public.notice VALUES (1449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688546820); INSERT INTO public.notice VALUES (1450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688547420); INSERT INTO public.notice VALUES (1453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688549219); INSERT INTO public.notice VALUES (1456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688551019); INSERT INTO public.notice VALUES (1128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688354221); INSERT INTO public.notice VALUES (1129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688354819); INSERT INTO public.notice VALUES (1130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688355419); INSERT INTO public.notice VALUES (1131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688356023); INSERT INTO public.notice VALUES (1132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688356621); INSERT INTO public.notice VALUES (1134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688357820); INSERT INTO public.notice VALUES (1135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688358419); INSERT INTO public.notice VALUES (1139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688360820); INSERT INTO public.notice VALUES (1140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688361420); INSERT INTO public.notice VALUES (1141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688362020); INSERT INTO public.notice VALUES (1142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688362621); INSERT INTO public.notice VALUES (1143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688363219); INSERT INTO public.notice VALUES (1144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688363820); INSERT INTO public.notice VALUES (1145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688364419); INSERT INTO public.notice VALUES (1146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688365020); INSERT INTO public.notice VALUES (1147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688365619); INSERT INTO public.notice VALUES (1148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688366220); INSERT INTO public.notice VALUES (1149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688366819); INSERT INTO public.notice VALUES (1150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688367419); INSERT INTO public.notice VALUES (1160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688373419); INSERT INTO public.notice VALUES (1161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688374019); INSERT INTO public.notice VALUES (1172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688380620); INSERT INTO public.notice VALUES (1353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688489220); INSERT INTO public.notice VALUES (1354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688489820); INSERT INTO public.notice VALUES (1437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688539620); INSERT INTO public.notice VALUES (1469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688558820); INSERT INTO public.notice VALUES (1470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688559419); INSERT INTO public.notice VALUES (1471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688560019); INSERT INTO public.notice VALUES (1151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688368020); INSERT INTO public.notice VALUES (1152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688368620); INSERT INTO public.notice VALUES (1153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688369219); INSERT INTO public.notice VALUES (1154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688369820); INSERT INTO public.notice VALUES (1155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688370420); INSERT INTO public.notice VALUES (1156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688371019); INSERT INTO public.notice VALUES (1157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688371619); INSERT INTO public.notice VALUES (1158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688372220); INSERT INTO public.notice VALUES (1159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688372819); INSERT INTO public.notice VALUES (1162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688374619); INSERT INTO public.notice VALUES (1163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688375220); INSERT INTO public.notice VALUES (1164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688375819); INSERT INTO public.notice VALUES (1165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688376420); INSERT INTO public.notice VALUES (1166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688377019); INSERT INTO public.notice VALUES (1167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688377620); INSERT INTO public.notice VALUES (1168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688378219); INSERT INTO public.notice VALUES (1169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688378820); INSERT INTO public.notice VALUES (1170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688379419); INSERT INTO public.notice VALUES (1171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688380019); INSERT INTO public.notice VALUES (1173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688381220); INSERT INTO public.notice VALUES (1174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688381820); INSERT INTO public.notice VALUES (1175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688382420); INSERT INTO public.notice VALUES (1176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688383020); INSERT INTO public.notice VALUES (1177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688383620); INSERT INTO public.notice VALUES (1178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688384219); INSERT INTO public.notice VALUES (1179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688384821); INSERT INTO public.notice VALUES (1180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688385420); INSERT INTO public.notice VALUES (1181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688386020); INSERT INTO public.notice VALUES (1182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688386620); INSERT INTO public.notice VALUES (1184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688387820); INSERT INTO public.notice VALUES (1357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688491620); INSERT INTO public.notice VALUES (1363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688495220); INSERT INTO public.notice VALUES (1364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688495819); INSERT INTO public.notice VALUES (1365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688496419); INSERT INTO public.notice VALUES (1366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688497019); INSERT INTO public.notice VALUES (1368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688498220); INSERT INTO public.notice VALUES (1369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688498821); INSERT INTO public.notice VALUES (1370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688499419); INSERT INTO public.notice VALUES (1438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688540221); INSERT INTO public.notice VALUES (1472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688560620); INSERT INTO public.notice VALUES (1473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688561220); INSERT INTO public.notice VALUES (1475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688562419); INSERT INTO public.notice VALUES (1183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688387219); INSERT INTO public.notice VALUES (1185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688388421); INSERT INTO public.notice VALUES (1186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688389020); INSERT INTO public.notice VALUES (1187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688389620); INSERT INTO public.notice VALUES (1188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688390219); INSERT INTO public.notice VALUES (1189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688390820); INSERT INTO public.notice VALUES (1190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688391419); INSERT INTO public.notice VALUES (1191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688392019); INSERT INTO public.notice VALUES (1192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688392620); INSERT INTO public.notice VALUES (1193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688393220); INSERT INTO public.notice VALUES (1194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688393820); INSERT INTO public.notice VALUES (1195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688394420); INSERT INTO public.notice VALUES (1196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688395020); INSERT INTO public.notice VALUES (1197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688395619); INSERT INTO public.notice VALUES (1198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688396220); INSERT INTO public.notice VALUES (1199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688396820); INSERT INTO public.notice VALUES (1200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688397420); INSERT INTO public.notice VALUES (1201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688398020); INSERT INTO public.notice VALUES (1213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688405219); INSERT INTO public.notice VALUES (1214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688405819); INSERT INTO public.notice VALUES (1216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688407020); INSERT INTO public.notice VALUES (1217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688407619); INSERT INTO public.notice VALUES (1361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688494020); INSERT INTO public.notice VALUES (1362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688494621); INSERT INTO public.notice VALUES (1367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688497620); INSERT INTO public.notice VALUES (1439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688540820); INSERT INTO public.notice VALUES (1477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688563619); INSERT INTO public.notice VALUES (1480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688565420); INSERT INTO public.notice VALUES (1202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688398620); INSERT INTO public.notice VALUES (1203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688399220); INSERT INTO public.notice VALUES (1204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688399820); INSERT INTO public.notice VALUES (1205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688400419); INSERT INTO public.notice VALUES (1206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688401019); INSERT INTO public.notice VALUES (1207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688401620); INSERT INTO public.notice VALUES (1208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688402220); INSERT INTO public.notice VALUES (1209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688402820); INSERT INTO public.notice VALUES (1210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688403421); INSERT INTO public.notice VALUES (1211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688404019); INSERT INTO public.notice VALUES (1212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688404620); INSERT INTO public.notice VALUES (1215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688406419); INSERT INTO public.notice VALUES (1371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688500020); INSERT INTO public.notice VALUES (1379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688504820); INSERT INTO public.notice VALUES (1486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688569020); INSERT INTO public.notice VALUES (1487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688569620); INSERT INTO public.notice VALUES (1493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688573219); INSERT INTO public.notice VALUES (1494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688573820); INSERT INTO public.notice VALUES (1495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688574420); INSERT INTO public.notice VALUES (1496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688575020); INSERT INTO public.notice VALUES (1499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688576819); INSERT INTO public.notice VALUES (1500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688577419); INSERT INTO public.notice VALUES (1501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688578020); INSERT INTO public.notice VALUES (1504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688579819); INSERT INTO public.notice VALUES (1505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688580420); INSERT INTO public.notice VALUES (1509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688582819); INSERT INTO public.notice VALUES (1511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688584019); INSERT INTO public.notice VALUES (1512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688584621); INSERT INTO public.notice VALUES (1488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688570220); INSERT INTO public.notice VALUES (1489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688570820); INSERT INTO public.notice VALUES (1490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688571420); INSERT INTO public.notice VALUES (1491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688572020); INSERT INTO public.notice VALUES (1492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688572620); INSERT INTO public.notice VALUES (1497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688575619); INSERT INTO public.notice VALUES (1498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688576220); INSERT INTO public.notice VALUES (1502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688578619); INSERT INTO public.notice VALUES (1503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688579219); INSERT INTO public.notice VALUES (1506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688581020); INSERT INTO public.notice VALUES (1507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688581619); INSERT INTO public.notice VALUES (1508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688582220); INSERT INTO public.notice VALUES (1510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688583419); INSERT INTO public.notice VALUES (1513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688585221); INSERT INTO public.notice VALUES (1514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688585820); INSERT INTO public.notice VALUES (1515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688586420); INSERT INTO public.notice VALUES (1516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688587019); INSERT INTO public.notice VALUES (1517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688587619); INSERT INTO public.notice VALUES (1518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688588219); INSERT INTO public.notice VALUES (1522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688590620); INSERT INTO public.notice VALUES (1523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688591219); INSERT INTO public.notice VALUES (2740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689322404); INSERT INTO public.notice VALUES (2745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689325403); INSERT INTO public.notice VALUES (2747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689326604); INSERT INTO public.notice VALUES (2748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689327203); INSERT INTO public.notice VALUES (2751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689329004); INSERT INTO public.notice VALUES (2754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689330804); INSERT INTO public.notice VALUES (2756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689332003); INSERT INTO public.notice VALUES (2757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689332603); INSERT INTO public.notice VALUES (1519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688588819); INSERT INTO public.notice VALUES (1520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688589419); INSERT INTO public.notice VALUES (1521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688590020); INSERT INTO public.notice VALUES (1524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688591820); INSERT INTO public.notice VALUES (1525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688592420); INSERT INTO public.notice VALUES (1526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688593020); INSERT INTO public.notice VALUES (1527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688593619); INSERT INTO public.notice VALUES (1528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688594220); INSERT INTO public.notice VALUES (1529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688594820); INSERT INTO public.notice VALUES (1530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688595419); INSERT INTO public.notice VALUES (1531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688596020); INSERT INTO public.notice VALUES (1532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688596619); INSERT INTO public.notice VALUES (1533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688597219); INSERT INTO public.notice VALUES (1534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688597820); INSERT INTO public.notice VALUES (1535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688598420); INSERT INTO public.notice VALUES (1536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688599020); INSERT INTO public.notice VALUES (1537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688599619); INSERT INTO public.notice VALUES (1538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688600221); INSERT INTO public.notice VALUES (1539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688600819); INSERT INTO public.notice VALUES (1540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688601420); INSERT INTO public.notice VALUES (1541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688602019); INSERT INTO public.notice VALUES (1542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688602625); INSERT INTO public.notice VALUES (1543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688603219); INSERT INTO public.notice VALUES (1544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688603823); INSERT INTO public.notice VALUES (1545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688604419); INSERT INTO public.notice VALUES (1546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688605019); INSERT INTO public.notice VALUES (1547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688605619); INSERT INTO public.notice VALUES (1548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688606221); INSERT INTO public.notice VALUES (1549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688606820); INSERT INTO public.notice VALUES (1552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688608620); INSERT INTO public.notice VALUES (2741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689323003); INSERT INTO public.notice VALUES (2742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689323603); INSERT INTO public.notice VALUES (2743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689324204); INSERT INTO public.notice VALUES (2861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689395004); INSERT INTO public.notice VALUES (2864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689396803); INSERT INTO public.notice VALUES (2865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689397404); INSERT INTO public.notice VALUES (2935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689439404); INSERT INTO public.notice VALUES (2964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689456804); INSERT INTO public.notice VALUES (2967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689458605); INSERT INTO public.notice VALUES (2968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689459203); INSERT INTO public.notice VALUES (2969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689459803); INSERT INTO public.notice VALUES (2970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689460404); INSERT INTO public.notice VALUES (2972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689461603); INSERT INTO public.notice VALUES (1550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688607424); INSERT INTO public.notice VALUES (1551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688608019); INSERT INTO public.notice VALUES (1553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688609219); INSERT INTO public.notice VALUES (1554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688609820); INSERT INTO public.notice VALUES (1555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688610420); INSERT INTO public.notice VALUES (1556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688611020); INSERT INTO public.notice VALUES (1557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688611621); INSERT INTO public.notice VALUES (1558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688612221); INSERT INTO public.notice VALUES (1559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688612821); INSERT INTO public.notice VALUES (1560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688613420); INSERT INTO public.notice VALUES (1561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688614020); INSERT INTO public.notice VALUES (1562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688614620); INSERT INTO public.notice VALUES (1563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688615220); INSERT INTO public.notice VALUES (1564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688615820); INSERT INTO public.notice VALUES (1565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688616420); INSERT INTO public.notice VALUES (1566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688617020); INSERT INTO public.notice VALUES (1567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688617620); INSERT INTO public.notice VALUES (1568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688618220); INSERT INTO public.notice VALUES (1569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688618821); INSERT INTO public.notice VALUES (1570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688619419); INSERT INTO public.notice VALUES (1571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688620020); INSERT INTO public.notice VALUES (1572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688620621); INSERT INTO public.notice VALUES (1573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688621220); INSERT INTO public.notice VALUES (1574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688621820); INSERT INTO public.notice VALUES (1575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688622420); INSERT INTO public.notice VALUES (1576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688623020); INSERT INTO public.notice VALUES (1577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688623620); INSERT INTO public.notice VALUES (1578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688624220); INSERT INTO public.notice VALUES (1579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688624820); INSERT INTO public.notice VALUES (1580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688625419); INSERT INTO public.notice VALUES (1581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688626020); INSERT INTO public.notice VALUES (1584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688627820); INSERT INTO public.notice VALUES (1585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688628421); INSERT INTO public.notice VALUES (1586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688629019); INSERT INTO public.notice VALUES (1587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688629620); INSERT INTO public.notice VALUES (1590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688631421); INSERT INTO public.notice VALUES (1591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688632019); INSERT INTO public.notice VALUES (1592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688632620); INSERT INTO public.notice VALUES (1593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688633220); INSERT INTO public.notice VALUES (1595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688634420); INSERT INTO public.notice VALUES (1597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688635620); INSERT INTO public.notice VALUES (1598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688636221); INSERT INTO public.notice VALUES (1582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688626620); INSERT INTO public.notice VALUES (1583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688627219); INSERT INTO public.notice VALUES (1588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688630221); INSERT INTO public.notice VALUES (1589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688630819); INSERT INTO public.notice VALUES (1594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688633820); INSERT INTO public.notice VALUES (1596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688635019); INSERT INTO public.notice VALUES (1599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688636820); INSERT INTO public.notice VALUES (1605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688640419); INSERT INTO public.notice VALUES (1606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688641019); INSERT INTO public.notice VALUES (1607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688641620); INSERT INTO public.notice VALUES (2744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689324804); INSERT INTO public.notice VALUES (2746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689326002); INSERT INTO public.notice VALUES (2749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689327806); INSERT INTO public.notice VALUES (2750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689328405); INSERT INTO public.notice VALUES (2863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689396203); INSERT INTO public.notice VALUES (1600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688637420); INSERT INTO public.notice VALUES (1601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688638020); INSERT INTO public.notice VALUES (1602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688638621); INSERT INTO public.notice VALUES (1603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688639219); INSERT INTO public.notice VALUES (1604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688639823); INSERT INTO public.notice VALUES (1608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688642221); INSERT INTO public.notice VALUES (1609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688642820); INSERT INTO public.notice VALUES (1610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688643420); INSERT INTO public.notice VALUES (1611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688644019); INSERT INTO public.notice VALUES (1612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688644620); INSERT INTO public.notice VALUES (1613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688645219); INSERT INTO public.notice VALUES (1614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688645819); INSERT INTO public.notice VALUES (1615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688646419); INSERT INTO public.notice VALUES (1616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688647020); INSERT INTO public.notice VALUES (1617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688647620); INSERT INTO public.notice VALUES (1618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688648219); INSERT INTO public.notice VALUES (1619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688648820); INSERT INTO public.notice VALUES (1620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688649420); INSERT INTO public.notice VALUES (1621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688650019); INSERT INTO public.notice VALUES (1622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688650620); INSERT INTO public.notice VALUES (1623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688651220); INSERT INTO public.notice VALUES (1624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688651819); INSERT INTO public.notice VALUES (1625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688652420); INSERT INTO public.notice VALUES (1626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688653020); INSERT INTO public.notice VALUES (1627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Failed to connect to gitlab.com port 443 after 21109 ms: Couldn''t connect to server error: could not fetch origin ', 1688653640); INSERT INTO public.notice VALUES (1628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688654220); INSERT INTO public.notice VALUES (1629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688654819); INSERT INTO public.notice VALUES (1630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688655420); INSERT INTO public.notice VALUES (1631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688656021); INSERT INTO public.notice VALUES (1632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688656619); INSERT INTO public.notice VALUES (1633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688657221); INSERT INTO public.notice VALUES (1634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688657820); INSERT INTO public.notice VALUES (1635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688658420); INSERT INTO public.notice VALUES (1636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688659021); INSERT INTO public.notice VALUES (1637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688659620); INSERT INTO public.notice VALUES (1638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688660220); INSERT INTO public.notice VALUES (1639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688660819); INSERT INTO public.notice VALUES (1640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688661420); INSERT INTO public.notice VALUES (1641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688662021); INSERT INTO public.notice VALUES (1642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688662620); INSERT INTO public.notice VALUES (1643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688663219); INSERT INTO public.notice VALUES (1644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688663819); INSERT INTO public.notice VALUES (1645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688664420); INSERT INTO public.notice VALUES (1646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688665021); INSERT INTO public.notice VALUES (1647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688665619); INSERT INTO public.notice VALUES (1648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688666220); INSERT INTO public.notice VALUES (1649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688666820); INSERT INTO public.notice VALUES (1651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688668020); INSERT INTO public.notice VALUES (1652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688668620); INSERT INTO public.notice VALUES (1653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688669219); INSERT INTO public.notice VALUES (1654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688669819); INSERT INTO public.notice VALUES (1655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688670419); INSERT INTO public.notice VALUES (1656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688671019); INSERT INTO public.notice VALUES (1657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688671620); INSERT INTO public.notice VALUES (1658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688672220); INSERT INTO public.notice VALUES (1659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688672820); INSERT INTO public.notice VALUES (1660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688673419); INSERT INTO public.notice VALUES (1650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688667420); INSERT INTO public.notice VALUES (1661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688674020); INSERT INTO public.notice VALUES (1662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688674619); INSERT INTO public.notice VALUES (1664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688675821); INSERT INTO public.notice VALUES (1665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688676419); INSERT INTO public.notice VALUES (1666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688677020); INSERT INTO public.notice VALUES (1667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688677620); INSERT INTO public.notice VALUES (1668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688678220); INSERT INTO public.notice VALUES (1669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688678820); INSERT INTO public.notice VALUES (1670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688679420); INSERT INTO public.notice VALUES (1671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688680019); INSERT INTO public.notice VALUES (2752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689329603); INSERT INTO public.notice VALUES (2753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689330203); INSERT INTO public.notice VALUES (2866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689398004); INSERT INTO public.notice VALUES (2867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689398603); INSERT INTO public.notice VALUES (1663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688675219); INSERT INTO public.notice VALUES (1672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688680620); INSERT INTO public.notice VALUES (1673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688681220); INSERT INTO public.notice VALUES (1674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688681820); INSERT INTO public.notice VALUES (1675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688682419); INSERT INTO public.notice VALUES (1676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688683020); INSERT INTO public.notice VALUES (1677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688683619); INSERT INTO public.notice VALUES (1678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688684219); INSERT INTO public.notice VALUES (1679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688684819); INSERT INTO public.notice VALUES (1680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688685420); INSERT INTO public.notice VALUES (1681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688686019); INSERT INTO public.notice VALUES (1682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688686620); INSERT INTO public.notice VALUES (1683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688687220); INSERT INTO public.notice VALUES (1684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688687819); INSERT INTO public.notice VALUES (1685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688688420); INSERT INTO public.notice VALUES (1686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688689020); INSERT INTO public.notice VALUES (1687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688689619); INSERT INTO public.notice VALUES (1688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688690221); INSERT INTO public.notice VALUES (1689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688690821); INSERT INTO public.notice VALUES (1690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688691420); INSERT INTO public.notice VALUES (1691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688692021); INSERT INTO public.notice VALUES (1692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688692619); INSERT INTO public.notice VALUES (1693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688693220); INSERT INTO public.notice VALUES (1694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688693820); INSERT INTO public.notice VALUES (1695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688694419); INSERT INTO public.notice VALUES (1696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688695019); INSERT INTO public.notice VALUES (1697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688695619); INSERT INTO public.notice VALUES (1698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688696220); INSERT INTO public.notice VALUES (1699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688696820); INSERT INTO public.notice VALUES (1700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688697420); INSERT INTO public.notice VALUES (1701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688698020); INSERT INTO public.notice VALUES (1710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688703419); INSERT INTO public.notice VALUES (2755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689331404); INSERT INTO public.notice VALUES (2759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689333804); INSERT INTO public.notice VALUES (2868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689399203); INSERT INTO public.notice VALUES (2870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689400404); INSERT INTO public.notice VALUES (2871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689401003); INSERT INTO public.notice VALUES (2873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689402204); INSERT INTO public.notice VALUES (2874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689402803); INSERT INTO public.notice VALUES (2875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689403403); INSERT INTO public.notice VALUES (2878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689405203); INSERT INTO public.notice VALUES (2879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689405803); INSERT INTO public.notice VALUES (2880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689406404); INSERT INTO public.notice VALUES (1702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688698620); INSERT INTO public.notice VALUES (1703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688699219); INSERT INTO public.notice VALUES (1704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688699820); INSERT INTO public.notice VALUES (1705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688700420); INSERT INTO public.notice VALUES (1706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688701019); INSERT INTO public.notice VALUES (1707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688701620); INSERT INTO public.notice VALUES (1708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688702221); INSERT INTO public.notice VALUES (1709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688702820); INSERT INTO public.notice VALUES (1711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688704422); INSERT INTO public.notice VALUES (1712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688705028); INSERT INTO public.notice VALUES (1713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688705622); INSERT INTO public.notice VALUES (1714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688706220); INSERT INTO public.notice VALUES (1715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688706821); INSERT INTO public.notice VALUES (1716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688707420); INSERT INTO public.notice VALUES (1717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688708023); INSERT INTO public.notice VALUES (1718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688708621); INSERT INTO public.notice VALUES (1719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688709221); INSERT INTO public.notice VALUES (1720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688709821); INSERT INTO public.notice VALUES (1721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688710420); INSERT INTO public.notice VALUES (1722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688711021); INSERT INTO public.notice VALUES (1723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688711620); INSERT INTO public.notice VALUES (1724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688712221); INSERT INTO public.notice VALUES (1725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688712820); INSERT INTO public.notice VALUES (1726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688713421); INSERT INTO public.notice VALUES (1727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688714021); INSERT INTO public.notice VALUES (1728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688714621); INSERT INTO public.notice VALUES (1729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688715221); INSERT INTO public.notice VALUES (1730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688715822); INSERT INTO public.notice VALUES (1731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688716421); INSERT INTO public.notice VALUES (1734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688718222); INSERT INTO public.notice VALUES (1735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688718820); INSERT INTO public.notice VALUES (2758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689333204); INSERT INTO public.notice VALUES (2762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689335604); INSERT INTO public.notice VALUES (2763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689336203); INSERT INTO public.notice VALUES (2765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689337404); INSERT INTO public.notice VALUES (2768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689339202); INSERT INTO public.notice VALUES (2770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689340404); INSERT INTO public.notice VALUES (2771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689341003); INSERT INTO public.notice VALUES (2773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689342204); INSERT INTO public.notice VALUES (2869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689399804); INSERT INTO public.notice VALUES (2872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689401604); INSERT INTO public.notice VALUES (2876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689404004); INSERT INTO public.notice VALUES (2877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689404604); INSERT INTO public.notice VALUES (1732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688717020); INSERT INTO public.notice VALUES (1733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688717622); INSERT INTO public.notice VALUES (1736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688719422); INSERT INTO public.notice VALUES (1737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688720020); INSERT INTO public.notice VALUES (1738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688720621); INSERT INTO public.notice VALUES (1739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688721220); INSERT INTO public.notice VALUES (1740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688721820); INSERT INTO public.notice VALUES (1741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688722421); INSERT INTO public.notice VALUES (1742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688723020); INSERT INTO public.notice VALUES (1743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688723620); INSERT INTO public.notice VALUES (1744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688724221); INSERT INTO public.notice VALUES (1745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688724821); INSERT INTO public.notice VALUES (1746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688725421); INSERT INTO public.notice VALUES (1747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688726021); INSERT INTO public.notice VALUES (1748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688726620); INSERT INTO public.notice VALUES (1749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688727220); INSERT INTO public.notice VALUES (1755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688730821); INSERT INTO public.notice VALUES (1756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688731421); INSERT INTO public.notice VALUES (1757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688732020); INSERT INTO public.notice VALUES (1759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688733220); INSERT INTO public.notice VALUES (1760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688733821); INSERT INTO public.notice VALUES (1763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688735620); INSERT INTO public.notice VALUES (1766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688737421); INSERT INTO public.notice VALUES (1767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688738020); INSERT INTO public.notice VALUES (1777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688744021); INSERT INTO public.notice VALUES (1778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688744621); INSERT INTO public.notice VALUES (1779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688745221); INSERT INTO public.notice VALUES (1780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688745820); INSERT INTO public.notice VALUES (1750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688727821); INSERT INTO public.notice VALUES (1751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688728420); INSERT INTO public.notice VALUES (1752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688729021); INSERT INTO public.notice VALUES (1753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688729620); INSERT INTO public.notice VALUES (1754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688730221); INSERT INTO public.notice VALUES (1758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688732621); INSERT INTO public.notice VALUES (1761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688734421); INSERT INTO public.notice VALUES (1762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688735022); INSERT INTO public.notice VALUES (1764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688736220); INSERT INTO public.notice VALUES (1765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688736821); INSERT INTO public.notice VALUES (1768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688738620); INSERT INTO public.notice VALUES (1769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688739221); INSERT INTO public.notice VALUES (1770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688739821); INSERT INTO public.notice VALUES (1771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688740420); INSERT INTO public.notice VALUES (1772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688741021); INSERT INTO public.notice VALUES (1773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688741621); INSERT INTO public.notice VALUES (1774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688742220); INSERT INTO public.notice VALUES (1775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688742821); INSERT INTO public.notice VALUES (1776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688743420); INSERT INTO public.notice VALUES (1788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688750620); INSERT INTO public.notice VALUES (2760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689334403); INSERT INTO public.notice VALUES (2881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689407003); INSERT INTO public.notice VALUES (2936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689440003); INSERT INTO public.notice VALUES (2965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689457403); INSERT INTO public.notice VALUES (2966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689458002); INSERT INTO public.notice VALUES (2971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689461004); INSERT INTO public.notice VALUES (2976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689464003); INSERT INTO public.notice VALUES (2978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689465204); INSERT INTO public.notice VALUES (2982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689467604); INSERT INTO public.notice VALUES (1781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688746420); INSERT INTO public.notice VALUES (1782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688747022); INSERT INTO public.notice VALUES (1783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688747621); INSERT INTO public.notice VALUES (1784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688748222); INSERT INTO public.notice VALUES (1785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688748821); INSERT INTO public.notice VALUES (1786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688749420); INSERT INTO public.notice VALUES (1787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688750020); INSERT INTO public.notice VALUES (1789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688751221); INSERT INTO public.notice VALUES (1790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688751822); INSERT INTO public.notice VALUES (1791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688752420); INSERT INTO public.notice VALUES (1792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688753020); INSERT INTO public.notice VALUES (1793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688753621); INSERT INTO public.notice VALUES (1794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688754221); INSERT INTO public.notice VALUES (1795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688754821); INSERT INTO public.notice VALUES (1796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688755420); INSERT INTO public.notice VALUES (1797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688756020); INSERT INTO public.notice VALUES (1798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688756620); INSERT INTO public.notice VALUES (1805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688760820); INSERT INTO public.notice VALUES (1806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688761420); INSERT INTO public.notice VALUES (1813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688765620); INSERT INTO public.notice VALUES (1814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688766221); INSERT INTO public.notice VALUES (1820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688769821); INSERT INTO public.notice VALUES (2761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689335004); INSERT INTO public.notice VALUES (2882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689407603); INSERT INTO public.notice VALUES (2883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689408203); INSERT INTO public.notice VALUES (2885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689409403); INSERT INTO public.notice VALUES (2888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689411203); INSERT INTO public.notice VALUES (2889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689411803); INSERT INTO public.notice VALUES (2890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689412402); INSERT INTO public.notice VALUES (1799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688757220); INSERT INTO public.notice VALUES (1800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688757821); INSERT INTO public.notice VALUES (1801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688758421); INSERT INTO public.notice VALUES (1802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688759021); INSERT INTO public.notice VALUES (1803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688759621); INSERT INTO public.notice VALUES (1804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688760221); INSERT INTO public.notice VALUES (1807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688762021); INSERT INTO public.notice VALUES (1808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688762621); INSERT INTO public.notice VALUES (1809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688763220); INSERT INTO public.notice VALUES (1810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688763821); INSERT INTO public.notice VALUES (1811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688764421); INSERT INTO public.notice VALUES (1812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688765021); INSERT INTO public.notice VALUES (1815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688766821); INSERT INTO public.notice VALUES (1816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688767421); INSERT INTO public.notice VALUES (1817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688768021); INSERT INTO public.notice VALUES (1818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688768620); INSERT INTO public.notice VALUES (1819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688769220); INSERT INTO public.notice VALUES (1821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688770421); INSERT INTO public.notice VALUES (1822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688771021); INSERT INTO public.notice VALUES (1823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688771621); INSERT INTO public.notice VALUES (1824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688772221); INSERT INTO public.notice VALUES (1825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688772820); INSERT INTO public.notice VALUES (1826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688773420); INSERT INTO public.notice VALUES (1827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688774020); INSERT INTO public.notice VALUES (1828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688774620); INSERT INTO public.notice VALUES (1829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688775221); INSERT INTO public.notice VALUES (1830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688775821); INSERT INTO public.notice VALUES (1831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688776420); INSERT INTO public.notice VALUES (1832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688777021); INSERT INTO public.notice VALUES (1833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688777621); INSERT INTO public.notice VALUES (2764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689336803); INSERT INTO public.notice VALUES (2766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689338004); INSERT INTO public.notice VALUES (2767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689338603); INSERT INTO public.notice VALUES (2769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689339804); INSERT INTO public.notice VALUES (2884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689408804); INSERT INTO public.notice VALUES (2886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689410003); INSERT INTO public.notice VALUES (2887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689410604); INSERT INTO public.notice VALUES (2937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689440602); INSERT INTO public.notice VALUES (2939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689441804); INSERT INTO public.notice VALUES (2941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689443004); INSERT INTO public.notice VALUES (2945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689445404); INSERT INTO public.notice VALUES (2946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689446003); INSERT INTO public.notice VALUES (2948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689447202); INSERT INTO public.notice VALUES (1834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688778221); INSERT INTO public.notice VALUES (1835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688778821); INSERT INTO public.notice VALUES (1836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688779421); INSERT INTO public.notice VALUES (1837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688780022); INSERT INTO public.notice VALUES (1838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688780620); INSERT INTO public.notice VALUES (1839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688781220); INSERT INTO public.notice VALUES (1840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688781820); INSERT INTO public.notice VALUES (1841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688782420); INSERT INTO public.notice VALUES (1842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688783021); INSERT INTO public.notice VALUES (1843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688783620); INSERT INTO public.notice VALUES (1844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688784220); INSERT INTO public.notice VALUES (1845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688784821); INSERT INTO public.notice VALUES (1846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688785421); INSERT INTO public.notice VALUES (1847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688786021); INSERT INTO public.notice VALUES (1848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688786622); INSERT INTO public.notice VALUES (1849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688787221); INSERT INTO public.notice VALUES (1850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688787821); INSERT INTO public.notice VALUES (1855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688790821); INSERT INTO public.notice VALUES (1856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688791420); INSERT INTO public.notice VALUES (1857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688792020); INSERT INTO public.notice VALUES (1859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688793222); INSERT INTO public.notice VALUES (1860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688793821); INSERT INTO public.notice VALUES (1864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688796221); INSERT INTO public.notice VALUES (1865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688796821); INSERT INTO public.notice VALUES (1866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688797421); INSERT INTO public.notice VALUES (1904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688820220); INSERT INTO public.notice VALUES (1905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688820821); INSERT INTO public.notice VALUES (2772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689341604); INSERT INTO public.notice VALUES (1851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688788420); INSERT INTO public.notice VALUES (1852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688789020); INSERT INTO public.notice VALUES (1853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688789620); INSERT INTO public.notice VALUES (1854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688790221); INSERT INTO public.notice VALUES (1858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688792621); INSERT INTO public.notice VALUES (1861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688794421); INSERT INTO public.notice VALUES (1862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688795024); INSERT INTO public.notice VALUES (1863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688795621); INSERT INTO public.notice VALUES (1867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688798021); INSERT INTO public.notice VALUES (1868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688798621); INSERT INTO public.notice VALUES (1869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688799221); INSERT INTO public.notice VALUES (1870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688799821); INSERT INTO public.notice VALUES (1871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688800421); INSERT INTO public.notice VALUES (1872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688801021); INSERT INTO public.notice VALUES (1873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688801622); INSERT INTO public.notice VALUES (1874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688802220); INSERT INTO public.notice VALUES (1875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688802821); INSERT INTO public.notice VALUES (1876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688803421); INSERT INTO public.notice VALUES (1877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688804021); INSERT INTO public.notice VALUES (1878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688804621); INSERT INTO public.notice VALUES (1879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688805220); INSERT INTO public.notice VALUES (1880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688805821); INSERT INTO public.notice VALUES (1881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688806421); INSERT INTO public.notice VALUES (1882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688807020); INSERT INTO public.notice VALUES (1883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688807620); INSERT INTO public.notice VALUES (1884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688808221); INSERT INTO public.notice VALUES (1885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688808824); INSERT INTO public.notice VALUES (1886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688809421); INSERT INTO public.notice VALUES (1887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688810021); INSERT INTO public.notice VALUES (1888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688810621); INSERT INTO public.notice VALUES (1889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688811220); INSERT INTO public.notice VALUES (1890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688811821); INSERT INTO public.notice VALUES (1891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688812420); INSERT INTO public.notice VALUES (1892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688813022); INSERT INTO public.notice VALUES (1893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688813620); INSERT INTO public.notice VALUES (1894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688814220); INSERT INTO public.notice VALUES (1895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688814820); INSERT INTO public.notice VALUES (1896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688815421); INSERT INTO public.notice VALUES (1897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688816021); INSERT INTO public.notice VALUES (1898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688816620); INSERT INTO public.notice VALUES (1899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688817220); INSERT INTO public.notice VALUES (1900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688817820); INSERT INTO public.notice VALUES (1901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688818420); INSERT INTO public.notice VALUES (1902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688819021); INSERT INTO public.notice VALUES (1903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688819621); INSERT INTO public.notice VALUES (1906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688821421); INSERT INTO public.notice VALUES (1907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688822020); INSERT INTO public.notice VALUES (1908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688822620); INSERT INTO public.notice VALUES (1909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688823221); INSERT INTO public.notice VALUES (1910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688823821); INSERT INTO public.notice VALUES (1911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688824421); INSERT INTO public.notice VALUES (1912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688825020); INSERT INTO public.notice VALUES (1913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688825620); INSERT INTO public.notice VALUES (1914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688826222); INSERT INTO public.notice VALUES (1915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688826820); INSERT INTO public.notice VALUES (1916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688827421); INSERT INTO public.notice VALUES (1917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688828021); INSERT INTO public.notice VALUES (1918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688828621); INSERT INTO public.notice VALUES (1919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688829222); INSERT INTO public.notice VALUES (1920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688829821); INSERT INTO public.notice VALUES (1930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688835820); INSERT INTO public.notice VALUES (1935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688838821); INSERT INTO public.notice VALUES (1936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688839420); INSERT INTO public.notice VALUES (1937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688840020); INSERT INTO public.notice VALUES (1938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688840620); INSERT INTO public.notice VALUES (2774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689342803); INSERT INTO public.notice VALUES (2776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689344004); INSERT INTO public.notice VALUES (2777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689344603); INSERT INTO public.notice VALUES (2891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689413004); INSERT INTO public.notice VALUES (2938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689441204); INSERT INTO public.notice VALUES (2940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689442403); INSERT INTO public.notice VALUES (1921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688830420); INSERT INTO public.notice VALUES (1922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688831021); INSERT INTO public.notice VALUES (1923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688831620); INSERT INTO public.notice VALUES (1924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688832221); INSERT INTO public.notice VALUES (1925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688832820); INSERT INTO public.notice VALUES (1926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688833421); INSERT INTO public.notice VALUES (1927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688834020); INSERT INTO public.notice VALUES (1928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688834621); INSERT INTO public.notice VALUES (1929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688835221); INSERT INTO public.notice VALUES (1931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688836420); INSERT INTO public.notice VALUES (1932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688837020); INSERT INTO public.notice VALUES (1933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688837620); INSERT INTO public.notice VALUES (1934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688838221); INSERT INTO public.notice VALUES (1939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688841221); INSERT INTO public.notice VALUES (1940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688841821); INSERT INTO public.notice VALUES (1941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688842420); INSERT INTO public.notice VALUES (1942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688843020); INSERT INTO public.notice VALUES (1943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688843621); INSERT INTO public.notice VALUES (1944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688844221); INSERT INTO public.notice VALUES (1945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688844821); INSERT INTO public.notice VALUES (1946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688845421); INSERT INTO public.notice VALUES (1947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688846022); INSERT INTO public.notice VALUES (1948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688846621); INSERT INTO public.notice VALUES (1949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688847221); INSERT INTO public.notice VALUES (1950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688847828); INSERT INTO public.notice VALUES (1951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688848421); INSERT INTO public.notice VALUES (1952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688849020); INSERT INTO public.notice VALUES (1953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688849620); INSERT INTO public.notice VALUES (1954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688850221); INSERT INTO public.notice VALUES (1955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688850821); INSERT INTO public.notice VALUES (1956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688851420); INSERT INTO public.notice VALUES (1957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688852020); INSERT INTO public.notice VALUES (1958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688852620); INSERT INTO public.notice VALUES (1959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688853220); INSERT INTO public.notice VALUES (1960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688853820); INSERT INTO public.notice VALUES (1970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688859821); INSERT INTO public.notice VALUES (1971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688860421); INSERT INTO public.notice VALUES (1972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688861020); INSERT INTO public.notice VALUES (1978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688864621); INSERT INTO public.notice VALUES (1983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688867621); INSERT INTO public.notice VALUES (2775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689343403); INSERT INTO public.notice VALUES (2778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689345203); INSERT INTO public.notice VALUES (2781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689347003); INSERT INTO public.notice VALUES (1961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688854421); INSERT INTO public.notice VALUES (1962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688855020); INSERT INTO public.notice VALUES (1963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688855621); INSERT INTO public.notice VALUES (1964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688856221); INSERT INTO public.notice VALUES (1965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688856821); INSERT INTO public.notice VALUES (1966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688857421); INSERT INTO public.notice VALUES (1967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688858020); INSERT INTO public.notice VALUES (1968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688858621); INSERT INTO public.notice VALUES (1969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688859220); INSERT INTO public.notice VALUES (1973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688861620); INSERT INTO public.notice VALUES (1974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688862222); INSERT INTO public.notice VALUES (1975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688862820); INSERT INTO public.notice VALUES (1976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688863421); INSERT INTO public.notice VALUES (1977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688864021); INSERT INTO public.notice VALUES (1979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688865221); INSERT INTO public.notice VALUES (1980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688865821); INSERT INTO public.notice VALUES (1981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688866421); INSERT INTO public.notice VALUES (1982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688867021); INSERT INTO public.notice VALUES (1984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688868221); INSERT INTO public.notice VALUES (1985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688868821); INSERT INTO public.notice VALUES (1986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688869421); INSERT INTO public.notice VALUES (1987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688870021); INSERT INTO public.notice VALUES (1988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688870620); INSERT INTO public.notice VALUES (1989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688871221); INSERT INTO public.notice VALUES (1990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688871821); INSERT INTO public.notice VALUES (1991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688872421); INSERT INTO public.notice VALUES (1992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688873021); INSERT INTO public.notice VALUES (1993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688873621); INSERT INTO public.notice VALUES (1994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688874220); INSERT INTO public.notice VALUES (1995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688874821); INSERT INTO public.notice VALUES (1996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688875421); INSERT INTO public.notice VALUES (1997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688876021); INSERT INTO public.notice VALUES (1998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688876621); INSERT INTO public.notice VALUES (1999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688877221); INSERT INTO public.notice VALUES (2003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688879620); INSERT INTO public.notice VALUES (2004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688880221); INSERT INTO public.notice VALUES (2007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688882021); INSERT INTO public.notice VALUES (2779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689345804); INSERT INTO public.notice VALUES (2780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689346405); INSERT INTO public.notice VALUES (2892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689413603); INSERT INTO public.notice VALUES (2893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689414203); INSERT INTO public.notice VALUES (2896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689416003); INSERT INTO public.notice VALUES (2942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689443604); INSERT INTO public.notice VALUES (2000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688877820); INSERT INTO public.notice VALUES (2001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688878421); INSERT INTO public.notice VALUES (2002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688879021); INSERT INTO public.notice VALUES (2005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688880821); INSERT INTO public.notice VALUES (2006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688881421); INSERT INTO public.notice VALUES (2008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688882621); INSERT INTO public.notice VALUES (2009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688883220); INSERT INTO public.notice VALUES (2010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688883821); INSERT INTO public.notice VALUES (2011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688884421); INSERT INTO public.notice VALUES (2012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688885021); INSERT INTO public.notice VALUES (2013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688885621); INSERT INTO public.notice VALUES (2014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688886221); INSERT INTO public.notice VALUES (2015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688886820); INSERT INTO public.notice VALUES (2016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688887421); INSERT INTO public.notice VALUES (2017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688888021); INSERT INTO public.notice VALUES (2018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688888621); INSERT INTO public.notice VALUES (2019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688889224); INSERT INTO public.notice VALUES (2020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688889821); INSERT INTO public.notice VALUES (2021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688890421); INSERT INTO public.notice VALUES (2022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688891021); INSERT INTO public.notice VALUES (2023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688891621); INSERT INTO public.notice VALUES (2024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688892224); INSERT INTO public.notice VALUES (2025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688892820); INSERT INTO public.notice VALUES (2026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688893421); INSERT INTO public.notice VALUES (2027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688894021); INSERT INTO public.notice VALUES (2028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688894621); INSERT INTO public.notice VALUES (2029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688895221); INSERT INTO public.notice VALUES (2030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688895820); INSERT INTO public.notice VALUES (2031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688896420); INSERT INTO public.notice VALUES (2032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688897020); INSERT INTO public.notice VALUES (2040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688901821); INSERT INTO public.notice VALUES (2041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688902420); INSERT INTO public.notice VALUES (2782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689347603); INSERT INTO public.notice VALUES (2785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689349404); INSERT INTO public.notice VALUES (2788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689351203); INSERT INTO public.notice VALUES (2789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689351803); INSERT INTO public.notice VALUES (2793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689354203); INSERT INTO public.notice VALUES (2794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689354804); INSERT INTO public.notice VALUES (2795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689355404); INSERT INTO public.notice VALUES (2796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689356003); INSERT INTO public.notice VALUES (2797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689356605); INSERT INTO public.notice VALUES (2799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689357804); INSERT INTO public.notice VALUES (2800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689358403); INSERT INTO public.notice VALUES (2033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688897620); INSERT INTO public.notice VALUES (2034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688898221); INSERT INTO public.notice VALUES (2035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688898821); INSERT INTO public.notice VALUES (2036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688899421); INSERT INTO public.notice VALUES (2037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688900021); INSERT INTO public.notice VALUES (2038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688900621); INSERT INTO public.notice VALUES (2039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688901221); INSERT INTO public.notice VALUES (2042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688903021); INSERT INTO public.notice VALUES (2043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688903621); INSERT INTO public.notice VALUES (2044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688904221); INSERT INTO public.notice VALUES (2045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688904821); INSERT INTO public.notice VALUES (2046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688905420); INSERT INTO public.notice VALUES (2047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688906021); INSERT INTO public.notice VALUES (2048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688906621); INSERT INTO public.notice VALUES (2049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688907221); INSERT INTO public.notice VALUES (2053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688909621); INSERT INTO public.notice VALUES (2054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688910221); INSERT INTO public.notice VALUES (2056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688911421); INSERT INTO public.notice VALUES (2059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688913221); INSERT INTO public.notice VALUES (2060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688913822); INSERT INTO public.notice VALUES (2061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688914421); INSERT INTO public.notice VALUES (2783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689348204); INSERT INTO public.notice VALUES (2784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689348804); INSERT INTO public.notice VALUES (2786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689350005); INSERT INTO public.notice VALUES (2894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689414804); INSERT INTO public.notice VALUES (2895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689415404); INSERT INTO public.notice VALUES (2897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689416603); INSERT INTO public.notice VALUES (2899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689417803); INSERT INTO public.notice VALUES (2901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689419002); INSERT INTO public.notice VALUES (2050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688907821); INSERT INTO public.notice VALUES (2051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688908421); INSERT INTO public.notice VALUES (2052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688909021); INSERT INTO public.notice VALUES (2055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688910821); INSERT INTO public.notice VALUES (2057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688912021); INSERT INTO public.notice VALUES (2058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688912621); INSERT INTO public.notice VALUES (2062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688915022); INSERT INTO public.notice VALUES (2063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688915621); INSERT INTO public.notice VALUES (2064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688916222); INSERT INTO public.notice VALUES (2065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688916822); INSERT INTO public.notice VALUES (2066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688917421); INSERT INTO public.notice VALUES (2067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688918021); INSERT INTO public.notice VALUES (2068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688918620); INSERT INTO public.notice VALUES (2069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688919221); INSERT INTO public.notice VALUES (2070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688919820); INSERT INTO public.notice VALUES (2071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688920420); INSERT INTO public.notice VALUES (2072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688921020); INSERT INTO public.notice VALUES (2073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688921621); INSERT INTO public.notice VALUES (2074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688922220); INSERT INTO public.notice VALUES (2075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688922820); INSERT INTO public.notice VALUES (2076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688923420); INSERT INTO public.notice VALUES (2077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688924021); INSERT INTO public.notice VALUES (2078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688924621); INSERT INTO public.notice VALUES (2079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688925220); INSERT INTO public.notice VALUES (2080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688925820); INSERT INTO public.notice VALUES (2081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688926421); INSERT INTO public.notice VALUES (2082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688927021); INSERT INTO public.notice VALUES (2083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688927620); INSERT INTO public.notice VALUES (2084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688928220); INSERT INTO public.notice VALUES (2085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688928820); INSERT INTO public.notice VALUES (2086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688929420); INSERT INTO public.notice VALUES (2087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688930020); INSERT INTO public.notice VALUES (2088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688930620); INSERT INTO public.notice VALUES (2094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688934221); INSERT INTO public.notice VALUES (2095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688934820); INSERT INTO public.notice VALUES (2096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688935420); INSERT INTO public.notice VALUES (2097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688936022); INSERT INTO public.notice VALUES (2103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688939620); INSERT INTO public.notice VALUES (2104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688940220); INSERT INTO public.notice VALUES (2105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688940820); INSERT INTO public.notice VALUES (2106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688941420); INSERT INTO public.notice VALUES (2107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688942020); INSERT INTO public.notice VALUES (2089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688931221); INSERT INTO public.notice VALUES (2090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688931820); INSERT INTO public.notice VALUES (2091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688932420); INSERT INTO public.notice VALUES (2092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688933021); INSERT INTO public.notice VALUES (2093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688933620); INSERT INTO public.notice VALUES (2098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688936620); INSERT INTO public.notice VALUES (2099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688937220); INSERT INTO public.notice VALUES (2100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688937820); INSERT INTO public.notice VALUES (2101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688938420); INSERT INTO public.notice VALUES (2102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688939020); INSERT INTO public.notice VALUES (2109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688943220); INSERT INTO public.notice VALUES (2124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688952220); INSERT INTO public.notice VALUES (2127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688954021); INSERT INTO public.notice VALUES (2128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688954621); INSERT INTO public.notice VALUES (2108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688942620); INSERT INTO public.notice VALUES (2110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688943820); INSERT INTO public.notice VALUES (2111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688944420); INSERT INTO public.notice VALUES (2112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688945021); INSERT INTO public.notice VALUES (2113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688945620); INSERT INTO public.notice VALUES (2114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688946221); INSERT INTO public.notice VALUES (2115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688946820); INSERT INTO public.notice VALUES (2116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688947420); INSERT INTO public.notice VALUES (2117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688948020); INSERT INTO public.notice VALUES (2118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688948620); INSERT INTO public.notice VALUES (2119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688949221); INSERT INTO public.notice VALUES (2120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688949820); INSERT INTO public.notice VALUES (2121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688950420); INSERT INTO public.notice VALUES (2122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688951020); INSERT INTO public.notice VALUES (2123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688951620); INSERT INTO public.notice VALUES (2125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688952821); INSERT INTO public.notice VALUES (2126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688953421); INSERT INTO public.notice VALUES (2129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688955220); INSERT INTO public.notice VALUES (2130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688955822); INSERT INTO public.notice VALUES (2131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688956421); INSERT INTO public.notice VALUES (2132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688957021); INSERT INTO public.notice VALUES (2133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688957620); INSERT INTO public.notice VALUES (2134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688958221); INSERT INTO public.notice VALUES (2135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688958823); INSERT INTO public.notice VALUES (2136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688959420); INSERT INTO public.notice VALUES (2137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688960244); INSERT INTO public.notice VALUES (2138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688960844); INSERT INTO public.notice VALUES (2139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688961444); INSERT INTO public.notice VALUES (2140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688962044); INSERT INTO public.notice VALUES (2141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688962644); INSERT INTO public.notice VALUES (2142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688963244); INSERT INTO public.notice VALUES (2143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688963843); INSERT INTO public.notice VALUES (2144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688964443); INSERT INTO public.notice VALUES (2145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688965044); INSERT INTO public.notice VALUES (2146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688965644); INSERT INTO public.notice VALUES (2147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688966244); INSERT INTO public.notice VALUES (2148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688966844); INSERT INTO public.notice VALUES (2149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688967443); INSERT INTO public.notice VALUES (2150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688968044); INSERT INTO public.notice VALUES (2787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689350604); INSERT INTO public.notice VALUES (2790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689352404); INSERT INTO public.notice VALUES (2791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689353004); INSERT INTO public.notice VALUES (2792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689353603); INSERT INTO public.notice VALUES (2151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688968644); INSERT INTO public.notice VALUES (2152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688969244); INSERT INTO public.notice VALUES (2153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688969844); INSERT INTO public.notice VALUES (2154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688970444); INSERT INTO public.notice VALUES (2155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688971044); INSERT INTO public.notice VALUES (2156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688971644); INSERT INTO public.notice VALUES (2157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688972244); INSERT INTO public.notice VALUES (2158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688972844); INSERT INTO public.notice VALUES (2159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688973443); INSERT INTO public.notice VALUES (2160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688974044); INSERT INTO public.notice VALUES (2161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688974643); INSERT INTO public.notice VALUES (2162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688975244); INSERT INTO public.notice VALUES (2163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688975844); INSERT INTO public.notice VALUES (2164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688976443); INSERT INTO public.notice VALUES (2165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688977043); INSERT INTO public.notice VALUES (2166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688977644); INSERT INTO public.notice VALUES (2167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688978244); INSERT INTO public.notice VALUES (2168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688978844); INSERT INTO public.notice VALUES (2169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688979444); INSERT INTO public.notice VALUES (2170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688980044); INSERT INTO public.notice VALUES (2171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688980644); INSERT INTO public.notice VALUES (2172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688981244); INSERT INTO public.notice VALUES (2173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688981844); INSERT INTO public.notice VALUES (2194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688994445); INSERT INTO public.notice VALUES (2195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688995044); INSERT INTO public.notice VALUES (2196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688995644); INSERT INTO public.notice VALUES (2197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688996244); INSERT INTO public.notice VALUES (2198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688996844); INSERT INTO public.notice VALUES (2174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688982444); INSERT INTO public.notice VALUES (2175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688983043); INSERT INTO public.notice VALUES (2176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688983643); INSERT INTO public.notice VALUES (2177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688984244); INSERT INTO public.notice VALUES (2178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688984844); INSERT INTO public.notice VALUES (2179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688985444); INSERT INTO public.notice VALUES (2180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688986044); INSERT INTO public.notice VALUES (2181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688986643); INSERT INTO public.notice VALUES (2182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688987244); INSERT INTO public.notice VALUES (2183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688987844); INSERT INTO public.notice VALUES (2184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688988444); INSERT INTO public.notice VALUES (2185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688989044); INSERT INTO public.notice VALUES (2186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688989644); INSERT INTO public.notice VALUES (2187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688990244); INSERT INTO public.notice VALUES (2188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688990843); INSERT INTO public.notice VALUES (2189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688991444); INSERT INTO public.notice VALUES (2190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688992044); INSERT INTO public.notice VALUES (2191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688992644); INSERT INTO public.notice VALUES (2192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688993244); INSERT INTO public.notice VALUES (2193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688993844); INSERT INTO public.notice VALUES (2200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688998044); INSERT INTO public.notice VALUES (2201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688998644); INSERT INTO public.notice VALUES (2207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689002244); INSERT INTO public.notice VALUES (2208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689002844); INSERT INTO public.notice VALUES (2209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689003444); INSERT INTO public.notice VALUES (2210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689004044); INSERT INTO public.notice VALUES (2211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689004644); INSERT INTO public.notice VALUES (2212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689005244); INSERT INTO public.notice VALUES (2199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688997444); INSERT INTO public.notice VALUES (2202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688999244); INSERT INTO public.notice VALUES (2203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1688999844); INSERT INTO public.notice VALUES (2204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689000444); INSERT INTO public.notice VALUES (2205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689001045); INSERT INTO public.notice VALUES (2206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689001644); INSERT INTO public.notice VALUES (2214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689006444); INSERT INTO public.notice VALUES (2798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689357204); INSERT INTO public.notice VALUES (2801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689359004); INSERT INTO public.notice VALUES (2802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689359604); INSERT INTO public.notice VALUES (2898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689417204); INSERT INTO public.notice VALUES (2900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689418403); INSERT INTO public.notice VALUES (2903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689420203); INSERT INTO public.notice VALUES (2904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689420803); INSERT INTO public.notice VALUES (2905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689421404); INSERT INTO public.notice VALUES (2213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689005844); INSERT INTO public.notice VALUES (2215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689007044); INSERT INTO public.notice VALUES (2216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689007644); INSERT INTO public.notice VALUES (2217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689008244); INSERT INTO public.notice VALUES (2218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689008844); INSERT INTO public.notice VALUES (2219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689009444); INSERT INTO public.notice VALUES (2220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689010044); INSERT INTO public.notice VALUES (2221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689010644); INSERT INTO public.notice VALUES (2222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689011244); INSERT INTO public.notice VALUES (2223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689011844); INSERT INTO public.notice VALUES (2224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689012444); INSERT INTO public.notice VALUES (2225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689013044); INSERT INTO public.notice VALUES (2226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689013644); INSERT INTO public.notice VALUES (2227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689014244); INSERT INTO public.notice VALUES (2228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689014844); INSERT INTO public.notice VALUES (2229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689015444); INSERT INTO public.notice VALUES (2230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689016044); INSERT INTO public.notice VALUES (2231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689016645); INSERT INTO public.notice VALUES (2232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689017244); INSERT INTO public.notice VALUES (2233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689017844); INSERT INTO public.notice VALUES (2236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689019644); INSERT INTO public.notice VALUES (2237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689020244); INSERT INTO public.notice VALUES (2238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689020843); INSERT INTO public.notice VALUES (2241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689022644); INSERT INTO public.notice VALUES (2246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689025644); INSERT INTO public.notice VALUES (2250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689028044); INSERT INTO public.notice VALUES (2803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689360204); INSERT INTO public.notice VALUES (2806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689362003); INSERT INTO public.notice VALUES (2807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689362603); INSERT INTO public.notice VALUES (2234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689018444); INSERT INTO public.notice VALUES (2235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689019044); INSERT INTO public.notice VALUES (2239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689021444); INSERT INTO public.notice VALUES (2240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689022044); INSERT INTO public.notice VALUES (2242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689023244); INSERT INTO public.notice VALUES (2243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689023844); INSERT INTO public.notice VALUES (2244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689024444); INSERT INTO public.notice VALUES (2245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689025044); INSERT INTO public.notice VALUES (2247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689026244); INSERT INTO public.notice VALUES (2248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689026844); INSERT INTO public.notice VALUES (2249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689027444); INSERT INTO public.notice VALUES (2251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689028644); INSERT INTO public.notice VALUES (2252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689029244); INSERT INTO public.notice VALUES (2253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689029844); INSERT INTO public.notice VALUES (2254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689030444); INSERT INTO public.notice VALUES (2255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689031044); INSERT INTO public.notice VALUES (2257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689032244); INSERT INTO public.notice VALUES (2261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689034644); INSERT INTO public.notice VALUES (2271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689040644); INSERT INTO public.notice VALUES (2272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689041244); INSERT INTO public.notice VALUES (2273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689041843); INSERT INTO public.notice VALUES (2274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689042444); INSERT INTO public.notice VALUES (2804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689360804); INSERT INTO public.notice VALUES (2805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689361404); INSERT INTO public.notice VALUES (2809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689363805); INSERT INTO public.notice VALUES (2811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689365003); INSERT INTO public.notice VALUES (2812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689365605); INSERT INTO public.notice VALUES (2814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689366803); INSERT INTO public.notice VALUES (2816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689368004); INSERT INTO public.notice VALUES (2256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689031644); INSERT INTO public.notice VALUES (2258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689032844); INSERT INTO public.notice VALUES (2259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689033444); INSERT INTO public.notice VALUES (2260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689034044); INSERT INTO public.notice VALUES (2262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689035244); INSERT INTO public.notice VALUES (2263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689035844); INSERT INTO public.notice VALUES (2264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689036444); INSERT INTO public.notice VALUES (2265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689037044); INSERT INTO public.notice VALUES (2266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689037644); INSERT INTO public.notice VALUES (2267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689038244); INSERT INTO public.notice VALUES (2268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689038844); INSERT INTO public.notice VALUES (2269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689039444); INSERT INTO public.notice VALUES (2270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689040044); INSERT INTO public.notice VALUES (2275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689043044); INSERT INTO public.notice VALUES (2276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689043644); INSERT INTO public.notice VALUES (2277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689044244); INSERT INTO public.notice VALUES (2278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689044844); INSERT INTO public.notice VALUES (2279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689045444); INSERT INTO public.notice VALUES (2280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689046044); INSERT INTO public.notice VALUES (2281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689046644); INSERT INTO public.notice VALUES (2282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689047244); INSERT INTO public.notice VALUES (2283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689047844); INSERT INTO public.notice VALUES (2284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689048444); INSERT INTO public.notice VALUES (2285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689049044); INSERT INTO public.notice VALUES (2286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689049644); INSERT INTO public.notice VALUES (2287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689050244); INSERT INTO public.notice VALUES (2288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689050844); INSERT INTO public.notice VALUES (2289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689051444); INSERT INTO public.notice VALUES (2290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689052044); INSERT INTO public.notice VALUES (2808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689363204); INSERT INTO public.notice VALUES (2810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689364403); INSERT INTO public.notice VALUES (2902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689419604); INSERT INTO public.notice VALUES (2907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689422603); INSERT INTO public.notice VALUES (2910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689424403); INSERT INTO public.notice VALUES (2912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689425602); INSERT INTO public.notice VALUES (2913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689426204); INSERT INTO public.notice VALUES (2943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689444203); INSERT INTO public.notice VALUES (2944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689444803); INSERT INTO public.notice VALUES (2947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689446604); INSERT INTO public.notice VALUES (2949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689447804); INSERT INTO public.notice VALUES (2950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689448403); INSERT INTO public.notice VALUES (2951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689449003); INSERT INTO public.notice VALUES (2952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689449604); INSERT INTO public.notice VALUES (2291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689052644); INSERT INTO public.notice VALUES (2292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689053245); INSERT INTO public.notice VALUES (2293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689053844); INSERT INTO public.notice VALUES (2294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689054443); INSERT INTO public.notice VALUES (2295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689055043); INSERT INTO public.notice VALUES (2296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689055644); INSERT INTO public.notice VALUES (2297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689056245); INSERT INTO public.notice VALUES (2298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689056844); INSERT INTO public.notice VALUES (2299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689057444); INSERT INTO public.notice VALUES (2300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689058044); INSERT INTO public.notice VALUES (2301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689058644); INSERT INTO public.notice VALUES (2302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689059244); INSERT INTO public.notice VALUES (2303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689059844); INSERT INTO public.notice VALUES (2304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689060450); INSERT INTO public.notice VALUES (2305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689061044); INSERT INTO public.notice VALUES (2306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689061644); INSERT INTO public.notice VALUES (2307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689062245); INSERT INTO public.notice VALUES (2308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689062844); INSERT INTO public.notice VALUES (2309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689063444); INSERT INTO public.notice VALUES (2310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689064044); INSERT INTO public.notice VALUES (2311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689064644); INSERT INTO public.notice VALUES (2312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689065244); INSERT INTO public.notice VALUES (2313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689065844); INSERT INTO public.notice VALUES (2314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689066444); INSERT INTO public.notice VALUES (2315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689067044); INSERT INTO public.notice VALUES (2316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689067644); INSERT INTO public.notice VALUES (2317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689068244); INSERT INTO public.notice VALUES (2318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689068844); INSERT INTO public.notice VALUES (2319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689069444); INSERT INTO public.notice VALUES (2320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689070044); INSERT INTO public.notice VALUES (2322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689071244); INSERT INTO public.notice VALUES (2323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689071844); INSERT INTO public.notice VALUES (2326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689073644); INSERT INTO public.notice VALUES (2813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689366203); INSERT INTO public.notice VALUES (2906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689422003); INSERT INTO public.notice VALUES (2908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689423202); INSERT INTO public.notice VALUES (2909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689423804); INSERT INTO public.notice VALUES (2911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689425003); INSERT INTO public.notice VALUES (2914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689426803); INSERT INTO public.notice VALUES (2916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689428004); INSERT INTO public.notice VALUES (2953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689450204); INSERT INTO public.notice VALUES (2954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689450803); INSERT INTO public.notice VALUES (2973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689462202); INSERT INTO public.notice VALUES (2321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689070643); INSERT INTO public.notice VALUES (2324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689072444); INSERT INTO public.notice VALUES (2325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689073044); INSERT INTO public.notice VALUES (2327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689074244); INSERT INTO public.notice VALUES (2328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689074846); INSERT INTO public.notice VALUES (2329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689075444); INSERT INTO public.notice VALUES (2330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689076044); INSERT INTO public.notice VALUES (2331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689076644); INSERT INTO public.notice VALUES (2332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689077244); INSERT INTO public.notice VALUES (2333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689077844); INSERT INTO public.notice VALUES (2334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689078444); INSERT INTO public.notice VALUES (2335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689079044); INSERT INTO public.notice VALUES (2336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689079644); INSERT INTO public.notice VALUES (2337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689080244); INSERT INTO public.notice VALUES (2338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689080844); INSERT INTO public.notice VALUES (2339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689081444); INSERT INTO public.notice VALUES (2340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689082044); INSERT INTO public.notice VALUES (2341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689082644); INSERT INTO public.notice VALUES (2342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689083244); INSERT INTO public.notice VALUES (2343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689083844); INSERT INTO public.notice VALUES (2344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689084444); INSERT INTO public.notice VALUES (2345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689085044); INSERT INTO public.notice VALUES (2356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689091644); INSERT INTO public.notice VALUES (2357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689092244); INSERT INTO public.notice VALUES (2368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689098844); INSERT INTO public.notice VALUES (2369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689099444); INSERT INTO public.notice VALUES (2370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689100044); INSERT INTO public.notice VALUES (2371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689100644); INSERT INTO public.notice VALUES (2346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689085644); INSERT INTO public.notice VALUES (2347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689086244); INSERT INTO public.notice VALUES (2348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689086844); INSERT INTO public.notice VALUES (2349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689087444); INSERT INTO public.notice VALUES (2350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689088044); INSERT INTO public.notice VALUES (2351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689088644); INSERT INTO public.notice VALUES (2352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689089244); INSERT INTO public.notice VALUES (2353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689089845); INSERT INTO public.notice VALUES (2354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689090444); INSERT INTO public.notice VALUES (2355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689091044); INSERT INTO public.notice VALUES (2358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689092844); INSERT INTO public.notice VALUES (2359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689093443); INSERT INTO public.notice VALUES (2360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689094044); INSERT INTO public.notice VALUES (2361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689094644); INSERT INTO public.notice VALUES (2362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689095244); INSERT INTO public.notice VALUES (2363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689095843); INSERT INTO public.notice VALUES (2364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689096444); INSERT INTO public.notice VALUES (2365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689097044); INSERT INTO public.notice VALUES (2366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689097644); INSERT INTO public.notice VALUES (2367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689098244); INSERT INTO public.notice VALUES (2815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689367404); INSERT INTO public.notice VALUES (2915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689427403); INSERT INTO public.notice VALUES (2917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689428604); INSERT INTO public.notice VALUES (2918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689429203); INSERT INTO public.notice VALUES (2955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689451402); INSERT INTO public.notice VALUES (2956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689452004); INSERT INTO public.notice VALUES (2957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689452603); INSERT INTO public.notice VALUES (2974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689462804); INSERT INTO public.notice VALUES (2975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689463404); INSERT INTO public.notice VALUES (2372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689101244); INSERT INTO public.notice VALUES (2373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689101844); INSERT INTO public.notice VALUES (2374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689102444); INSERT INTO public.notice VALUES (2375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689103044); INSERT INTO public.notice VALUES (2376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689103645); INSERT INTO public.notice VALUES (2377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689104244); INSERT INTO public.notice VALUES (2378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689104844); INSERT INTO public.notice VALUES (2379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689105444); INSERT INTO public.notice VALUES (2380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689106044); INSERT INTO public.notice VALUES (2381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689106644); INSERT INTO public.notice VALUES (2382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689107244); INSERT INTO public.notice VALUES (2383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689107844); INSERT INTO public.notice VALUES (2384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689108444); INSERT INTO public.notice VALUES (2385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689109044); INSERT INTO public.notice VALUES (2386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689109644); INSERT INTO public.notice VALUES (2387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689110244); INSERT INTO public.notice VALUES (2388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689110844); INSERT INTO public.notice VALUES (2396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689115644); INSERT INTO public.notice VALUES (2397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689116244); INSERT INTO public.notice VALUES (2400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689118044); INSERT INTO public.notice VALUES (2401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689118644); INSERT INTO public.notice VALUES (2403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689119844); INSERT INTO public.notice VALUES (2817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689368603); INSERT INTO public.notice VALUES (2819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689369804); INSERT INTO public.notice VALUES (2823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689372204); INSERT INTO public.notice VALUES (2824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689372803); INSERT INTO public.notice VALUES (2825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689373403); INSERT INTO public.notice VALUES (2919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689429805); INSERT INTO public.notice VALUES (2922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689431603); INSERT INTO public.notice VALUES (2389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689111444); INSERT INTO public.notice VALUES (2390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689112044); INSERT INTO public.notice VALUES (2391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689112644); INSERT INTO public.notice VALUES (2392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689113244); INSERT INTO public.notice VALUES (2393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689113844); INSERT INTO public.notice VALUES (2394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689114444); INSERT INTO public.notice VALUES (2395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689115044); INSERT INTO public.notice VALUES (2398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689116844); INSERT INTO public.notice VALUES (2399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689117444); INSERT INTO public.notice VALUES (2402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689119244); INSERT INTO public.notice VALUES (2404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689120444); INSERT INTO public.notice VALUES (2405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689121044); INSERT INTO public.notice VALUES (2406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689121644); INSERT INTO public.notice VALUES (2407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689122244); INSERT INTO public.notice VALUES (2408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689122844); INSERT INTO public.notice VALUES (2410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689124044); INSERT INTO public.notice VALUES (2411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689124644); INSERT INTO public.notice VALUES (2412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689125244); INSERT INTO public.notice VALUES (2413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689125844); INSERT INTO public.notice VALUES (2414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689126444); INSERT INTO public.notice VALUES (2415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689127044); INSERT INTO public.notice VALUES (2416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689127644); INSERT INTO public.notice VALUES (2417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689128244); INSERT INTO public.notice VALUES (2418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689128844); INSERT INTO public.notice VALUES (2818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689369203); INSERT INTO public.notice VALUES (2820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689370403); INSERT INTO public.notice VALUES (2821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689371003); INSERT INTO public.notice VALUES (2822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689371604); INSERT INTO public.notice VALUES (2826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689374004); INSERT INTO public.notice VALUES (2409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689123444); INSERT INTO public.notice VALUES (2419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689129445); INSERT INTO public.notice VALUES (2420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689130044); INSERT INTO public.notice VALUES (2421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689130644); INSERT INTO public.notice VALUES (2422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689131244); INSERT INTO public.notice VALUES (2423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689131847); INSERT INTO public.notice VALUES (2424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689132444); INSERT INTO public.notice VALUES (2425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689133044); INSERT INTO public.notice VALUES (2426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689133645); INSERT INTO public.notice VALUES (2427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689134244); INSERT INTO public.notice VALUES (2428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689134844); INSERT INTO public.notice VALUES (2429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689135444); INSERT INTO public.notice VALUES (2430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689136044); INSERT INTO public.notice VALUES (2431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689136644); INSERT INTO public.notice VALUES (2432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689137244); INSERT INTO public.notice VALUES (2433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689137844); INSERT INTO public.notice VALUES (2434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689138444); INSERT INTO public.notice VALUES (2435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689139044); INSERT INTO public.notice VALUES (2436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689139644); INSERT INTO public.notice VALUES (2437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689140244); INSERT INTO public.notice VALUES (2438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689140844); INSERT INTO public.notice VALUES (2439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689141444); INSERT INTO public.notice VALUES (2443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689143844); INSERT INTO public.notice VALUES (2446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689145644); INSERT INTO public.notice VALUES (2447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689146243); INSERT INTO public.notice VALUES (2448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689146844); INSERT INTO public.notice VALUES (2449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689147444); INSERT INTO public.notice VALUES (2450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689148044); INSERT INTO public.notice VALUES (2440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689142044); INSERT INTO public.notice VALUES (2441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689142644); INSERT INTO public.notice VALUES (2442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689143244); INSERT INTO public.notice VALUES (2444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689144444); INSERT INTO public.notice VALUES (2445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689145044); INSERT INTO public.notice VALUES (2452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689149244); INSERT INTO public.notice VALUES (2453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689149844); INSERT INTO public.notice VALUES (2454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689150451); INSERT INTO public.notice VALUES (2455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689151044); INSERT INTO public.notice VALUES (2456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689151644); INSERT INTO public.notice VALUES (2457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689152244); INSERT INTO public.notice VALUES (2458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689152844); INSERT INTO public.notice VALUES (2827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689374604); INSERT INTO public.notice VALUES (2829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689375803); INSERT INTO public.notice VALUES (2831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689377003); INSERT INTO public.notice VALUES (2451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689148644); INSERT INTO public.notice VALUES (2459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689153445); INSERT INTO public.notice VALUES (2460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689154044); INSERT INTO public.notice VALUES (2461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689154644); INSERT INTO public.notice VALUES (2462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689155244); INSERT INTO public.notice VALUES (2463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689155844); INSERT INTO public.notice VALUES (2464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689156444); INSERT INTO public.notice VALUES (2465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689157044); INSERT INTO public.notice VALUES (2466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689157644); INSERT INTO public.notice VALUES (2467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689158244); INSERT INTO public.notice VALUES (2468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689158844); INSERT INTO public.notice VALUES (2469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689159444); INSERT INTO public.notice VALUES (2470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689160044); INSERT INTO public.notice VALUES (2471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689160644); INSERT INTO public.notice VALUES (2472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689161244); INSERT INTO public.notice VALUES (2475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689163044); INSERT INTO public.notice VALUES (2476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689163644); INSERT INTO public.notice VALUES (2477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689164244); INSERT INTO public.notice VALUES (2478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689164844); INSERT INTO public.notice VALUES (2479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689165444); INSERT INTO public.notice VALUES (2828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689375203); INSERT INTO public.notice VALUES (2920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689430404); INSERT INTO public.notice VALUES (2921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689431004); INSERT INTO public.notice VALUES (2923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689432204); INSERT INTO public.notice VALUES (2924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689432804); INSERT INTO public.notice VALUES (2925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689433403); INSERT INTO public.notice VALUES (2958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689453203); INSERT INTO public.notice VALUES (2959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689453804); INSERT INTO public.notice VALUES (2960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689454404); INSERT INTO public.notice VALUES (2473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689161844); INSERT INTO public.notice VALUES (2474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689162444); INSERT INTO public.notice VALUES (2480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689166044); INSERT INTO public.notice VALUES (2481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689166644); INSERT INTO public.notice VALUES (2482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689167244); INSERT INTO public.notice VALUES (2483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689167844); INSERT INTO public.notice VALUES (2484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689168444); INSERT INTO public.notice VALUES (2485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689169044); INSERT INTO public.notice VALUES (2486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689169644); INSERT INTO public.notice VALUES (2487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689170244); INSERT INTO public.notice VALUES (2488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689170844); INSERT INTO public.notice VALUES (2489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689171444); INSERT INTO public.notice VALUES (2490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689172044); INSERT INTO public.notice VALUES (2491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689172644); INSERT INTO public.notice VALUES (2492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689173505); INSERT INTO public.notice VALUES (2493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689174105); INSERT INTO public.notice VALUES (2494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689174705); INSERT INTO public.notice VALUES (2495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689175305); INSERT INTO public.notice VALUES (2496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689175905); INSERT INTO public.notice VALUES (2497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689176505); INSERT INTO public.notice VALUES (2498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689177105); INSERT INTO public.notice VALUES (2499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689177705); INSERT INTO public.notice VALUES (2500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689178305); INSERT INTO public.notice VALUES (2501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689178905); INSERT INTO public.notice VALUES (2502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689179505); INSERT INTO public.notice VALUES (2503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689180106); INSERT INTO public.notice VALUES (2504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689180705); INSERT INTO public.notice VALUES (2505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689181305); INSERT INTO public.notice VALUES (2506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689181905); INSERT INTO public.notice VALUES (2511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689184905); INSERT INTO public.notice VALUES (2512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689185505); INSERT INTO public.notice VALUES (2513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689186105); INSERT INTO public.notice VALUES (2514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689186705); INSERT INTO public.notice VALUES (2515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689187305); INSERT INTO public.notice VALUES (2516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689187905); INSERT INTO public.notice VALUES (2517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689188505); INSERT INTO public.notice VALUES (2520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689190305); INSERT INTO public.notice VALUES (2521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689190905); INSERT INTO public.notice VALUES (2531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689196905); INSERT INTO public.notice VALUES (2532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689197505); INSERT INTO public.notice VALUES (2533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689198105); INSERT INTO public.notice VALUES (2534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689198704); INSERT INTO public.notice VALUES (2507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689182505); INSERT INTO public.notice VALUES (2508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689183105); INSERT INTO public.notice VALUES (2509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689183705); INSERT INTO public.notice VALUES (2510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689184305); INSERT INTO public.notice VALUES (2518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689189105); INSERT INTO public.notice VALUES (2519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689189705); INSERT INTO public.notice VALUES (2522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689191505); INSERT INTO public.notice VALUES (2523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689192105); INSERT INTO public.notice VALUES (2524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689192705); INSERT INTO public.notice VALUES (2525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689193304); INSERT INTO public.notice VALUES (2526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689193905); INSERT INTO public.notice VALUES (2527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689194504); INSERT INTO public.notice VALUES (2528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689195105); INSERT INTO public.notice VALUES (2529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689195705); INSERT INTO public.notice VALUES (2530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689196305); INSERT INTO public.notice VALUES (2535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689199305); INSERT INTO public.notice VALUES (2536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689199905); INSERT INTO public.notice VALUES (2537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689200505); INSERT INTO public.notice VALUES (2538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689201104); INSERT INTO public.notice VALUES (2539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689201705); INSERT INTO public.notice VALUES (2540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689202304); INSERT INTO public.notice VALUES (2541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689202905); INSERT INTO public.notice VALUES (2542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689203505); INSERT INTO public.notice VALUES (2543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689204105); INSERT INTO public.notice VALUES (2544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689204705); INSERT INTO public.notice VALUES (2545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689205305); INSERT INTO public.notice VALUES (2546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689205904); INSERT INTO public.notice VALUES (2547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689206505); INSERT INTO public.notice VALUES (2548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689207105); INSERT INTO public.notice VALUES (2549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689207705); INSERT INTO public.notice VALUES (2550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689208305); INSERT INTO public.notice VALUES (2551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689208905); INSERT INTO public.notice VALUES (2552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689209504); INSERT INTO public.notice VALUES (2553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689210104); INSERT INTO public.notice VALUES (2554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689210704); INSERT INTO public.notice VALUES (2555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689211305); INSERT INTO public.notice VALUES (2556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689211905); INSERT INTO public.notice VALUES (2557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689212505); INSERT INTO public.notice VALUES (2558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689213105); INSERT INTO public.notice VALUES (2559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689213705); INSERT INTO public.notice VALUES (2560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689214304); INSERT INTO public.notice VALUES (2561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689214904); INSERT INTO public.notice VALUES (2562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689215505); INSERT INTO public.notice VALUES (2563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689216105); INSERT INTO public.notice VALUES (2564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689216705); INSERT INTO public.notice VALUES (2565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689217305); INSERT INTO public.notice VALUES (2566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689217905); INSERT INTO public.notice VALUES (2567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689218505); INSERT INTO public.notice VALUES (2568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689219105); INSERT INTO public.notice VALUES (2569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689219705); INSERT INTO public.notice VALUES (2584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689228705); INSERT INTO public.notice VALUES (2585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689229305); INSERT INTO public.notice VALUES (2830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689376404); INSERT INTO public.notice VALUES (2834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689378804); INSERT INTO public.notice VALUES (2926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689434002); INSERT INTO public.notice VALUES (2928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689435203); INSERT INTO public.notice VALUES (2929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689435803); INSERT INTO public.notice VALUES (2570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689220304); INSERT INTO public.notice VALUES (2571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689220905); INSERT INTO public.notice VALUES (2572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689221505); INSERT INTO public.notice VALUES (2573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689222105); INSERT INTO public.notice VALUES (2574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689222706); INSERT INTO public.notice VALUES (2575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689223305); INSERT INTO public.notice VALUES (2576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689223905); INSERT INTO public.notice VALUES (2577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689224505); INSERT INTO public.notice VALUES (2578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689225105); INSERT INTO public.notice VALUES (2579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689225705); INSERT INTO public.notice VALUES (2580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689226304); INSERT INTO public.notice VALUES (2581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689226905); INSERT INTO public.notice VALUES (2582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689227505); INSERT INTO public.notice VALUES (2583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689228105); INSERT INTO public.notice VALUES (2586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689229905); INSERT INTO public.notice VALUES (2587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689230508); INSERT INTO public.notice VALUES (2588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689231105); INSERT INTO public.notice VALUES (2589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689231705); INSERT INTO public.notice VALUES (2590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689232305); INSERT INTO public.notice VALUES (2591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689232904); INSERT INTO public.notice VALUES (2592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689233506); INSERT INTO public.notice VALUES (2593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689234105); INSERT INTO public.notice VALUES (2594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689234705); INSERT INTO public.notice VALUES (2595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689235305); INSERT INTO public.notice VALUES (2596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689235905); INSERT INTO public.notice VALUES (2597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689236505); INSERT INTO public.notice VALUES (2598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689237105); INSERT INTO public.notice VALUES (2599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689237705); INSERT INTO public.notice VALUES (2600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689238305); INSERT INTO public.notice VALUES (2605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689241305); INSERT INTO public.notice VALUES (2832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689377603); INSERT INTO public.notice VALUES (2833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689378204); INSERT INTO public.notice VALUES (2842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689383623); INSERT INTO public.notice VALUES (2846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689386003); INSERT INTO public.notice VALUES (2849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689387803); INSERT INTO public.notice VALUES (2850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': The requested URL returned error: 502 ', 1689388432); INSERT INTO public.notice VALUES (2851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689389037); INSERT INTO public.notice VALUES (2852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689389613); INSERT INTO public.notice VALUES (2853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689390203); INSERT INTO public.notice VALUES (2855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689391404); INSERT INTO public.notice VALUES (2857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689392603); INSERT INTO public.notice VALUES (2860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689394403); INSERT INTO public.notice VALUES (2862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689395604); INSERT INTO public.notice VALUES (2601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689238905); INSERT INTO public.notice VALUES (2602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689239505); INSERT INTO public.notice VALUES (2603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689240105); INSERT INTO public.notice VALUES (2604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689240704); INSERT INTO public.notice VALUES (2606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' error: could not fetch origin ', 1689241904); INSERT INTO public.notice VALUES (2607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689242602); INSERT INTO public.notice VALUES (2608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689243205); INSERT INTO public.notice VALUES (2609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689243803); INSERT INTO public.notice VALUES (2610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689244403); INSERT INTO public.notice VALUES (2611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689245004); INSERT INTO public.notice VALUES (2612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689245604); INSERT INTO public.notice VALUES (2613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689246203); INSERT INTO public.notice VALUES (2614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689246803); INSERT INTO public.notice VALUES (2615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689247404); INSERT INTO public.notice VALUES (2616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689248003); INSERT INTO public.notice VALUES (2617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689248603); INSERT INTO public.notice VALUES (2619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689249804); INSERT INTO public.notice VALUES (2620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689250403); INSERT INTO public.notice VALUES (2622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689251604); INSERT INTO public.notice VALUES (2625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689253404); INSERT INTO public.notice VALUES (2627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689254603); INSERT INTO public.notice VALUES (2632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689257603); INSERT INTO public.notice VALUES (2635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689259403); INSERT INTO public.notice VALUES (2636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689260005); INSERT INTO public.notice VALUES (2637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689260604); INSERT INTO public.notice VALUES (2639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689261802); INSERT INTO public.notice VALUES (2640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689262404); INSERT INTO public.notice VALUES (2641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689263003); INSERT INTO public.notice VALUES (2835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689379403); INSERT INTO public.notice VALUES (2927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689434604); INSERT INTO public.notice VALUES (2618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689249205); INSERT INTO public.notice VALUES (2621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689251002); INSERT INTO public.notice VALUES (2623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689252204); INSERT INTO public.notice VALUES (2624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689252803); INSERT INTO public.notice VALUES (2626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689254004); INSERT INTO public.notice VALUES (2628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689255203); INSERT INTO public.notice VALUES (2629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689255804); INSERT INTO public.notice VALUES (2630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689256403); INSERT INTO public.notice VALUES (2631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689257003); INSERT INTO public.notice VALUES (2633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689258204); INSERT INTO public.notice VALUES (2634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689258803); INSERT INTO public.notice VALUES (2638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689261203); INSERT INTO public.notice VALUES (2642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689263603); INSERT INTO public.notice VALUES (2643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689264204); INSERT INTO public.notice VALUES (2644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689264804); INSERT INTO public.notice VALUES (2645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689265403); INSERT INTO public.notice VALUES (2646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689266006); INSERT INTO public.notice VALUES (2647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689266604); INSERT INTO public.notice VALUES (2648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689267204); INSERT INTO public.notice VALUES (2649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689267803); INSERT INTO public.notice VALUES (2650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689268402); INSERT INTO public.notice VALUES (2651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689269003); INSERT INTO public.notice VALUES (2652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689269604); INSERT INTO public.notice VALUES (2653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689270203); INSERT INTO public.notice VALUES (2654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689270804); INSERT INTO public.notice VALUES (2655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689271403); INSERT INTO public.notice VALUES (2656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689272003); INSERT INTO public.notice VALUES (2657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689272602); INSERT INTO public.notice VALUES (2658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689273204); INSERT INTO public.notice VALUES (2659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689273804); INSERT INTO public.notice VALUES (2660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689274403); INSERT INTO public.notice VALUES (2661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689275005); INSERT INTO public.notice VALUES (2836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689380003); INSERT INTO public.notice VALUES (2837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689380604); INSERT INTO public.notice VALUES (2838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689381203); INSERT INTO public.notice VALUES (2839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689381803); INSERT INTO public.notice VALUES (2840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': The requested URL returned error: 502 ', 1689382434); INSERT INTO public.notice VALUES (2841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': The requested URL returned error: 502 ', 1689383034); INSERT INTO public.notice VALUES (2843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689384203); INSERT INTO public.notice VALUES (2930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689436404); INSERT INTO public.notice VALUES (2931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689437004); INSERT INTO public.notice VALUES (2933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689438203); INSERT INTO public.notice VALUES (2961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689455003); INSERT INTO public.notice VALUES (2963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689456204); INSERT INTO public.notice VALUES (2977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689464604); INSERT INTO public.notice VALUES (2979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689465803); INSERT INTO public.notice VALUES (2662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689275604); INSERT INTO public.notice VALUES (2663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689276203); INSERT INTO public.notice VALUES (2664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689276802); INSERT INTO public.notice VALUES (2665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689277404); INSERT INTO public.notice VALUES (2666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689278003); INSERT INTO public.notice VALUES (2667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689278603); INSERT INTO public.notice VALUES (2668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689279204); INSERT INTO public.notice VALUES (2669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689279804); INSERT INTO public.notice VALUES (2670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689280403); INSERT INTO public.notice VALUES (2671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689281004); INSERT INTO public.notice VALUES (2672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689281604); INSERT INTO public.notice VALUES (2673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689282203); INSERT INTO public.notice VALUES (2674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689282803); INSERT INTO public.notice VALUES (2675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689283404); INSERT INTO public.notice VALUES (2676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689284004); INSERT INTO public.notice VALUES (2677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689284603); INSERT INTO public.notice VALUES (2678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689285202); INSERT INTO public.notice VALUES (2679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689285804); INSERT INTO public.notice VALUES (2680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689286404); INSERT INTO public.notice VALUES (2682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689287602); INSERT INTO public.notice VALUES (2683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689288204); INSERT INTO public.notice VALUES (2685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689289403); INSERT INTO public.notice VALUES (2686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689290004); INSERT INTO public.notice VALUES (2687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689290603); INSERT INTO public.notice VALUES (2689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689291802); INSERT INTO public.notice VALUES (2844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689384807); INSERT INTO public.notice VALUES (2845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689385403); INSERT INTO public.notice VALUES (2847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689386602); INSERT INTO public.notice VALUES (2848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': The requested URL returned error: 503 ', 1689387329); INSERT INTO public.notice VALUES (2854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689390803); INSERT INTO public.notice VALUES (2856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689392003); INSERT INTO public.notice VALUES (2681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689287003); INSERT INTO public.notice VALUES (2684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689288804); INSERT INTO public.notice VALUES (2688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689291203); INSERT INTO public.notice VALUES (2690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689292404); INSERT INTO public.notice VALUES (2691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689293003); INSERT INTO public.notice VALUES (2692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689293603); INSERT INTO public.notice VALUES (2693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689294204); INSERT INTO public.notice VALUES (2694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689294804); INSERT INTO public.notice VALUES (2695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689295403); INSERT INTO public.notice VALUES (2696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689296002); INSERT INTO public.notice VALUES (2697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689296604); INSERT INTO public.notice VALUES (2698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689297203); INSERT INTO public.notice VALUES (2699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689297803); INSERT INTO public.notice VALUES (2700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689298404); INSERT INTO public.notice VALUES (2701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689299004); INSERT INTO public.notice VALUES (2702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689299603); INSERT INTO public.notice VALUES (2703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689300203); INSERT INTO public.notice VALUES (2704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689300804); INSERT INTO public.notice VALUES (2706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689302003); INSERT INTO public.notice VALUES (2707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689302605); INSERT INTO public.notice VALUES (2708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689303204); INSERT INTO public.notice VALUES (2709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689303803); INSERT INTO public.notice VALUES (2715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689307404); INSERT INTO public.notice VALUES (2717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689308603); INSERT INTO public.notice VALUES (2719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689309803); INSERT INTO public.notice VALUES (2858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689393204); INSERT INTO public.notice VALUES (2932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689437603); INSERT INTO public.notice VALUES (2962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689455604); INSERT INTO public.notice VALUES (2980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689466403); INSERT INTO public.notice VALUES (2981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689467005); INSERT INTO public.notice VALUES (2705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689301403); INSERT INTO public.notice VALUES (2710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689304403); INSERT INTO public.notice VALUES (2711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689305004); INSERT INTO public.notice VALUES (2712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689305604); INSERT INTO public.notice VALUES (2713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689306203); INSERT INTO public.notice VALUES (2714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689306804); INSERT INTO public.notice VALUES (2716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689308003); INSERT INTO public.notice VALUES (2718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689309204); INSERT INTO public.notice VALUES (2720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689310403); INSERT INTO public.notice VALUES (2721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689311005); INSERT INTO public.notice VALUES (2722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689311604); INSERT INTO public.notice VALUES (2723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689312203); INSERT INTO public.notice VALUES (2724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689312803); INSERT INTO public.notice VALUES (2725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689313404); INSERT INTO public.notice VALUES (2726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689314003); INSERT INTO public.notice VALUES (2727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689314603); INSERT INTO public.notice VALUES (2728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689315204); INSERT INTO public.notice VALUES (2729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689315804); INSERT INTO public.notice VALUES (2730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689316403); INSERT INTO public.notice VALUES (2731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689317003); INSERT INTO public.notice VALUES (2732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689317604); INSERT INTO public.notice VALUES (2733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689318205); INSERT INTO public.notice VALUES (2734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689318803); INSERT INTO public.notice VALUES (2735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689319405); INSERT INTO public.notice VALUES (2736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689320004); INSERT INTO public.notice VALUES (2737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689320603); INSERT INTO public.notice VALUES (2738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689321203); INSERT INTO public.notice VALUES (2739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689321804); INSERT INTO public.notice VALUES (2859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689393804); INSERT INTO public.notice VALUES (2934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689438804); INSERT INTO public.notice VALUES (2983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689468203); INSERT INTO public.notice VALUES (2984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689468804); INSERT INTO public.notice VALUES (2987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689470603); INSERT INTO public.notice VALUES (4646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690467239); INSERT INTO public.notice VALUES (4647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690467838); INSERT INTO public.notice VALUES (4648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690468438); INSERT INTO public.notice VALUES (4649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690469039); INSERT INTO public.notice VALUES (4918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690630439); INSERT INTO public.notice VALUES (5072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690722837); INSERT INTO public.notice VALUES (5075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690724638); INSERT INTO public.notice VALUES (5076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690725239); INSERT INTO public.notice VALUES (5078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690726438); INSERT INTO public.notice VALUES (5079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690727038); INSERT INTO public.notice VALUES (5083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690729440); INSERT INTO public.notice VALUES (5084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690730039); INSERT INTO public.notice VALUES (2985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689469404); INSERT INTO public.notice VALUES (2986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689470003); INSERT INTO public.notice VALUES (2988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689471204); INSERT INTO public.notice VALUES (2989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689471804); INSERT INTO public.notice VALUES (2990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689472403); INSERT INTO public.notice VALUES (2991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689473003); INSERT INTO public.notice VALUES (2992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689473604); INSERT INTO public.notice VALUES (2993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689474203); INSERT INTO public.notice VALUES (2994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689474803); INSERT INTO public.notice VALUES (2995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689475404); INSERT INTO public.notice VALUES (2996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689476004); INSERT INTO public.notice VALUES (2997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689476603); INSERT INTO public.notice VALUES (2998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689477203); INSERT INTO public.notice VALUES (2999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689477804); INSERT INTO public.notice VALUES (3000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689478403); INSERT INTO public.notice VALUES (3001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689479003); INSERT INTO public.notice VALUES (3003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689480204); INSERT INTO public.notice VALUES (4650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690469639); INSERT INTO public.notice VALUES (4655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690472638); INSERT INTO public.notice VALUES (4660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690475640); INSERT INTO public.notice VALUES (4662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690476839); INSERT INTO public.notice VALUES (4924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690634038); INSERT INTO public.notice VALUES (4925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690634637); INSERT INTO public.notice VALUES (4927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690635838); INSERT INTO public.notice VALUES (4928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690636438); INSERT INTO public.notice VALUES (4931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690638238); INSERT INTO public.notice VALUES (4933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690639439); INSERT INTO public.notice VALUES (4936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690641240); INSERT INTO public.notice VALUES (4937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690641839); INSERT INTO public.notice VALUES (4939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690643038); INSERT INTO public.notice VALUES (3002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689479604); INSERT INTO public.notice VALUES (3004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689480803); INSERT INTO public.notice VALUES (3005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689481403); INSERT INTO public.notice VALUES (3006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689482004); INSERT INTO public.notice VALUES (3007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689482604); INSERT INTO public.notice VALUES (3008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689483203); INSERT INTO public.notice VALUES (3009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689483803); INSERT INTO public.notice VALUES (3010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689484404); INSERT INTO public.notice VALUES (3011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689485003); INSERT INTO public.notice VALUES (3012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689485603); INSERT INTO public.notice VALUES (3013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689486205); INSERT INTO public.notice VALUES (3014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689486804); INSERT INTO public.notice VALUES (3015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689487403); INSERT INTO public.notice VALUES (3016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689488003); INSERT INTO public.notice VALUES (3017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689488605); INSERT INTO public.notice VALUES (3018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689489203); INSERT INTO public.notice VALUES (3024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689492805); INSERT INTO public.notice VALUES (3025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689493404); INSERT INTO public.notice VALUES (3027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689494603); INSERT INTO public.notice VALUES (3029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689495803); INSERT INTO public.notice VALUES (4651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690470239); INSERT INTO public.notice VALUES (4652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690470837); INSERT INTO public.notice VALUES (4929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690637039); INSERT INTO public.notice VALUES (4930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690637639); INSERT INTO public.notice VALUES (4932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690638838); INSERT INTO public.notice VALUES (4934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690640038); INSERT INTO public.notice VALUES (4935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690640638); INSERT INTO public.notice VALUES (4938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690642438); INSERT INTO public.notice VALUES (4941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690644239); INSERT INTO public.notice VALUES (4942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690644838); INSERT INTO public.notice VALUES (3019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689489803); INSERT INTO public.notice VALUES (3020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689490404); INSERT INTO public.notice VALUES (3021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689491004); INSERT INTO public.notice VALUES (3022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689491604); INSERT INTO public.notice VALUES (3023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689492203); INSERT INTO public.notice VALUES (3026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689494003); INSERT INTO public.notice VALUES (3028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689495204); INSERT INTO public.notice VALUES (3030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689496403); INSERT INTO public.notice VALUES (3031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689497004); INSERT INTO public.notice VALUES (3032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689497604); INSERT INTO public.notice VALUES (3033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689498203); INSERT INTO public.notice VALUES (3034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689498803); INSERT INTO public.notice VALUES (3035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689499404); INSERT INTO public.notice VALUES (3036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689500003); INSERT INTO public.notice VALUES (3037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689500603); INSERT INTO public.notice VALUES (3038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689501204); INSERT INTO public.notice VALUES (3039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689501804); INSERT INTO public.notice VALUES (3040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689502403); INSERT INTO public.notice VALUES (3044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689504803); INSERT INTO public.notice VALUES (3046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689506004); INSERT INTO public.notice VALUES (3047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689506603); INSERT INTO public.notice VALUES (3049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689507804); INSERT INTO public.notice VALUES (3050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689508404); INSERT INTO public.notice VALUES (3051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689509003); INSERT INTO public.notice VALUES (3055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689511403); INSERT INTO public.notice VALUES (3056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689512004); INSERT INTO public.notice VALUES (3059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689513803); INSERT INTO public.notice VALUES (3062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689515603); INSERT INTO public.notice VALUES (3066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689518003); INSERT INTO public.notice VALUES (4653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690471439); INSERT INTO public.notice VALUES (3041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689503003); INSERT INTO public.notice VALUES (3042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689503604); INSERT INTO public.notice VALUES (3043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689504204); INSERT INTO public.notice VALUES (3045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689505404); INSERT INTO public.notice VALUES (3048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689507203); INSERT INTO public.notice VALUES (3052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689509602); INSERT INTO public.notice VALUES (3053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689510204); INSERT INTO public.notice VALUES (3054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689510803); INSERT INTO public.notice VALUES (3057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689512604); INSERT INTO public.notice VALUES (3058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689513204); INSERT INTO public.notice VALUES (3060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689514404); INSERT INTO public.notice VALUES (3061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689515004); INSERT INTO public.notice VALUES (3063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689516203); INSERT INTO public.notice VALUES (3064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689516804); INSERT INTO public.notice VALUES (3065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689517403); INSERT INTO public.notice VALUES (3067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689518604); INSERT INTO public.notice VALUES (3071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689521004); INSERT INTO public.notice VALUES (3077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689524603); INSERT INTO public.notice VALUES (3079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689525804); INSERT INTO public.notice VALUES (3080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689526403); INSERT INTO public.notice VALUES (4654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690472038); INSERT INTO public.notice VALUES (4656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690473239); INSERT INTO public.notice VALUES (4657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690473839); INSERT INTO public.notice VALUES (4658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690474438); INSERT INTO public.notice VALUES (4659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690475037); INSERT INTO public.notice VALUES (4661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690476238); INSERT INTO public.notice VALUES (4663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690477439); INSERT INTO public.notice VALUES (4665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690478638); INSERT INTO public.notice VALUES (4666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690479238); INSERT INTO public.notice VALUES (4667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690479839); INSERT INTO public.notice VALUES (3068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689519204); INSERT INTO public.notice VALUES (3069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689519803); INSERT INTO public.notice VALUES (3070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689520403); INSERT INTO public.notice VALUES (3072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689521604); INSERT INTO public.notice VALUES (3073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689522203); INSERT INTO public.notice VALUES (3074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689522804); INSERT INTO public.notice VALUES (3075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689523404); INSERT INTO public.notice VALUES (3076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689524003); INSERT INTO public.notice VALUES (3078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689525204); INSERT INTO public.notice VALUES (3081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689527002); INSERT INTO public.notice VALUES (3082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689527604); INSERT INTO public.notice VALUES (3083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689528204); INSERT INTO public.notice VALUES (3084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689528803); INSERT INTO public.notice VALUES (3085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689529404); INSERT INTO public.notice VALUES (3086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689530004); INSERT INTO public.notice VALUES (3087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689530603); INSERT INTO public.notice VALUES (3088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689531202); INSERT INTO public.notice VALUES (3090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689532403); INSERT INTO public.notice VALUES (3093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689534204); INSERT INTO public.notice VALUES (3094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689534803); INSERT INTO public.notice VALUES (3095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689535403); INSERT INTO public.notice VALUES (3100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689538404); INSERT INTO public.notice VALUES (3104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689540804); INSERT INTO public.notice VALUES (3105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689541403); INSERT INTO public.notice VALUES (3106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689542002); INSERT INTO public.notice VALUES (3107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689542604); INSERT INTO public.notice VALUES (3112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689545603); INSERT INTO public.notice VALUES (3114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689546804); INSERT INTO public.notice VALUES (4664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690478039); INSERT INTO public.notice VALUES (4671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690482239); INSERT INTO public.notice VALUES (3089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689531804); INSERT INTO public.notice VALUES (3091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689533004); INSERT INTO public.notice VALUES (3092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689533604); INSERT INTO public.notice VALUES (3096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689536004); INSERT INTO public.notice VALUES (3097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689536603); INSERT INTO public.notice VALUES (3098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689537203); INSERT INTO public.notice VALUES (3099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689537805); INSERT INTO public.notice VALUES (3101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689539003); INSERT INTO public.notice VALUES (3102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689539603); INSERT INTO public.notice VALUES (3103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689540204); INSERT INTO public.notice VALUES (3108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689543203); INSERT INTO public.notice VALUES (3109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689543803); INSERT INTO public.notice VALUES (3110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689544404); INSERT INTO public.notice VALUES (3111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689545004); INSERT INTO public.notice VALUES (3113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689546203); INSERT INTO public.notice VALUES (3115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689547404); INSERT INTO public.notice VALUES (3116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689548003); INSERT INTO public.notice VALUES (3117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689548605); INSERT INTO public.notice VALUES (3118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689549204); INSERT INTO public.notice VALUES (3119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689549803); INSERT INTO public.notice VALUES (3120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689550403); INSERT INTO public.notice VALUES (3121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689551004); INSERT INTO public.notice VALUES (3122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689551604); INSERT INTO public.notice VALUES (3123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689552203); INSERT INTO public.notice VALUES (3124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689552803); INSERT INTO public.notice VALUES (3125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689553404); INSERT INTO public.notice VALUES (3126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689554003); INSERT INTO public.notice VALUES (3127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689554603); INSERT INTO public.notice VALUES (3128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689555202); INSERT INTO public.notice VALUES (3129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689555804); INSERT INTO public.notice VALUES (3130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689556403); INSERT INTO public.notice VALUES (4668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690480438); INSERT INTO public.notice VALUES (4669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690481038); INSERT INTO public.notice VALUES (4670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690481637); INSERT INTO public.notice VALUES (4677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690485837); INSERT INTO public.notice VALUES (4679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690487038); INSERT INTO public.notice VALUES (4680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690487638); INSERT INTO public.notice VALUES (4681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690488239); INSERT INTO public.notice VALUES (4683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690489438); INSERT INTO public.notice VALUES (4685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690490639); INSERT INTO public.notice VALUES (4686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690491238); INSERT INTO public.notice VALUES (4689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690493039); INSERT INTO public.notice VALUES (4690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690493638); INSERT INTO public.notice VALUES (4691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690494238); INSERT INTO public.notice VALUES (4693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690495439); INSERT INTO public.notice VALUES (3131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689557002); INSERT INTO public.notice VALUES (3132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689557604); INSERT INTO public.notice VALUES (3133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689558204); INSERT INTO public.notice VALUES (3134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689558803); INSERT INTO public.notice VALUES (3135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689559402); INSERT INTO public.notice VALUES (3136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689560004); INSERT INTO public.notice VALUES (3137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689560603); INSERT INTO public.notice VALUES (3138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689561203); INSERT INTO public.notice VALUES (3139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689561804); INSERT INTO public.notice VALUES (3140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689562404); INSERT INTO public.notice VALUES (3141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689563003); INSERT INTO public.notice VALUES (3142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689563603); INSERT INTO public.notice VALUES (3143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689564204); INSERT INTO public.notice VALUES (3144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689564803); INSERT INTO public.notice VALUES (3145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689565403); INSERT INTO public.notice VALUES (3146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689566004); INSERT INTO public.notice VALUES (3147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689566604); INSERT INTO public.notice VALUES (3148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689567203); INSERT INTO public.notice VALUES (3149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689567803); INSERT INTO public.notice VALUES (3150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689568404); INSERT INTO public.notice VALUES (3151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689569004); INSERT INTO public.notice VALUES (3152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689569603); INSERT INTO public.notice VALUES (3153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689570205); INSERT INTO public.notice VALUES (3154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689570804); INSERT INTO public.notice VALUES (3155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689571403); INSERT INTO public.notice VALUES (3156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689572003); INSERT INTO public.notice VALUES (3157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689572605); INSERT INTO public.notice VALUES (3158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689573204); INSERT INTO public.notice VALUES (3159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689573803); INSERT INTO public.notice VALUES (3160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689574403); INSERT INTO public.notice VALUES (3161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689575004); INSERT INTO public.notice VALUES (3162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689575604); INSERT INTO public.notice VALUES (3164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689576804); INSERT INTO public.notice VALUES (3166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689578003); INSERT INTO public.notice VALUES (3167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689578604); INSERT INTO public.notice VALUES (3168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689579204); INSERT INTO public.notice VALUES (3169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689579803); INSERT INTO public.notice VALUES (3172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689581604); INSERT INTO public.notice VALUES (3173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689582203); INSERT INTO public.notice VALUES (3175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689583404); INSERT INTO public.notice VALUES (3176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689584003); INSERT INTO public.notice VALUES (3177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689584603); INSERT INTO public.notice VALUES (3178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689585205); INSERT INTO public.notice VALUES (3182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689587604); INSERT INTO public.notice VALUES (3183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689588204); INSERT INTO public.notice VALUES (3163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689576203); INSERT INTO public.notice VALUES (3165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689577404); INSERT INTO public.notice VALUES (3170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689580403); INSERT INTO public.notice VALUES (3171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689581004); INSERT INTO public.notice VALUES (3174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689582803); INSERT INTO public.notice VALUES (3179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689585804); INSERT INTO public.notice VALUES (3180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689586403); INSERT INTO public.notice VALUES (3181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689587003); INSERT INTO public.notice VALUES (3185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689589403); INSERT INTO public.notice VALUES (3186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689590004); INSERT INTO public.notice VALUES (3192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689593603); INSERT INTO public.notice VALUES (3196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689596004); INSERT INTO public.notice VALUES (3199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689597803); INSERT INTO public.notice VALUES (3204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689600804); INSERT INTO public.notice VALUES (3207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689602604); INSERT INTO public.notice VALUES (3184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689588804); INSERT INTO public.notice VALUES (3187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689590603); INSERT INTO public.notice VALUES (3188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689591203); INSERT INTO public.notice VALUES (3189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689591804); INSERT INTO public.notice VALUES (3190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689592404); INSERT INTO public.notice VALUES (3191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689593003); INSERT INTO public.notice VALUES (3193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689594204); INSERT INTO public.notice VALUES (3194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689594804); INSERT INTO public.notice VALUES (3195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689595403); INSERT INTO public.notice VALUES (3197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689596604); INSERT INTO public.notice VALUES (3198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689597203); INSERT INTO public.notice VALUES (3200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689598404); INSERT INTO public.notice VALUES (3201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689599004); INSERT INTO public.notice VALUES (3202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689599604); INSERT INTO public.notice VALUES (3203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689600202); INSERT INTO public.notice VALUES (3205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689601403); INSERT INTO public.notice VALUES (3206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689602003); INSERT INTO public.notice VALUES (3208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689603204); INSERT INTO public.notice VALUES (3209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689603804); INSERT INTO public.notice VALUES (4672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690482838); INSERT INTO public.notice VALUES (4673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690483438); INSERT INTO public.notice VALUES (4674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690484039); INSERT INTO public.notice VALUES (4675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690484639); INSERT INTO public.notice VALUES (4940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690643639); INSERT INTO public.notice VALUES (4943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690645437); INSERT INTO public.notice VALUES (4945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690646638); INSERT INTO public.notice VALUES (4946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690647238); INSERT INTO public.notice VALUES (4948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690648438); INSERT INTO public.notice VALUES (4949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690649038); INSERT INTO public.notice VALUES (4950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690649638); INSERT INTO public.notice VALUES (3210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689604403); INSERT INTO public.notice VALUES (3211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689605004); INSERT INTO public.notice VALUES (3212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689605604); INSERT INTO public.notice VALUES (3213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689606203); INSERT INTO public.notice VALUES (3214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689606802); INSERT INTO public.notice VALUES (3215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689607404); INSERT INTO public.notice VALUES (3216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689608004); INSERT INTO public.notice VALUES (3217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689608603); INSERT INTO public.notice VALUES (3218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689609204); INSERT INTO public.notice VALUES (3219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689609804); INSERT INTO public.notice VALUES (3220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689610403); INSERT INTO public.notice VALUES (3221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689611002); INSERT INTO public.notice VALUES (3222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689611604); INSERT INTO public.notice VALUES (3223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689612204); INSERT INTO public.notice VALUES (3224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689612803); INSERT INTO public.notice VALUES (3225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689613402); INSERT INTO public.notice VALUES (3226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689614004); INSERT INTO public.notice VALUES (3228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689615203); INSERT INTO public.notice VALUES (3229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689615804); INSERT INTO public.notice VALUES (3230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689616404); INSERT INTO public.notice VALUES (3231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689617003); INSERT INTO public.notice VALUES (3237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689620604); INSERT INTO public.notice VALUES (4676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690485238); INSERT INTO public.notice VALUES (4678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690486439); INSERT INTO public.notice VALUES (4682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690488839); INSERT INTO public.notice VALUES (4684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690490038); INSERT INTO public.notice VALUES (4944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690646039); INSERT INTO public.notice VALUES (4947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690647839); INSERT INTO public.notice VALUES (4952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690650838); INSERT INTO public.notice VALUES (4953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690651438); INSERT INTO public.notice VALUES (3227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689614603); INSERT INTO public.notice VALUES (3232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689617602); INSERT INTO public.notice VALUES (3233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689618204); INSERT INTO public.notice VALUES (3234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689618803); INSERT INTO public.notice VALUES (3235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689619403); INSERT INTO public.notice VALUES (3236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689620004); INSERT INTO public.notice VALUES (3238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689621203); INSERT INTO public.notice VALUES (3239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689621804); INSERT INTO public.notice VALUES (3240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689622404); INSERT INTO public.notice VALUES (3241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689623003); INSERT INTO public.notice VALUES (3242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689623603); INSERT INTO public.notice VALUES (3243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689624204); INSERT INTO public.notice VALUES (3244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689624804); INSERT INTO public.notice VALUES (3245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689625403); INSERT INTO public.notice VALUES (3246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689626003); INSERT INTO public.notice VALUES (3247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689626604); INSERT INTO public.notice VALUES (3249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689627803); INSERT INTO public.notice VALUES (3250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689628403); INSERT INTO public.notice VALUES (3251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689629004); INSERT INTO public.notice VALUES (3252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689629603); INSERT INTO public.notice VALUES (4687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690491838); INSERT INTO public.notice VALUES (4688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690492438); INSERT INTO public.notice VALUES (4951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690650239); INSERT INTO public.notice VALUES (4954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690652039); INSERT INTO public.notice VALUES (4959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690655038); INSERT INTO public.notice VALUES (4960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690655638); INSERT INTO public.notice VALUES (4962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690656839); INSERT INTO public.notice VALUES (4963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690657438); INSERT INTO public.notice VALUES (4965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690658639); INSERT INTO public.notice VALUES (4966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690659239); INSERT INTO public.notice VALUES (3248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689627203); INSERT INTO public.notice VALUES (3253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689630203); INSERT INTO public.notice VALUES (3254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689630804); INSERT INTO public.notice VALUES (3255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689631404); INSERT INTO public.notice VALUES (3256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689632003); INSERT INTO public.notice VALUES (3257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689632602); INSERT INTO public.notice VALUES (3258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689633204); INSERT INTO public.notice VALUES (3259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689633803); INSERT INTO public.notice VALUES (3260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689634403); INSERT INTO public.notice VALUES (3261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689635004); INSERT INTO public.notice VALUES (3262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689635604); INSERT INTO public.notice VALUES (3263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689636203); INSERT INTO public.notice VALUES (3264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689636803); INSERT INTO public.notice VALUES (3265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689637404); INSERT INTO public.notice VALUES (3266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689638003); INSERT INTO public.notice VALUES (3267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689638603); INSERT INTO public.notice VALUES (3268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689639204); INSERT INTO public.notice VALUES (3271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689641003); INSERT INTO public.notice VALUES (3273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689642204); INSERT INTO public.notice VALUES (4692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690494839); INSERT INTO public.notice VALUES (4694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690496038); INSERT INTO public.notice VALUES (4955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690652639); INSERT INTO public.notice VALUES (4956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690653238); INSERT INTO public.notice VALUES (4957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690653837); INSERT INTO public.notice VALUES (4958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690654439); INSERT INTO public.notice VALUES (4961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690656237); INSERT INTO public.notice VALUES (4964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690658038); INSERT INTO public.notice VALUES (4968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690660438); INSERT INTO public.notice VALUES (5081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690728238); INSERT INTO public.notice VALUES (5082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690728838); INSERT INTO public.notice VALUES (3269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689639804); INSERT INTO public.notice VALUES (3270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689640403); INSERT INTO public.notice VALUES (3272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689641604); INSERT INTO public.notice VALUES (3274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689642803); INSERT INTO public.notice VALUES (3275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689643404); INSERT INTO public.notice VALUES (3276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689644004); INSERT INTO public.notice VALUES (3277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689644603); INSERT INTO public.notice VALUES (3278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689645203); INSERT INTO public.notice VALUES (3279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689645804); INSERT INTO public.notice VALUES (3280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689646403); INSERT INTO public.notice VALUES (3281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689647003); INSERT INTO public.notice VALUES (3282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689647603); INSERT INTO public.notice VALUES (3283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689648204); INSERT INTO public.notice VALUES (3284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689648804); INSERT INTO public.notice VALUES (3285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689649403); INSERT INTO public.notice VALUES (3286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689650004); INSERT INTO public.notice VALUES (3287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689650603); INSERT INTO public.notice VALUES (3288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689651203); INSERT INTO public.notice VALUES (3289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689651806); INSERT INTO public.notice VALUES (3290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689652404); INSERT INTO public.notice VALUES (3293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689654204); INSERT INTO public.notice VALUES (3295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689655403); INSERT INTO public.notice VALUES (3296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689656003); INSERT INTO public.notice VALUES (3297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689656604); INSERT INTO public.notice VALUES (3298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689657204); INSERT INTO public.notice VALUES (3299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689657803); INSERT INTO public.notice VALUES (3302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689659604); INSERT INTO public.notice VALUES (3306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689662003); INSERT INTO public.notice VALUES (3308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689663204); INSERT INTO public.notice VALUES (3309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689663803); INSERT INTO public.notice VALUES (3291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689653003); INSERT INTO public.notice VALUES (3292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689653603); INSERT INTO public.notice VALUES (3294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689654804); INSERT INTO public.notice VALUES (3300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689658403); INSERT INTO public.notice VALUES (3301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689659004); INSERT INTO public.notice VALUES (3303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689660203); INSERT INTO public.notice VALUES (3304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689660804); INSERT INTO public.notice VALUES (3305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689661404); INSERT INTO public.notice VALUES (3307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689662603); INSERT INTO public.notice VALUES (3311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689665002); INSERT INTO public.notice VALUES (3312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689665604); INSERT INTO public.notice VALUES (3313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689666203); INSERT INTO public.notice VALUES (3314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689666803); INSERT INTO public.notice VALUES (4695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690496638); INSERT INTO public.notice VALUES (4696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690497239); INSERT INTO public.notice VALUES (3310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689664403); INSERT INTO public.notice VALUES (3315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689667404); INSERT INTO public.notice VALUES (3316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689668004); INSERT INTO public.notice VALUES (3317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689668603); INSERT INTO public.notice VALUES (3318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689669205); INSERT INTO public.notice VALUES (3319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689669804); INSERT INTO public.notice VALUES (3320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689670403); INSERT INTO public.notice VALUES (3321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689671003); INSERT INTO public.notice VALUES (3322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689671603); INSERT INTO public.notice VALUES (3323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689672204); INSERT INTO public.notice VALUES (3324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689673560); INSERT INTO public.notice VALUES (3325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689674159); INSERT INTO public.notice VALUES (3326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689674759); INSERT INTO public.notice VALUES (3327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689675359); INSERT INTO public.notice VALUES (3328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689675960); INSERT INTO public.notice VALUES (3329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689676559); INSERT INTO public.notice VALUES (3330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689677159); INSERT INTO public.notice VALUES (3331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689677760); INSERT INTO public.notice VALUES (3332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689678360); INSERT INTO public.notice VALUES (3334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689679559); INSERT INTO public.notice VALUES (3335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689680160); INSERT INTO public.notice VALUES (3337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689681359); INSERT INTO public.notice VALUES (3339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689682561); INSERT INTO public.notice VALUES (3343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689684959); INSERT INTO public.notice VALUES (3344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689685559); INSERT INTO public.notice VALUES (3345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689686160); INSERT INTO public.notice VALUES (3347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689687359); INSERT INTO public.notice VALUES (3348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689687959); INSERT INTO public.notice VALUES (4697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690497838); INSERT INTO public.notice VALUES (4698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690498438); INSERT INTO public.notice VALUES (3333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689678959); INSERT INTO public.notice VALUES (3336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689680760); INSERT INTO public.notice VALUES (3338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689681960); INSERT INTO public.notice VALUES (3340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689683159); INSERT INTO public.notice VALUES (3341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689683759); INSERT INTO public.notice VALUES (3342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689684361); INSERT INTO public.notice VALUES (3346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689686761); INSERT INTO public.notice VALUES (3349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689688560); INSERT INTO public.notice VALUES (3350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689689161); INSERT INTO public.notice VALUES (3351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689689759); INSERT INTO public.notice VALUES (3352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689690358); INSERT INTO public.notice VALUES (3353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689690960); INSERT INTO public.notice VALUES (3354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689691559); INSERT INTO public.notice VALUES (3355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689692160); INSERT INTO public.notice VALUES (3356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689692760); INSERT INTO public.notice VALUES (3357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689693360); INSERT INTO public.notice VALUES (3358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689693959); INSERT INTO public.notice VALUES (3359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689694561); INSERT INTO public.notice VALUES (3360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689695160); INSERT INTO public.notice VALUES (3361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689695760); INSERT INTO public.notice VALUES (3362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689696359); INSERT INTO public.notice VALUES (3363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689696961); INSERT INTO public.notice VALUES (3364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689697560); INSERT INTO public.notice VALUES (3365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689698159); INSERT INTO public.notice VALUES (3366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689698758); INSERT INTO public.notice VALUES (3367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689699360); INSERT INTO public.notice VALUES (3368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689699959); INSERT INTO public.notice VALUES (3369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689700559); INSERT INTO public.notice VALUES (3370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689701160); INSERT INTO public.notice VALUES (3371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689701760); INSERT INTO public.notice VALUES (3372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689702359); INSERT INTO public.notice VALUES (3377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689705358); INSERT INTO public.notice VALUES (3378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689705960); INSERT INTO public.notice VALUES (3379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689706559); INSERT INTO public.notice VALUES (3383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689708959); INSERT INTO public.notice VALUES (3384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689709558); INSERT INTO public.notice VALUES (3385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689710160); INSERT INTO public.notice VALUES (3386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689710759); INSERT INTO public.notice VALUES (3387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689711359); INSERT INTO public.notice VALUES (3390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689713159); INSERT INTO public.notice VALUES (3393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689714960); INSERT INTO public.notice VALUES (3395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689716160); INSERT INTO public.notice VALUES (3397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689717359); INSERT INTO public.notice VALUES (3399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689718560); INSERT INTO public.notice VALUES (4699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690499039); INSERT INTO public.notice VALUES (3373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689702959); INSERT INTO public.notice VALUES (3374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689703560); INSERT INTO public.notice VALUES (3375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689704160); INSERT INTO public.notice VALUES (3376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689704759); INSERT INTO public.notice VALUES (3380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689707159); INSERT INTO public.notice VALUES (3381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689707760); INSERT INTO public.notice VALUES (3382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689708360); INSERT INTO public.notice VALUES (3388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689711960); INSERT INTO public.notice VALUES (3389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689712560); INSERT INTO public.notice VALUES (3391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689713759); INSERT INTO public.notice VALUES (3392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689714361); INSERT INTO public.notice VALUES (3394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689715559); INSERT INTO public.notice VALUES (3396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689716760); INSERT INTO public.notice VALUES (3398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689717959); INSERT INTO public.notice VALUES (3400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689719159); INSERT INTO public.notice VALUES (3401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689719759); INSERT INTO public.notice VALUES (3403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689720960); INSERT INTO public.notice VALUES (4700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690499639); INSERT INTO public.notice VALUES (4701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690500238); INSERT INTO public.notice VALUES (4967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690659838); INSERT INTO public.notice VALUES (4969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690661039); INSERT INTO public.notice VALUES (4970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690661638); INSERT INTO public.notice VALUES (4971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690662238); INSERT INTO public.notice VALUES (4974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690664038); INSERT INTO public.notice VALUES (4975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690664639); INSERT INTO public.notice VALUES (4976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690665239); INSERT INTO public.notice VALUES (4977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690665838); INSERT INTO public.notice VALUES (4978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690666438); INSERT INTO public.notice VALUES (4981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690668238); INSERT INTO public.notice VALUES (5085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690730638); INSERT INTO public.notice VALUES (3402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689720358); INSERT INTO public.notice VALUES (3404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689721560); INSERT INTO public.notice VALUES (3405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689722159); INSERT INTO public.notice VALUES (3406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689722760); INSERT INTO public.notice VALUES (3407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689723359); INSERT INTO public.notice VALUES (3408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689723959); INSERT INTO public.notice VALUES (3409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689724560); INSERT INTO public.notice VALUES (3410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689725160); INSERT INTO public.notice VALUES (3411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689725759); INSERT INTO public.notice VALUES (3412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689726359); INSERT INTO public.notice VALUES (3413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689726960); INSERT INTO public.notice VALUES (3414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689727563); INSERT INTO public.notice VALUES (3415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689728160); INSERT INTO public.notice VALUES (3416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689728759); INSERT INTO public.notice VALUES (3417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689729360); INSERT INTO public.notice VALUES (3418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689729960); INSERT INTO public.notice VALUES (4702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690500838); INSERT INTO public.notice VALUES (4703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690501439); INSERT INTO public.notice VALUES (4706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690503239); INSERT INTO public.notice VALUES (4708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690504438); INSERT INTO public.notice VALUES (4972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690662839); INSERT INTO public.notice VALUES (4973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690663439); INSERT INTO public.notice VALUES (5086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690731238); INSERT INTO public.notice VALUES (5109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690745039); INSERT INTO public.notice VALUES (5111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690746238); INSERT INTO public.notice VALUES (5112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690746839); INSERT INTO public.notice VALUES (5113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690747439); INSERT INTO public.notice VALUES (5114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690748038); INSERT INTO public.notice VALUES (5115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690748638); INSERT INTO public.notice VALUES (5117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690749838); INSERT INTO public.notice VALUES (3419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689730559); INSERT INTO public.notice VALUES (3420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689731158); INSERT INTO public.notice VALUES (3421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689731760); INSERT INTO public.notice VALUES (3422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689732359); INSERT INTO public.notice VALUES (3423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689732959); INSERT INTO public.notice VALUES (3424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689733560); INSERT INTO public.notice VALUES (3425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689734160); INSERT INTO public.notice VALUES (3426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689734759); INSERT INTO public.notice VALUES (3427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689735359); INSERT INTO public.notice VALUES (3428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689735961); INSERT INTO public.notice VALUES (3429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689736560); INSERT INTO public.notice VALUES (3430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689737159); INSERT INTO public.notice VALUES (3431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689737761); INSERT INTO public.notice VALUES (3432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689738361); INSERT INTO public.notice VALUES (3433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689738959); INSERT INTO public.notice VALUES (3434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689739558); INSERT INTO public.notice VALUES (3438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689741961); INSERT INTO public.notice VALUES (3439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689742560); INSERT INTO public.notice VALUES (4704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690502038); INSERT INTO public.notice VALUES (4705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690502638); INSERT INTO public.notice VALUES (4707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690503839); INSERT INTO public.notice VALUES (4709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690505038); INSERT INTO public.notice VALUES (4710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690505639); INSERT INTO public.notice VALUES (4712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690506838); INSERT INTO public.notice VALUES (4713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690507437); INSERT INTO public.notice VALUES (4714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690508039); INSERT INTO public.notice VALUES (4715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690508638); INSERT INTO public.notice VALUES (4716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690509238); INSERT INTO public.notice VALUES (4718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690510440); INSERT INTO public.notice VALUES (4719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690511038); INSERT INTO public.notice VALUES (3435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689740160); INSERT INTO public.notice VALUES (3436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689740760); INSERT INTO public.notice VALUES (3437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689741359); INSERT INTO public.notice VALUES (3440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689743159); INSERT INTO public.notice VALUES (3441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689743759); INSERT INTO public.notice VALUES (3442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689744361); INSERT INTO public.notice VALUES (3443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689744960); INSERT INTO public.notice VALUES (3444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689745559); INSERT INTO public.notice VALUES (3445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689746158); INSERT INTO public.notice VALUES (3446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689746760); INSERT INTO public.notice VALUES (3447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689747359); INSERT INTO public.notice VALUES (3448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689747959); INSERT INTO public.notice VALUES (3449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689748560); INSERT INTO public.notice VALUES (3450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689749160); INSERT INTO public.notice VALUES (3451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689749759); INSERT INTO public.notice VALUES (3452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689750359); INSERT INTO public.notice VALUES (3453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689750960); INSERT INTO public.notice VALUES (3454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689751559); INSERT INTO public.notice VALUES (3455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689752159); INSERT INTO public.notice VALUES (3456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689752760); INSERT INTO public.notice VALUES (3459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689754560); INSERT INTO public.notice VALUES (4711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690506239); INSERT INTO public.notice VALUES (4717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690509839); INSERT INTO public.notice VALUES (4722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690512839); INSERT INTO public.notice VALUES (4723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690513439); INSERT INTO public.notice VALUES (4724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690514038); INSERT INTO public.notice VALUES (4725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690514639); INSERT INTO public.notice VALUES (4727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690515838); INSERT INTO public.notice VALUES (4732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690518839); INSERT INTO public.notice VALUES (4733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690519438); INSERT INTO public.notice VALUES (3457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689753360); INSERT INTO public.notice VALUES (3458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689753960); INSERT INTO public.notice VALUES (3460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689755160); INSERT INTO public.notice VALUES (3461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689755759); INSERT INTO public.notice VALUES (3462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689756360); INSERT INTO public.notice VALUES (3463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689756959); INSERT INTO public.notice VALUES (3464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689757560); INSERT INTO public.notice VALUES (3465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689758159); INSERT INTO public.notice VALUES (3466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689758759); INSERT INTO public.notice VALUES (3467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689759360); INSERT INTO public.notice VALUES (3468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689759960); INSERT INTO public.notice VALUES (3469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689760559); INSERT INTO public.notice VALUES (3470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689761158); INSERT INTO public.notice VALUES (3471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689761760); INSERT INTO public.notice VALUES (3472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689762359); INSERT INTO public.notice VALUES (3473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689762959); INSERT INTO public.notice VALUES (3475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689764160); INSERT INTO public.notice VALUES (3477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689765359); INSERT INTO public.notice VALUES (3479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689766560); INSERT INTO public.notice VALUES (3480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689767159); INSERT INTO public.notice VALUES (3481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689767758); INSERT INTO public.notice VALUES (3483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689768959); INSERT INTO public.notice VALUES (3485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689770160); INSERT INTO public.notice VALUES (3486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689770760); INSERT INTO public.notice VALUES (3490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689773160); INSERT INTO public.notice VALUES (3491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689773759); INSERT INTO public.notice VALUES (3493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689774960); INSERT INTO public.notice VALUES (3494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689775559); INSERT INTO public.notice VALUES (3495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689776159); INSERT INTO public.notice VALUES (3496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689776761); INSERT INTO public.notice VALUES (3474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689763560); INSERT INTO public.notice VALUES (3476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689764759); INSERT INTO public.notice VALUES (3478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689765960); INSERT INTO public.notice VALUES (3482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689768360); INSERT INTO public.notice VALUES (3484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689769559); INSERT INTO public.notice VALUES (3487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689771359); INSERT INTO public.notice VALUES (3488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689771959); INSERT INTO public.notice VALUES (3489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689772560); INSERT INTO public.notice VALUES (3492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689774358); INSERT INTO public.notice VALUES (3497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689777359); INSERT INTO public.notice VALUES (3498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689777959); INSERT INTO public.notice VALUES (3499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689778559); INSERT INTO public.notice VALUES (3501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689779759); INSERT INTO public.notice VALUES (3502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689780359); INSERT INTO public.notice VALUES (3503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689780963); INSERT INTO public.notice VALUES (3500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689779160); INSERT INTO public.notice VALUES (3505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689782159); INSERT INTO public.notice VALUES (3507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689783360); INSERT INTO public.notice VALUES (3510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689785160); INSERT INTO public.notice VALUES (4720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690511638); INSERT INTO public.notice VALUES (4721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690512239); INSERT INTO public.notice VALUES (4979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690667039); INSERT INTO public.notice VALUES (4980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690667639); INSERT INTO public.notice VALUES (4984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690670038); INSERT INTO public.notice VALUES (4985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690670638); INSERT INTO public.notice VALUES (4986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690671237); INSERT INTO public.notice VALUES (4989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690673038); INSERT INTO public.notice VALUES (4992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690674838); INSERT INTO public.notice VALUES (4993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690675438); INSERT INTO public.notice VALUES (4999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690679038); INSERT INTO public.notice VALUES (3504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689781560); INSERT INTO public.notice VALUES (3506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689782760); INSERT INTO public.notice VALUES (3508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689783959); INSERT INTO public.notice VALUES (3509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689784559); INSERT INTO public.notice VALUES (3511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689785760); INSERT INTO public.notice VALUES (3512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689786359); INSERT INTO public.notice VALUES (3513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689786959); INSERT INTO public.notice VALUES (3514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689787560); INSERT INTO public.notice VALUES (3515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689788160); INSERT INTO public.notice VALUES (3516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689788759); INSERT INTO public.notice VALUES (3517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689789359); INSERT INTO public.notice VALUES (3518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689789961); INSERT INTO public.notice VALUES (3519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689790559); INSERT INTO public.notice VALUES (3520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689791160); INSERT INTO public.notice VALUES (3521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689791760); INSERT INTO public.notice VALUES (3522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689792361); INSERT INTO public.notice VALUES (3526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689794760); INSERT INTO public.notice VALUES (3530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689797159); INSERT INTO public.notice VALUES (4726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690515238); INSERT INTO public.notice VALUES (4728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690516439); INSERT INTO public.notice VALUES (4729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690517038); INSERT INTO public.notice VALUES (4730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690517638); INSERT INTO public.notice VALUES (4731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690518237); INSERT INTO public.notice VALUES (4734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690520038); INSERT INTO public.notice VALUES (4735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690520640); INSERT INTO public.notice VALUES (4736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690521239); INSERT INTO public.notice VALUES (4737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690521838); INSERT INTO public.notice VALUES (4738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690522438); INSERT INTO public.notice VALUES (4982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690668838); INSERT INTO public.notice VALUES (4983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690669439); INSERT INTO public.notice VALUES (3523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689792959); INSERT INTO public.notice VALUES (3524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689793561); INSERT INTO public.notice VALUES (3525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689794160); INSERT INTO public.notice VALUES (3527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689795359); INSERT INTO public.notice VALUES (3528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689795961); INSERT INTO public.notice VALUES (3529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689796560); INSERT INTO public.notice VALUES (3531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689797759); INSERT INTO public.notice VALUES (3532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689798360); INSERT INTO public.notice VALUES (3533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689798960); INSERT INTO public.notice VALUES (3534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689799559); INSERT INTO public.notice VALUES (3535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689800158); INSERT INTO public.notice VALUES (3536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689800760); INSERT INTO public.notice VALUES (3537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689801360); INSERT INTO public.notice VALUES (3538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689801959); INSERT INTO public.notice VALUES (3539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689802560); INSERT INTO public.notice VALUES (3540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689803160); INSERT INTO public.notice VALUES (3541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689803759); INSERT INTO public.notice VALUES (3542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689804358); INSERT INTO public.notice VALUES (3544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689805559); INSERT INTO public.notice VALUES (3545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689806159); INSERT INTO public.notice VALUES (3547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689807360); INSERT INTO public.notice VALUES (3548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689807959); INSERT INTO public.notice VALUES (3550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689809160); INSERT INTO public.notice VALUES (3554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689811560); INSERT INTO public.notice VALUES (3555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689812159); INSERT INTO public.notice VALUES (3557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689813360); INSERT INTO public.notice VALUES (3558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689813961); INSERT INTO public.notice VALUES (3563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689816959); INSERT INTO public.notice VALUES (3564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689817560); INSERT INTO public.notice VALUES (3566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689818759); INSERT INTO public.notice VALUES (3543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689804960); INSERT INTO public.notice VALUES (3546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689806760); INSERT INTO public.notice VALUES (3549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689808558); INSERT INTO public.notice VALUES (3551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689809759); INSERT INTO public.notice VALUES (3552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689810359); INSERT INTO public.notice VALUES (3553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689810960); INSERT INTO public.notice VALUES (3556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689812759); INSERT INTO public.notice VALUES (3559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689814559); INSERT INTO public.notice VALUES (3560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689815159); INSERT INTO public.notice VALUES (3561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689815760); INSERT INTO public.notice VALUES (3562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689816359); INSERT INTO public.notice VALUES (3565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689818160); INSERT INTO public.notice VALUES (3570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689821159); INSERT INTO public.notice VALUES (3572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689822364); INSERT INTO public.notice VALUES (4739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690523039); INSERT INTO public.notice VALUES (3567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689819360); INSERT INTO public.notice VALUES (3568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689819960); INSERT INTO public.notice VALUES (3569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689820559); INSERT INTO public.notice VALUES (3571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689821761); INSERT INTO public.notice VALUES (3573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689822960); INSERT INTO public.notice VALUES (3574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689823560); INSERT INTO public.notice VALUES (3575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689824160); INSERT INTO public.notice VALUES (3576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689824760); INSERT INTO public.notice VALUES (3577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689825359); INSERT INTO public.notice VALUES (3578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689825959); INSERT INTO public.notice VALUES (3579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689826559); INSERT INTO public.notice VALUES (3580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689827160); INSERT INTO public.notice VALUES (3581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689827760); INSERT INTO public.notice VALUES (3582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689828359); INSERT INTO public.notice VALUES (3583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689828961); INSERT INTO public.notice VALUES (3584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689829560); INSERT INTO public.notice VALUES (3587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689831360); INSERT INTO public.notice VALUES (4740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690523639); INSERT INTO public.notice VALUES (4743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690525439); INSERT INTO public.notice VALUES (4744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690526038); INSERT INTO public.notice VALUES (4987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690671839); INSERT INTO public.notice VALUES (4988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690672439); INSERT INTO public.notice VALUES (4990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690673639); INSERT INTO public.notice VALUES (4991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690674239); INSERT INTO public.notice VALUES (4994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690676039); INSERT INTO public.notice VALUES (4995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690676638); INSERT INTO public.notice VALUES (4996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690677238); INSERT INTO public.notice VALUES (4997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690677840); INSERT INTO public.notice VALUES (4998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690678439); INSERT INTO public.notice VALUES (5087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690731839); INSERT INTO public.notice VALUES (3585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689830159); INSERT INTO public.notice VALUES (3586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689830759); INSERT INTO public.notice VALUES (3588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689831959); INSERT INTO public.notice VALUES (3589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689832559); INSERT INTO public.notice VALUES (3590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689833160); INSERT INTO public.notice VALUES (3591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689833760); INSERT INTO public.notice VALUES (3592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689834359); INSERT INTO public.notice VALUES (3593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689834959); INSERT INTO public.notice VALUES (3594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689835560); INSERT INTO public.notice VALUES (3595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689836160); INSERT INTO public.notice VALUES (3596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689836759); INSERT INTO public.notice VALUES (3597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689837358); INSERT INTO public.notice VALUES (3598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689837960); INSERT INTO public.notice VALUES (3599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689838559); INSERT INTO public.notice VALUES (3600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689839160); INSERT INTO public.notice VALUES (3601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689839760); INSERT INTO public.notice VALUES (3604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689841558); INSERT INTO public.notice VALUES (3606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689842759); INSERT INTO public.notice VALUES (3609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689844560); INSERT INTO public.notice VALUES (3610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689845159); INSERT INTO public.notice VALUES (4741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690524238); INSERT INTO public.notice VALUES (5000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690679637); INSERT INTO public.notice VALUES (5001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690680239); INSERT INTO public.notice VALUES (5006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690683238); INSERT INTO public.notice VALUES (5009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690685039); INSERT INTO public.notice VALUES (5010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690685638); INSERT INTO public.notice VALUES (5013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690687438); INSERT INTO public.notice VALUES (5015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690688639); INSERT INTO public.notice VALUES (5017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690689838); INSERT INTO public.notice VALUES (5019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690691039); INSERT INTO public.notice VALUES (3602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689840360); INSERT INTO public.notice VALUES (3603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689840959); INSERT INTO public.notice VALUES (3605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689842160); INSERT INTO public.notice VALUES (3607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689843359); INSERT INTO public.notice VALUES (3608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689843960); INSERT INTO public.notice VALUES (3611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689845759); INSERT INTO public.notice VALUES (3612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689846360); INSERT INTO public.notice VALUES (3613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689846959); INSERT INTO public.notice VALUES (3614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689847559); INSERT INTO public.notice VALUES (3615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689848160); INSERT INTO public.notice VALUES (3616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689848760); INSERT INTO public.notice VALUES (3617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689849359); INSERT INTO public.notice VALUES (3618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689849961); INSERT INTO public.notice VALUES (3619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689850560); INSERT INTO public.notice VALUES (3620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689851159); INSERT INTO public.notice VALUES (3621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689851759); INSERT INTO public.notice VALUES (3622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689852360); INSERT INTO public.notice VALUES (3623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689852960); INSERT INTO public.notice VALUES (3624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689853559); INSERT INTO public.notice VALUES (3625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689854159); INSERT INTO public.notice VALUES (3627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689855359); INSERT INTO public.notice VALUES (4742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690524840); INSERT INTO public.notice VALUES (4747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690527838); INSERT INTO public.notice VALUES (4752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690530838); INSERT INTO public.notice VALUES (4753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690531439); INSERT INTO public.notice VALUES (4754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690532039); INSERT INTO public.notice VALUES (5002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690680838); INSERT INTO public.notice VALUES (5088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690732439); INSERT INTO public.notice VALUES (5089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690733038); INSERT INTO public.notice VALUES (5092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690734838); INSERT INTO public.notice VALUES (3626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689854760); INSERT INTO public.notice VALUES (3628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689855959); INSERT INTO public.notice VALUES (3629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689856561); INSERT INTO public.notice VALUES (3630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689857160); INSERT INTO public.notice VALUES (3631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689857759); INSERT INTO public.notice VALUES (3632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689858359); INSERT INTO public.notice VALUES (3633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689858960); INSERT INTO public.notice VALUES (3634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689859559); INSERT INTO public.notice VALUES (3635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689860159); INSERT INTO public.notice VALUES (3636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689860758); INSERT INTO public.notice VALUES (3637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689861360); INSERT INTO public.notice VALUES (3638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689861959); INSERT INTO public.notice VALUES (3639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689862559); INSERT INTO public.notice VALUES (3640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689863160); INSERT INTO public.notice VALUES (3641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689863761); INSERT INTO public.notice VALUES (3642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689864360); INSERT INTO public.notice VALUES (3643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689864960); INSERT INTO public.notice VALUES (3644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689865560); INSERT INTO public.notice VALUES (3645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689866160); INSERT INTO public.notice VALUES (3646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689866759); INSERT INTO public.notice VALUES (3647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689867360); INSERT INTO public.notice VALUES (3648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689867960); INSERT INTO public.notice VALUES (3649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689868559); INSERT INTO public.notice VALUES (3650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689869162); INSERT INTO public.notice VALUES (3651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689869760); INSERT INTO public.notice VALUES (3652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689870360); INSERT INTO public.notice VALUES (3653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689870959); INSERT INTO public.notice VALUES (3654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689871562); INSERT INTO public.notice VALUES (3655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689872160); INSERT INTO public.notice VALUES (3656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689872760); INSERT INTO public.notice VALUES (3657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689873359); INSERT INTO public.notice VALUES (3658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689873958); INSERT INTO public.notice VALUES (3660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689875160); INSERT INTO public.notice VALUES (3661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689875759); INSERT INTO public.notice VALUES (3665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689878160); INSERT INTO public.notice VALUES (3666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689878761); INSERT INTO public.notice VALUES (3667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689879359); INSERT INTO public.notice VALUES (3669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689880561); INSERT INTO public.notice VALUES (3674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689883560); INSERT INTO public.notice VALUES (3675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689884159); INSERT INTO public.notice VALUES (3676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689884759); INSERT INTO public.notice VALUES (3680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689887160); INSERT INTO public.notice VALUES (3682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689888359); INSERT INTO public.notice VALUES (3686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689890759); INSERT INTO public.notice VALUES (3687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689891362); INSERT INTO public.notice VALUES (3659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689874560); INSERT INTO public.notice VALUES (3662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689876360); INSERT INTO public.notice VALUES (3663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689876960); INSERT INTO public.notice VALUES (3664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689877559); INSERT INTO public.notice VALUES (3668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689879959); INSERT INTO public.notice VALUES (3670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689881160); INSERT INTO public.notice VALUES (3671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689881759); INSERT INTO public.notice VALUES (3672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689882359); INSERT INTO public.notice VALUES (3673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689882960); INSERT INTO public.notice VALUES (3677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689885360); INSERT INTO public.notice VALUES (3678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689885959); INSERT INTO public.notice VALUES (3679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689886559); INSERT INTO public.notice VALUES (3681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689887760); INSERT INTO public.notice VALUES (3683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689888961); INSERT INTO public.notice VALUES (3684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689889560); INSERT INTO public.notice VALUES (3685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689890159); INSERT INTO public.notice VALUES (3690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689893159); INSERT INTO public.notice VALUES (3692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689894360); INSERT INTO public.notice VALUES (4745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690526638); INSERT INTO public.notice VALUES (4746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690527239); INSERT INTO public.notice VALUES (4748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690528438); INSERT INTO public.notice VALUES (4749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690529038); INSERT INTO public.notice VALUES (4750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690529639); INSERT INTO public.notice VALUES (4751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690530238); INSERT INTO public.notice VALUES (4758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690534439); INSERT INTO public.notice VALUES (4760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690535637); INSERT INTO public.notice VALUES (4762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690536838); INSERT INTO public.notice VALUES (4763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690537438); INSERT INTO public.notice VALUES (4765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690538639); INSERT INTO public.notice VALUES (4766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690539238); INSERT INTO public.notice VALUES (3688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689891960); INSERT INTO public.notice VALUES (3689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689892559); INSERT INTO public.notice VALUES (3691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689893760); INSERT INTO public.notice VALUES (3693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689894959); INSERT INTO public.notice VALUES (3694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689895558); INSERT INTO public.notice VALUES (3695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689896160); INSERT INTO public.notice VALUES (3696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689896759); INSERT INTO public.notice VALUES (3697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689897359); INSERT INTO public.notice VALUES (3698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689897961); INSERT INTO public.notice VALUES (3699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689898559); INSERT INTO public.notice VALUES (3700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689899159); INSERT INTO public.notice VALUES (3701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689899761); INSERT INTO public.notice VALUES (3702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689900360); INSERT INTO public.notice VALUES (3703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689900962); INSERT INTO public.notice VALUES (3704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689901559); INSERT INTO public.notice VALUES (3705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689902160); INSERT INTO public.notice VALUES (3706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689902760); INSERT INTO public.notice VALUES (3711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689905759); INSERT INTO public.notice VALUES (3712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689906361); INSERT INTO public.notice VALUES (3716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689908761); INSERT INTO public.notice VALUES (3719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689910561); INSERT INTO public.notice VALUES (3720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689911160); INSERT INTO public.notice VALUES (3723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689912961); INSERT INTO public.notice VALUES (3724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689913567); INSERT INTO public.notice VALUES (3725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689914160); INSERT INTO public.notice VALUES (3726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689914762); INSERT INTO public.notice VALUES (3727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689915361); INSERT INTO public.notice VALUES (3731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689917764); INSERT INTO public.notice VALUES (3732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689918359); INSERT INTO public.notice VALUES (3734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689919565); INSERT INTO public.notice VALUES (3707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689903359); INSERT INTO public.notice VALUES (3708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689903959); INSERT INTO public.notice VALUES (3709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689904561); INSERT INTO public.notice VALUES (3710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689905160); INSERT INTO public.notice VALUES (3713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689906965); INSERT INTO public.notice VALUES (3714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689907563); INSERT INTO public.notice VALUES (3715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689908159); INSERT INTO public.notice VALUES (3717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689909363); INSERT INTO public.notice VALUES (3718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689909968); INSERT INTO public.notice VALUES (3721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689911760); INSERT INTO public.notice VALUES (3722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689912360); INSERT INTO public.notice VALUES (3728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689915959); INSERT INTO public.notice VALUES (3729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689916559); INSERT INTO public.notice VALUES (3730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689917161); INSERT INTO public.notice VALUES (3733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689918959); INSERT INTO public.notice VALUES (3735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689920160); INSERT INTO public.notice VALUES (3736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689920761); INSERT INTO public.notice VALUES (3737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689921363); INSERT INTO public.notice VALUES (3738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689921963); INSERT INTO public.notice VALUES (3739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689922559); INSERT INTO public.notice VALUES (3741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689923761); INSERT INTO public.notice VALUES (3745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689926161); INSERT INTO public.notice VALUES (4755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690532638); INSERT INTO public.notice VALUES (4756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690533238); INSERT INTO public.notice VALUES (4757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690533839); INSERT INTO public.notice VALUES (4759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690535038); INSERT INTO public.notice VALUES (4761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690536239); INSERT INTO public.notice VALUES (4764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690538039); INSERT INTO public.notice VALUES (4768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690540439); INSERT INTO public.notice VALUES (4769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690541038); INSERT INTO public.notice VALUES (3740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689923159); INSERT INTO public.notice VALUES (3742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689924362); INSERT INTO public.notice VALUES (3743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689924959); INSERT INTO public.notice VALUES (3744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689925566); INSERT INTO public.notice VALUES (3746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689926760); INSERT INTO public.notice VALUES (3747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689927359); INSERT INTO public.notice VALUES (3748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689927959); INSERT INTO public.notice VALUES (3749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689928563); INSERT INTO public.notice VALUES (3750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689929159); INSERT INTO public.notice VALUES (3751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689929759); INSERT INTO public.notice VALUES (3752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689930360); INSERT INTO public.notice VALUES (3753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689930960); INSERT INTO public.notice VALUES (3754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689931560); INSERT INTO public.notice VALUES (3755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689932160); INSERT INTO public.notice VALUES (3756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689932760); INSERT INTO public.notice VALUES (3757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689933359); INSERT INTO public.notice VALUES (3759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689934560); INSERT INTO public.notice VALUES (3764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689937559); INSERT INTO public.notice VALUES (3767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689939360); INSERT INTO public.notice VALUES (3769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689940559); INSERT INTO public.notice VALUES (3772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689942359); INSERT INTO public.notice VALUES (3773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689942961); INSERT INTO public.notice VALUES (3774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689943560); INSERT INTO public.notice VALUES (3776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689944759); INSERT INTO public.notice VALUES (3778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689945960); INSERT INTO public.notice VALUES (3782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689948360); INSERT INTO public.notice VALUES (4767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690539838); INSERT INTO public.notice VALUES (4770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690541638); INSERT INTO public.notice VALUES (4771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690542239); INSERT INTO public.notice VALUES (4772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690542839); INSERT INTO public.notice VALUES (3758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689933959); INSERT INTO public.notice VALUES (3760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689935160); INSERT INTO public.notice VALUES (3761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689935759); INSERT INTO public.notice VALUES (3762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689936359); INSERT INTO public.notice VALUES (3763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689936960); INSERT INTO public.notice VALUES (3765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689938159); INSERT INTO public.notice VALUES (3766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689938759); INSERT INTO public.notice VALUES (3768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689939959); INSERT INTO public.notice VALUES (3770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689941160); INSERT INTO public.notice VALUES (3771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689941759); INSERT INTO public.notice VALUES (3775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689944160); INSERT INTO public.notice VALUES (3777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689945361); INSERT INTO public.notice VALUES (3779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689946559); INSERT INTO public.notice VALUES (3780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689947158); INSERT INTO public.notice VALUES (3781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689947760); INSERT INTO public.notice VALUES (3783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689948959); INSERT INTO public.notice VALUES (3784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689949559); INSERT INTO public.notice VALUES (3785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689950160); INSERT INTO public.notice VALUES (3786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689950760); INSERT INTO public.notice VALUES (3787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689951367); INSERT INTO public.notice VALUES (3788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689951962); INSERT INTO public.notice VALUES (3789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689952560); INSERT INTO public.notice VALUES (3790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689953159); INSERT INTO public.notice VALUES (3791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689953759); INSERT INTO public.notice VALUES (3792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689954361); INSERT INTO public.notice VALUES (3793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689954960); INSERT INTO public.notice VALUES (3794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689955559); INSERT INTO public.notice VALUES (3795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689956160); INSERT INTO public.notice VALUES (3796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689956760); INSERT INTO public.notice VALUES (3797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689957361); INSERT INTO public.notice VALUES (3798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689957959); INSERT INTO public.notice VALUES (3799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689958560); INSERT INTO public.notice VALUES (3800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689959160); INSERT INTO public.notice VALUES (3801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689959759); INSERT INTO public.notice VALUES (3802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689960359); INSERT INTO public.notice VALUES (3803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689960960); INSERT INTO public.notice VALUES (3804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689961559); INSERT INTO public.notice VALUES (3805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689962159); INSERT INTO public.notice VALUES (3806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689962760); INSERT INTO public.notice VALUES (3807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689963360); INSERT INTO public.notice VALUES (3808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689963959); INSERT INTO public.notice VALUES (3809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689964559); INSERT INTO public.notice VALUES (3810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689965161); INSERT INTO public.notice VALUES (3811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689965760); INSERT INTO public.notice VALUES (3812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689966359); INSERT INTO public.notice VALUES (3813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689966958); INSERT INTO public.notice VALUES (3814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689967560); INSERT INTO public.notice VALUES (3820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689971159); INSERT INTO public.notice VALUES (3823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689972959); INSERT INTO public.notice VALUES (3825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689974160); INSERT INTO public.notice VALUES (3826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689974759); INSERT INTO public.notice VALUES (3831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689977759); INSERT INTO public.notice VALUES (3832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689978360); INSERT INTO public.notice VALUES (3833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689978959); INSERT INTO public.notice VALUES (3835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689980160); INSERT INTO public.notice VALUES (3836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689980760); INSERT INTO public.notice VALUES (3837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689981359); INSERT INTO public.notice VALUES (3838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689981959); INSERT INTO public.notice VALUES (4773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690543438); INSERT INTO public.notice VALUES (4774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690544038); INSERT INTO public.notice VALUES (3815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689968159); INSERT INTO public.notice VALUES (3816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689968759); INSERT INTO public.notice VALUES (3817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689969360); INSERT INTO public.notice VALUES (3818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689969960); INSERT INTO public.notice VALUES (3819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689970559); INSERT INTO public.notice VALUES (3821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689971760); INSERT INTO public.notice VALUES (3822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689972360); INSERT INTO public.notice VALUES (3824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689973560); INSERT INTO public.notice VALUES (3827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689975359); INSERT INTO public.notice VALUES (3828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689975960); INSERT INTO public.notice VALUES (3829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689976560); INSERT INTO public.notice VALUES (3830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689977159); INSERT INTO public.notice VALUES (3834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689979559); INSERT INTO public.notice VALUES (3839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689982560); INSERT INTO public.notice VALUES (3840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689983160); INSERT INTO public.notice VALUES (3841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689983760); INSERT INTO public.notice VALUES (3842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689984358); INSERT INTO public.notice VALUES (3843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689984960); INSERT INTO public.notice VALUES (3844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689985559); INSERT INTO public.notice VALUES (3845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689986159); INSERT INTO public.notice VALUES (3846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689986760); INSERT INTO public.notice VALUES (3847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689987360); INSERT INTO public.notice VALUES (3848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689987959); INSERT INTO public.notice VALUES (3849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689988559); INSERT INTO public.notice VALUES (3850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689989160); INSERT INTO public.notice VALUES (3851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689989759); INSERT INTO public.notice VALUES (3852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689990359); INSERT INTO public.notice VALUES (3853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689990961); INSERT INTO public.notice VALUES (3854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689991560); INSERT INTO public.notice VALUES (3855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689992159); INSERT INTO public.notice VALUES (3856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689992759); INSERT INTO public.notice VALUES (3857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689993360); INSERT INTO public.notice VALUES (3859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689994559); INSERT INTO public.notice VALUES (4775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690544639); INSERT INTO public.notice VALUES (4778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690546437); INSERT INTO public.notice VALUES (4779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690547039); INSERT INTO public.notice VALUES (4780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690547638); INSERT INTO public.notice VALUES (4781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690548238); INSERT INTO public.notice VALUES (4783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690549439); INSERT INTO public.notice VALUES (5003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690681438); INSERT INTO public.notice VALUES (5004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690682039); INSERT INTO public.notice VALUES (5005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690682639); INSERT INTO public.notice VALUES (5007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690683838); INSERT INTO public.notice VALUES (5008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690684439); INSERT INTO public.notice VALUES (5011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690686237); INSERT INTO public.notice VALUES (3858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689993960); INSERT INTO public.notice VALUES (3860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689995160); INSERT INTO public.notice VALUES (3861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689995760); INSERT INTO public.notice VALUES (3862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689996359); INSERT INTO public.notice VALUES (3863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689996959); INSERT INTO public.notice VALUES (3864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689997560); INSERT INTO public.notice VALUES (3865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689998160); INSERT INTO public.notice VALUES (3866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689998759); INSERT INTO public.notice VALUES (3867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689999358); INSERT INTO public.notice VALUES (3868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1689999961); INSERT INTO public.notice VALUES (3869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690000559); INSERT INTO public.notice VALUES (3870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690001159); INSERT INTO public.notice VALUES (3871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690001761); INSERT INTO public.notice VALUES (3872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690002360); INSERT INTO public.notice VALUES (3873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690002959); INSERT INTO public.notice VALUES (3874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690003559); INSERT INTO public.notice VALUES (3878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690005961); INSERT INTO public.notice VALUES (3883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690008960); INSERT INTO public.notice VALUES (3884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690009559); INSERT INTO public.notice VALUES (3885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690010159); INSERT INTO public.notice VALUES (3886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690010760); INSERT INTO public.notice VALUES (3888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690011959); INSERT INTO public.notice VALUES (3889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690012560); INSERT INTO public.notice VALUES (3890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690013160); INSERT INTO public.notice VALUES (3891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690013759); INSERT INTO public.notice VALUES (3892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690014359); INSERT INTO public.notice VALUES (3893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690014960); INSERT INTO public.notice VALUES (3894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690015560); INSERT INTO public.notice VALUES (3895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690016159); INSERT INTO public.notice VALUES (3897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690017360); INSERT INTO public.notice VALUES (3875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690004160); INSERT INTO public.notice VALUES (3876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690004760); INSERT INTO public.notice VALUES (3877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690005359); INSERT INTO public.notice VALUES (3879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690006560); INSERT INTO public.notice VALUES (3880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690007160); INSERT INTO public.notice VALUES (3881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690007759); INSERT INTO public.notice VALUES (3882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690008360); INSERT INTO public.notice VALUES (3887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690011359); INSERT INTO public.notice VALUES (3896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690016761); INSERT INTO public.notice VALUES (3899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690018559); INSERT INTO public.notice VALUES (3900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690019160); INSERT INTO public.notice VALUES (3902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690020359); INSERT INTO public.notice VALUES (4776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690545239); INSERT INTO public.notice VALUES (4777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690545838); INSERT INTO public.notice VALUES (4782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690548839); INSERT INTO public.notice VALUES (3898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690017960); INSERT INTO public.notice VALUES (3901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690019760); INSERT INTO public.notice VALUES (3903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690020960); INSERT INTO public.notice VALUES (3904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690021561); INSERT INTO public.notice VALUES (3905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690022160); INSERT INTO public.notice VALUES (3906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690022759); INSERT INTO public.notice VALUES (3907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690023360); INSERT INTO public.notice VALUES (3908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690023960); INSERT INTO public.notice VALUES (3909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690024559); INSERT INTO public.notice VALUES (3910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690025159); INSERT INTO public.notice VALUES (3911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690025760); INSERT INTO public.notice VALUES (3912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690026359); INSERT INTO public.notice VALUES (3913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690026959); INSERT INTO public.notice VALUES (3914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690027560); INSERT INTO public.notice VALUES (3915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690028160); INSERT INTO public.notice VALUES (3916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690028759); INSERT INTO public.notice VALUES (3919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690030559); INSERT INTO public.notice VALUES (3920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690031159); INSERT INTO public.notice VALUES (3923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690032960); INSERT INTO public.notice VALUES (3925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690034160); INSERT INTO public.notice VALUES (3926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690034760); INSERT INTO public.notice VALUES (3929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690036561); INSERT INTO public.notice VALUES (3931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690037760); INSERT INTO public.notice VALUES (3932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690038360); INSERT INTO public.notice VALUES (4784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690550038); INSERT INTO public.notice VALUES (4785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690550638); INSERT INTO public.notice VALUES (4788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690552439); INSERT INTO public.notice VALUES (5012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690686839); INSERT INTO public.notice VALUES (5090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690733637); INSERT INTO public.notice VALUES (5118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690750438); INSERT INTO public.notice VALUES (3917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690029359); INSERT INTO public.notice VALUES (3918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690029960); INSERT INTO public.notice VALUES (3921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690031758); INSERT INTO public.notice VALUES (3922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690032360); INSERT INTO public.notice VALUES (3924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690033559); INSERT INTO public.notice VALUES (3927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690035359); INSERT INTO public.notice VALUES (3928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690035958); INSERT INTO public.notice VALUES (3930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690037159); INSERT INTO public.notice VALUES (3933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690038960); INSERT INTO public.notice VALUES (3934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690039559); INSERT INTO public.notice VALUES (3935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690040160); INSERT INTO public.notice VALUES (3936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690040760); INSERT INTO public.notice VALUES (3937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690041359); INSERT INTO public.notice VALUES (3938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690041959); INSERT INTO public.notice VALUES (3939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690042560); INSERT INTO public.notice VALUES (3940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690043160); INSERT INTO public.notice VALUES (3942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690044359); INSERT INTO public.notice VALUES (3944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690045559); INSERT INTO public.notice VALUES (3946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690046759); INSERT INTO public.notice VALUES (3949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690048559); INSERT INTO public.notice VALUES (3953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690050959); INSERT INTO public.notice VALUES (3954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690051561); INSERT INTO public.notice VALUES (3956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690052759); INSERT INTO public.notice VALUES (3957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to gitlab.com:443 ', 1690053388); INSERT INTO public.notice VALUES (3959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690054559); INSERT INTO public.notice VALUES (3961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690055761); INSERT INTO public.notice VALUES (3962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690056360); INSERT INTO public.notice VALUES (3964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690057559); INSERT INTO public.notice VALUES (3966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690058759); INSERT INTO public.notice VALUES (3968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690059960); INSERT INTO public.notice VALUES (3971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690061759); INSERT INTO public.notice VALUES (3941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690043759); INSERT INTO public.notice VALUES (3943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690044960); INSERT INTO public.notice VALUES (3945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690046162); INSERT INTO public.notice VALUES (3947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690047360); INSERT INTO public.notice VALUES (3948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690047960); INSERT INTO public.notice VALUES (3950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690049160); INSERT INTO public.notice VALUES (3951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690049766); INSERT INTO public.notice VALUES (3952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690050359); INSERT INTO public.notice VALUES (3955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690052159); INSERT INTO public.notice VALUES (3958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690054031); INSERT INTO public.notice VALUES (3960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690055159); INSERT INTO public.notice VALUES (3963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690056959); INSERT INTO public.notice VALUES (3965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690058160); INSERT INTO public.notice VALUES (3967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690059359); INSERT INTO public.notice VALUES (3969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690060560); INSERT INTO public.notice VALUES (3970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690061160); INSERT INTO public.notice VALUES (3973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690062959); INSERT INTO public.notice VALUES (3974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690063559); INSERT INTO public.notice VALUES (3975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690064165); INSERT INTO public.notice VALUES (3977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690065359); INSERT INTO public.notice VALUES (3979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690066560); INSERT INTO public.notice VALUES (3980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690067160); INSERT INTO public.notice VALUES (3983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690068960); INSERT INTO public.notice VALUES (3985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690070159); INSERT INTO public.notice VALUES (3986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690070760); INSERT INTO public.notice VALUES (3987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690071360); INSERT INTO public.notice VALUES (3988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690071959); INSERT INTO public.notice VALUES (3990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690073160); INSERT INTO public.notice VALUES (3992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690074360); INSERT INTO public.notice VALUES (3994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690075560); INSERT INTO public.notice VALUES (3972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690062360); INSERT INTO public.notice VALUES (3976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690064760); INSERT INTO public.notice VALUES (3978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690065959); INSERT INTO public.notice VALUES (3981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690067760); INSERT INTO public.notice VALUES (3982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690068359); INSERT INTO public.notice VALUES (3984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690069560); INSERT INTO public.notice VALUES (3989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690072559); INSERT INTO public.notice VALUES (3991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690073760); INSERT INTO public.notice VALUES (3993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690074958); INSERT INTO public.notice VALUES (3998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690077960); INSERT INTO public.notice VALUES (3999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690078559); INSERT INTO public.notice VALUES (4786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690551239); INSERT INTO public.notice VALUES (4787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690551838); INSERT INTO public.notice VALUES (4789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690553039); INSERT INTO public.notice VALUES (4790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690553639); INSERT INTO public.notice VALUES (3995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690076159); INSERT INTO public.notice VALUES (3996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690076759); INSERT INTO public.notice VALUES (3997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690077359); INSERT INTO public.notice VALUES (4000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690079159); INSERT INTO public.notice VALUES (4001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690079760); INSERT INTO public.notice VALUES (4002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690080360); INSERT INTO public.notice VALUES (4003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690080963); INSERT INTO public.notice VALUES (4004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690081559); INSERT INTO public.notice VALUES (4005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690082164); INSERT INTO public.notice VALUES (4006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690082760); INSERT INTO public.notice VALUES (4007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690083359); INSERT INTO public.notice VALUES (4008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690083960); INSERT INTO public.notice VALUES (4009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690084560); INSERT INTO public.notice VALUES (4010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690085159); INSERT INTO public.notice VALUES (4011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690085759); INSERT INTO public.notice VALUES (4012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690086360); INSERT INTO public.notice VALUES (4016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690088760); INSERT INTO public.notice VALUES (4017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690089359); INSERT INTO public.notice VALUES (4018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690089959); INSERT INTO public.notice VALUES (4020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690091160); INSERT INTO public.notice VALUES (4029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690096559); INSERT INTO public.notice VALUES (4034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690099558); INSERT INTO public.notice VALUES (4791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690554238); INSERT INTO public.notice VALUES (4793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690555439); INSERT INTO public.notice VALUES (4794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690556039); INSERT INTO public.notice VALUES (5014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690688038); INSERT INTO public.notice VALUES (5016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690689239); INSERT INTO public.notice VALUES (5018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690690437); INSERT INTO public.notice VALUES (5020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690691639); INSERT INTO public.notice VALUES (5021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690692238); INSERT INTO public.notice VALUES (4013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690086960); INSERT INTO public.notice VALUES (4014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690087560); INSERT INTO public.notice VALUES (4015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690088158); INSERT INTO public.notice VALUES (4019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690090559); INSERT INTO public.notice VALUES (4021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690091759); INSERT INTO public.notice VALUES (4022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690092359); INSERT INTO public.notice VALUES (4023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690092960); INSERT INTO public.notice VALUES (4024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690093560); INSERT INTO public.notice VALUES (4025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690094159); INSERT INTO public.notice VALUES (4026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690094759); INSERT INTO public.notice VALUES (4027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690095360); INSERT INTO public.notice VALUES (4028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690095960); INSERT INTO public.notice VALUES (4030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690097160); INSERT INTO public.notice VALUES (4031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690097760); INSERT INTO public.notice VALUES (4032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690098359); INSERT INTO public.notice VALUES (4033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690098959); INSERT INTO public.notice VALUES (4035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690100161); INSERT INTO public.notice VALUES (4036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690100759); INSERT INTO public.notice VALUES (4037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690101359); INSERT INTO public.notice VALUES (4038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690101960); INSERT INTO public.notice VALUES (4039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690102560); INSERT INTO public.notice VALUES (4040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690103159); INSERT INTO public.notice VALUES (4041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690103759); INSERT INTO public.notice VALUES (4042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690104360); INSERT INTO public.notice VALUES (4043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690104959); INSERT INTO public.notice VALUES (4044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690105559); INSERT INTO public.notice VALUES (4045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690106158); INSERT INTO public.notice VALUES (4046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690106760); INSERT INTO public.notice VALUES (4047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690107359); INSERT INTO public.notice VALUES (4048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690107959); INSERT INTO public.notice VALUES (4049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690108560); INSERT INTO public.notice VALUES (4050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690109160); INSERT INTO public.notice VALUES (4051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690109759); INSERT INTO public.notice VALUES (4052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690110358); INSERT INTO public.notice VALUES (4057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690113360); INSERT INTO public.notice VALUES (4058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690113959); INSERT INTO public.notice VALUES (4059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690114559); INSERT INTO public.notice VALUES (4792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690554838); INSERT INTO public.notice VALUES (4795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690556638); INSERT INTO public.notice VALUES (4796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690557238); INSERT INTO public.notice VALUES (5022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690692840); INSERT INTO public.notice VALUES (5023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690693439); INSERT INTO public.notice VALUES (5024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690694038); INSERT INTO public.notice VALUES (5026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690695239); INSERT INTO public.notice VALUES (5027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690695839); INSERT INTO public.notice VALUES (4053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690110960); INSERT INTO public.notice VALUES (4054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690111559); INSERT INTO public.notice VALUES (4055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690112159); INSERT INTO public.notice VALUES (4056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690112761); INSERT INTO public.notice VALUES (4060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690115160); INSERT INTO public.notice VALUES (4061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690115760); INSERT INTO public.notice VALUES (4062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690116359); INSERT INTO public.notice VALUES (4063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690116961); INSERT INTO public.notice VALUES (4064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690117561); INSERT INTO public.notice VALUES (4065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690118159); INSERT INTO public.notice VALUES (4066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690118759); INSERT INTO public.notice VALUES (4067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690119360); INSERT INTO public.notice VALUES (4068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690119960); INSERT INTO public.notice VALUES (4069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690120559); INSERT INTO public.notice VALUES (4070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690121158); INSERT INTO public.notice VALUES (4071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690121760); INSERT INTO public.notice VALUES (4072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690122359); INSERT INTO public.notice VALUES (4073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690122974); INSERT INTO public.notice VALUES (4074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690123560); INSERT INTO public.notice VALUES (4075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690124161); INSERT INTO public.notice VALUES (4076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690124759); INSERT INTO public.notice VALUES (4077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690125359); INSERT INTO public.notice VALUES (4078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690125960); INSERT INTO public.notice VALUES (4079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690126560); INSERT INTO public.notice VALUES (4080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690127159); INSERT INTO public.notice VALUES (4081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690127759); INSERT INTO public.notice VALUES (4082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690128360); INSERT INTO public.notice VALUES (4083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690128959); INSERT INTO public.notice VALUES (4084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690129559); INSERT INTO public.notice VALUES (4085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690130161); INSERT INTO public.notice VALUES (4086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690130760); INSERT INTO public.notice VALUES (4087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690131359); INSERT INTO public.notice VALUES (4797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690557839); INSERT INTO public.notice VALUES (5025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690694638); INSERT INTO public.notice VALUES (5029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690697037); INSERT INTO public.notice VALUES (5030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690697639); INSERT INTO public.notice VALUES (5031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690698238); INSERT INTO public.notice VALUES (5032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690698838); INSERT INTO public.notice VALUES (5033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690699439); INSERT INTO public.notice VALUES (5034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690700039); INSERT INTO public.notice VALUES (5091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690734239); INSERT INTO public.notice VALUES (5119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690751039); INSERT INTO public.notice VALUES (5120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690751639); INSERT INTO public.notice VALUES (5121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690752238); INSERT INTO public.notice VALUES (5123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690753439); INSERT INTO public.notice VALUES (4088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690131959); INSERT INTO public.notice VALUES (4089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690132560); INSERT INTO public.notice VALUES (4090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690133160); INSERT INTO public.notice VALUES (4091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690133759); INSERT INTO public.notice VALUES (4092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690134360); INSERT INTO public.notice VALUES (4093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690134960); INSERT INTO public.notice VALUES (4094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690135559); INSERT INTO public.notice VALUES (4095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690136159); INSERT INTO public.notice VALUES (4096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690136760); INSERT INTO public.notice VALUES (4097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690137360); INSERT INTO public.notice VALUES (4098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690137960); INSERT INTO public.notice VALUES (4099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690138559); INSERT INTO public.notice VALUES (4100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690139160); INSERT INTO public.notice VALUES (4101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690139759); INSERT INTO public.notice VALUES (4102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690140359); INSERT INTO public.notice VALUES (4103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690140960); INSERT INTO public.notice VALUES (4104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690141560); INSERT INTO public.notice VALUES (4108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690143960); INSERT INTO public.notice VALUES (4798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690558438); INSERT INTO public.notice VALUES (4805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690562639); INSERT INTO public.notice VALUES (4806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690563238); INSERT INTO public.notice VALUES (4807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690563840); INSERT INTO public.notice VALUES (4808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690564439); INSERT INTO public.notice VALUES (4809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690565038); INSERT INTO public.notice VALUES (4813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690567438); INSERT INTO public.notice VALUES (5028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690696438); INSERT INTO public.notice VALUES (5035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690700638); INSERT INTO public.notice VALUES (5093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690735438); INSERT INTO public.notice VALUES (5094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690736040); INSERT INTO public.notice VALUES (5098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690738439); INSERT INTO public.notice VALUES (4105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690142159); INSERT INTO public.notice VALUES (4106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690142758); INSERT INTO public.notice VALUES (4107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690143360); INSERT INTO public.notice VALUES (4109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690144559); INSERT INTO public.notice VALUES (4110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690145160); INSERT INTO public.notice VALUES (4111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690145760); INSERT INTO public.notice VALUES (4112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690146359); INSERT INTO public.notice VALUES (4113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690146959); INSERT INTO public.notice VALUES (4114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690147560); INSERT INTO public.notice VALUES (4115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690148160); INSERT INTO public.notice VALUES (4116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690148759); INSERT INTO public.notice VALUES (4117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690149358); INSERT INTO public.notice VALUES (4118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690149960); INSERT INTO public.notice VALUES (4119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690150559); INSERT INTO public.notice VALUES (4120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690151159); INSERT INTO public.notice VALUES (4121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690151760); INSERT INTO public.notice VALUES (4124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690153560); INSERT INTO public.notice VALUES (4799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690559038); INSERT INTO public.notice VALUES (4800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690559639); INSERT INTO public.notice VALUES (4801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690560239); INSERT INTO public.notice VALUES (4802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690560838); INSERT INTO public.notice VALUES (5036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690701238); INSERT INTO public.notice VALUES (5038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690702438); INSERT INTO public.notice VALUES (5095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690736638); INSERT INTO public.notice VALUES (5096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690737238); INSERT INTO public.notice VALUES (5097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690737838); INSERT INTO public.notice VALUES (5099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690739038); INSERT INTO public.notice VALUES (5100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690739638); INSERT INTO public.notice VALUES (5101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690740237); INSERT INTO public.notice VALUES (5106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690743239); INSERT INTO public.notice VALUES (4122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690152360); INSERT INTO public.notice VALUES (4123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690152959); INSERT INTO public.notice VALUES (4125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690154160); INSERT INTO public.notice VALUES (4126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690154759); INSERT INTO public.notice VALUES (4127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690155359); INSERT INTO public.notice VALUES (4128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690155960); INSERT INTO public.notice VALUES (4129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690156560); INSERT INTO public.notice VALUES (4130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690157159); INSERT INTO public.notice VALUES (4131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690157759); INSERT INTO public.notice VALUES (4132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690158360); INSERT INTO public.notice VALUES (4133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690158959); INSERT INTO public.notice VALUES (4134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690159559); INSERT INTO public.notice VALUES (4135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690160160); INSERT INTO public.notice VALUES (4136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690160760); INSERT INTO public.notice VALUES (4137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690161359); INSERT INTO public.notice VALUES (4138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690161959); INSERT INTO public.notice VALUES (4139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690162560); INSERT INTO public.notice VALUES (4140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690163159); INSERT INTO public.notice VALUES (4142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690164361); INSERT INTO public.notice VALUES (4803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690561439); INSERT INTO public.notice VALUES (4804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690562039); INSERT INTO public.notice VALUES (4810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690565637); INSERT INTO public.notice VALUES (4811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690566239); INSERT INTO public.notice VALUES (4812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690566839); INSERT INTO public.notice VALUES (4816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690569238); INSERT INTO public.notice VALUES (4817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690569838); INSERT INTO public.notice VALUES (4819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690571038); INSERT INTO public.notice VALUES (4820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690571639); INSERT INTO public.notice VALUES (4822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690572839); INSERT INTO public.notice VALUES (5037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690701839); INSERT INTO public.notice VALUES (4141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690163759); INSERT INTO public.notice VALUES (4143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690164960); INSERT INTO public.notice VALUES (4144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690165559); INSERT INTO public.notice VALUES (4145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690166159); INSERT INTO public.notice VALUES (4146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690166760); INSERT INTO public.notice VALUES (4147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690167360); INSERT INTO public.notice VALUES (4148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690167959); INSERT INTO public.notice VALUES (4149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690168559); INSERT INTO public.notice VALUES (4150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690169160); INSERT INTO public.notice VALUES (4151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690169759); INSERT INTO public.notice VALUES (4152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690170359); INSERT INTO public.notice VALUES (4153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690170960); INSERT INTO public.notice VALUES (4154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690171560); INSERT INTO public.notice VALUES (4155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690172159); INSERT INTO public.notice VALUES (4156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690172760); INSERT INTO public.notice VALUES (4157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690173360); INSERT INTO public.notice VALUES (4158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690173961); INSERT INTO public.notice VALUES (4159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690174559); INSERT INTO public.notice VALUES (4160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690175158); INSERT INTO public.notice VALUES (4162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690176359); INSERT INTO public.notice VALUES (4163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690176959); INSERT INTO public.notice VALUES (4165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690178160); INSERT INTO public.notice VALUES (4166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690178759); INSERT INTO public.notice VALUES (4167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690179358); INSERT INTO public.notice VALUES (4814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690568039); INSERT INTO public.notice VALUES (4815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690568639); INSERT INTO public.notice VALUES (4818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690570439); INSERT INTO public.notice VALUES (4821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690572237); INSERT INTO public.notice VALUES (4825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690574639); INSERT INTO public.notice VALUES (4827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690575839); INSERT INTO public.notice VALUES (4161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690175760); INSERT INTO public.notice VALUES (4164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690177561); INSERT INTO public.notice VALUES (4168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690179960); INSERT INTO public.notice VALUES (4169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690180559); INSERT INTO public.notice VALUES (4170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690181160); INSERT INTO public.notice VALUES (4171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690181761); INSERT INTO public.notice VALUES (4172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690182360); INSERT INTO public.notice VALUES (4173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690182960); INSERT INTO public.notice VALUES (4174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690183559); INSERT INTO public.notice VALUES (4175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690184160); INSERT INTO public.notice VALUES (4176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690184759); INSERT INTO public.notice VALUES (4177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690185359); INSERT INTO public.notice VALUES (4178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690185959); INSERT INTO public.notice VALUES (4179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690186560); INSERT INTO public.notice VALUES (4180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690187160); INSERT INTO public.notice VALUES (4181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690187759); INSERT INTO public.notice VALUES (4182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690188360); INSERT INTO public.notice VALUES (4183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690188961); INSERT INTO public.notice VALUES (4184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690189560); INSERT INTO public.notice VALUES (4185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690190159); INSERT INTO public.notice VALUES (4186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690190760); INSERT INTO public.notice VALUES (4187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690191360); INSERT INTO public.notice VALUES (4188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690191959); INSERT INTO public.notice VALUES (4189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690192560); INSERT INTO public.notice VALUES (4190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690193160); INSERT INTO public.notice VALUES (4191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690193759); INSERT INTO public.notice VALUES (4192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690194359); INSERT INTO public.notice VALUES (4193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690194960); INSERT INTO public.notice VALUES (4194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690195560); INSERT INTO public.notice VALUES (4195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690196159); INSERT INTO public.notice VALUES (4196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690196761); INSERT INTO public.notice VALUES (4197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690197360); INSERT INTO public.notice VALUES (4198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690197959); INSERT INTO public.notice VALUES (4201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690199759); INSERT INTO public.notice VALUES (4207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690203360); INSERT INTO public.notice VALUES (4209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690204559); INSERT INTO public.notice VALUES (4212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690206360); INSERT INTO public.notice VALUES (4213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690206959); INSERT INTO public.notice VALUES (4217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690209359); INSERT INTO public.notice VALUES (4219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690210560); INSERT INTO public.notice VALUES (4223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690212959); INSERT INTO public.notice VALUES (4227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690215359); INSERT INTO public.notice VALUES (4823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690573438); INSERT INTO public.notice VALUES (5039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690703038); INSERT INTO public.notice VALUES (5042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690704838); INSERT INTO public.notice VALUES (4199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690198559); INSERT INTO public.notice VALUES (4200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690199160); INSERT INTO public.notice VALUES (4202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690200359); INSERT INTO public.notice VALUES (4203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690200959); INSERT INTO public.notice VALUES (4204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690201560); INSERT INTO public.notice VALUES (4205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690202159); INSERT INTO public.notice VALUES (4206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690202759); INSERT INTO public.notice VALUES (4208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690203960); INSERT INTO public.notice VALUES (4210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690205159); INSERT INTO public.notice VALUES (4211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690205760); INSERT INTO public.notice VALUES (4214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690207560); INSERT INTO public.notice VALUES (4215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690208160); INSERT INTO public.notice VALUES (4216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690208759); INSERT INTO public.notice VALUES (4218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690209960); INSERT INTO public.notice VALUES (4220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690211160); INSERT INTO public.notice VALUES (4221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690211759); INSERT INTO public.notice VALUES (4222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690212360); INSERT INTO public.notice VALUES (4224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690213559); INSERT INTO public.notice VALUES (4225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690214160); INSERT INTO public.notice VALUES (4226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690214760); INSERT INTO public.notice VALUES (4228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690215959); INSERT INTO public.notice VALUES (4229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690216560); INSERT INTO public.notice VALUES (4230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690217160); INSERT INTO public.notice VALUES (4231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690217759); INSERT INTO public.notice VALUES (4232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690218358); INSERT INTO public.notice VALUES (4233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690218960); INSERT INTO public.notice VALUES (4234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690219559); INSERT INTO public.notice VALUES (4235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690220159); INSERT INTO public.notice VALUES (4236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690220760); INSERT INTO public.notice VALUES (4237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690221360); INSERT INTO public.notice VALUES (4238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690221959); INSERT INTO public.notice VALUES (4240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690223160); INSERT INTO public.notice VALUES (4242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690224360); INSERT INTO public.notice VALUES (4243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690224960); INSERT INTO public.notice VALUES (4247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690227360); INSERT INTO public.notice VALUES (4248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690227960); INSERT INTO public.notice VALUES (4250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690229161); INSERT INTO public.notice VALUES (4252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690230359); INSERT INTO public.notice VALUES (4255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690232160); INSERT INTO public.notice VALUES (4258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690233960); INSERT INTO public.notice VALUES (4824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690574038); INSERT INTO public.notice VALUES (4826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690575239); INSERT INTO public.notice VALUES (4828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690576438); INSERT INTO public.notice VALUES (4830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690577638); INSERT INTO public.notice VALUES (4832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690578839); INSERT INTO public.notice VALUES (4239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690222559); INSERT INTO public.notice VALUES (4241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690223759); INSERT INTO public.notice VALUES (4244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690225560); INSERT INTO public.notice VALUES (4245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690226159); INSERT INTO public.notice VALUES (4246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690226758); INSERT INTO public.notice VALUES (4249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690228559); INSERT INTO public.notice VALUES (4251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690229760); INSERT INTO public.notice VALUES (4253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690230959); INSERT INTO public.notice VALUES (4254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690231560); INSERT INTO public.notice VALUES (4256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690232759); INSERT INTO public.notice VALUES (4257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690233359); INSERT INTO public.notice VALUES (4259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690234559); INSERT INTO public.notice VALUES (4260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690235159); INSERT INTO public.notice VALUES (4261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690235759); INSERT INTO public.notice VALUES (4262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690236360); INSERT INTO public.notice VALUES (4263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690236959); INSERT INTO public.notice VALUES (4264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690237559); INSERT INTO public.notice VALUES (4265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690238160); INSERT INTO public.notice VALUES (4266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690238760); INSERT INTO public.notice VALUES (4269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690240560); INSERT INTO public.notice VALUES (4271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690241759); INSERT INTO public.notice VALUES (4273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690242960); INSERT INTO public.notice VALUES (4274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690243559); INSERT INTO public.notice VALUES (4275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690244159); INSERT INTO public.notice VALUES (4829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690577039); INSERT INTO public.notice VALUES (4831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690578238); INSERT INTO public.notice VALUES (5040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690703639); INSERT INTO public.notice VALUES (5041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690704239); INSERT INTO public.notice VALUES (5043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690705438); INSERT INTO public.notice VALUES (5045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690706638); INSERT INTO public.notice VALUES (4267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690239359); INSERT INTO public.notice VALUES (4268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690239959); INSERT INTO public.notice VALUES (4270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690241159); INSERT INTO public.notice VALUES (4272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690242360); INSERT INTO public.notice VALUES (4276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690244760); INSERT INTO public.notice VALUES (4277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690245360); INSERT INTO public.notice VALUES (4278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690245959); INSERT INTO public.notice VALUES (4279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690246559); INSERT INTO public.notice VALUES (4280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690247160); INSERT INTO public.notice VALUES (4281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690247759); INSERT INTO public.notice VALUES (4282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690248359); INSERT INTO public.notice VALUES (4283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690248960); INSERT INTO public.notice VALUES (4284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690249560); INSERT INTO public.notice VALUES (4285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690250160); INSERT INTO public.notice VALUES (4286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690250759); INSERT INTO public.notice VALUES (4287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690251360); INSERT INTO public.notice VALUES (4288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690251959); INSERT INTO public.notice VALUES (4291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690253763); INSERT INTO public.notice VALUES (4292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690254359); INSERT INTO public.notice VALUES (4293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690254959); INSERT INTO public.notice VALUES (4301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690259767); INSERT INTO public.notice VALUES (4833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690579439); INSERT INTO public.notice VALUES (5044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690706039); INSERT INTO public.notice VALUES (5046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690707238); INSERT INTO public.notice VALUES (5049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690709038); INSERT INTO public.notice VALUES (5102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690740839); INSERT INTO public.notice VALUES (5103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690741438); INSERT INTO public.notice VALUES (5104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690742038); INSERT INTO public.notice VALUES (5105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690742639); INSERT INTO public.notice VALUES (5108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690744437); INSERT INTO public.notice VALUES (4289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690252559); INSERT INTO public.notice VALUES (4290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690253160); INSERT INTO public.notice VALUES (4294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690255560); INSERT INTO public.notice VALUES (4295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690256160); INSERT INTO public.notice VALUES (4296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690256759); INSERT INTO public.notice VALUES (4297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690257358); INSERT INTO public.notice VALUES (4298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690257960); INSERT INTO public.notice VALUES (4299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690258560); INSERT INTO public.notice VALUES (4300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690259159); INSERT INTO public.notice VALUES (4302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690260360); INSERT INTO public.notice VALUES (4303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690260959); INSERT INTO public.notice VALUES (4304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690261574); INSERT INTO public.notice VALUES (4305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690262160); INSERT INTO public.notice VALUES (4306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690262761); INSERT INTO public.notice VALUES (4307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690263362); INSERT INTO public.notice VALUES (4308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690263960); INSERT INTO public.notice VALUES (4312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690266359); INSERT INTO public.notice VALUES (4313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690266960); INSERT INTO public.notice VALUES (4834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690580038); INSERT INTO public.notice VALUES (4835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690580638); INSERT INTO public.notice VALUES (4837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690581838); INSERT INTO public.notice VALUES (4839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690583039); INSERT INTO public.notice VALUES (4842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690584838); INSERT INTO public.notice VALUES (4848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690588438); INSERT INTO public.notice VALUES (4849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690589038); INSERT INTO public.notice VALUES (4853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690591437); INSERT INTO public.notice VALUES (4856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690593238); INSERT INTO public.notice VALUES (4857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690593839); INSERT INTO public.notice VALUES (4858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690594439); INSERT INTO public.notice VALUES (4860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690595638); INSERT INTO public.notice VALUES (4309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690264560); INSERT INTO public.notice VALUES (4310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690265160); INSERT INTO public.notice VALUES (4311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690265759); INSERT INTO public.notice VALUES (4314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690267560); INSERT INTO public.notice VALUES (4315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690268159); INSERT INTO public.notice VALUES (4316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690268760); INSERT INTO public.notice VALUES (4317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690269360); INSERT INTO public.notice VALUES (4318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690269959); INSERT INTO public.notice VALUES (4319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690270559); INSERT INTO public.notice VALUES (4320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690271160); INSERT INTO public.notice VALUES (4321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690271759); INSERT INTO public.notice VALUES (4322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690272359); INSERT INTO public.notice VALUES (4323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690272960); INSERT INTO public.notice VALUES (4324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690273561); INSERT INTO public.notice VALUES (4325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690274159); INSERT INTO public.notice VALUES (4326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690274759); INSERT INTO public.notice VALUES (4329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690276559); INSERT INTO public.notice VALUES (4330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690277161); INSERT INTO public.notice VALUES (4836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690581239); INSERT INTO public.notice VALUES (4838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690582438); INSERT INTO public.notice VALUES (4840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690583639); INSERT INTO public.notice VALUES (4841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690584238); INSERT INTO public.notice VALUES (4843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690585439); INSERT INTO public.notice VALUES (4844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690586039); INSERT INTO public.notice VALUES (4845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690586638); INSERT INTO public.notice VALUES (4846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690587240); INSERT INTO public.notice VALUES (4847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690587839); INSERT INTO public.notice VALUES (4850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690589639); INSERT INTO public.notice VALUES (4851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690590239); INSERT INTO public.notice VALUES (4852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690590838); INSERT INTO public.notice VALUES (4327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690275360); INSERT INTO public.notice VALUES (4328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690275960); INSERT INTO public.notice VALUES (4331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690278239); INSERT INTO public.notice VALUES (4332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690278839); INSERT INTO public.notice VALUES (4333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690279438); INSERT INTO public.notice VALUES (4334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690280038); INSERT INTO public.notice VALUES (4335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690280639); INSERT INTO public.notice VALUES (4336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690281239); INSERT INTO public.notice VALUES (4337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690281838); INSERT INTO public.notice VALUES (4338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690282438); INSERT INTO public.notice VALUES (4339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690283039); INSERT INTO public.notice VALUES (4340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690283638); INSERT INTO public.notice VALUES (4341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690284238); INSERT INTO public.notice VALUES (4342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690284839); INSERT INTO public.notice VALUES (4343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690285439); INSERT INTO public.notice VALUES (4344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690286038); INSERT INTO public.notice VALUES (4347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690287838); INSERT INTO public.notice VALUES (4358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690294438); INSERT INTO public.notice VALUES (4359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690295038); INSERT INTO public.notice VALUES (4360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690295639); INSERT INTO public.notice VALUES (4361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690296239); INSERT INTO public.notice VALUES (4362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690296839); INSERT INTO public.notice VALUES (4363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690297438); INSERT INTO public.notice VALUES (4366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690299238); INSERT INTO public.notice VALUES (4367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690299839); INSERT INTO public.notice VALUES (4368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690300439); INSERT INTO public.notice VALUES (4370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690301638); INSERT INTO public.notice VALUES (4375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690304639); INSERT INTO public.notice VALUES (4376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690305238); INSERT INTO public.notice VALUES (4377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690305838); INSERT INTO public.notice VALUES (4345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690286638); INSERT INTO public.notice VALUES (4346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690287239); INSERT INTO public.notice VALUES (4348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690288438); INSERT INTO public.notice VALUES (4349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690289038); INSERT INTO public.notice VALUES (4350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690289639); INSERT INTO public.notice VALUES (4351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690290238); INSERT INTO public.notice VALUES (4352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690290838); INSERT INTO public.notice VALUES (4353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690291439); INSERT INTO public.notice VALUES (4354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690292039); INSERT INTO public.notice VALUES (4355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690292638); INSERT INTO public.notice VALUES (4356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690293238); INSERT INTO public.notice VALUES (4357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690293839); INSERT INTO public.notice VALUES (4364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690298039); INSERT INTO public.notice VALUES (4365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690298639); INSERT INTO public.notice VALUES (4369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690301039); INSERT INTO public.notice VALUES (4371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690302239); INSERT INTO public.notice VALUES (4372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690302839); INSERT INTO public.notice VALUES (4373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690303438); INSERT INTO public.notice VALUES (4374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690304038); INSERT INTO public.notice VALUES (4381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690308238); INSERT INTO public.notice VALUES (4382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690308839); INSERT INTO public.notice VALUES (4383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690309439); INSERT INTO public.notice VALUES (4384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690310038); INSERT INTO public.notice VALUES (4386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690311239); INSERT INTO public.notice VALUES (4390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690313639); INSERT INTO public.notice VALUES (4393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690315439); INSERT INTO public.notice VALUES (4395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690316638); INSERT INTO public.notice VALUES (4398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690318438); INSERT INTO public.notice VALUES (4402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690320838); INSERT INTO public.notice VALUES (4405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690322638); INSERT INTO public.notice VALUES (4378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690306437); INSERT INTO public.notice VALUES (4379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690307039); INSERT INTO public.notice VALUES (4380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690307638); INSERT INTO public.notice VALUES (4385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690310637); INSERT INTO public.notice VALUES (4387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690311839); INSERT INTO public.notice VALUES (4388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690312438); INSERT INTO public.notice VALUES (4389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690313039); INSERT INTO public.notice VALUES (4391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690314238); INSERT INTO public.notice VALUES (4392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690314837); INSERT INTO public.notice VALUES (4394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690316038); INSERT INTO public.notice VALUES (4396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690317239); INSERT INTO public.notice VALUES (4397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690317840); INSERT INTO public.notice VALUES (4399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690319038); INSERT INTO public.notice VALUES (4400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690319639); INSERT INTO public.notice VALUES (4401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690320238); INSERT INTO public.notice VALUES (4403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690321438); INSERT INTO public.notice VALUES (4404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690322039); INSERT INTO public.notice VALUES (4411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690326240); INSERT INTO public.notice VALUES (4854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690592039); INSERT INTO public.notice VALUES (4855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690592638); INSERT INTO public.notice VALUES (4859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690595038); INSERT INTO public.notice VALUES (4861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690596239); INSERT INTO public.notice VALUES (4862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690596838); INSERT INTO public.notice VALUES (5047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690707839); INSERT INTO public.notice VALUES (5048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690708439); INSERT INTO public.notice VALUES (5051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690710239); INSERT INTO public.notice VALUES (5052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690710839); INSERT INTO public.notice VALUES (5059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690715039); INSERT INTO public.notice VALUES (5060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690715638); INSERT INTO public.notice VALUES (5063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690717438); INSERT INTO public.notice VALUES (4406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690323238); INSERT INTO public.notice VALUES (4407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690323839); INSERT INTO public.notice VALUES (4408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690324439); INSERT INTO public.notice VALUES (4409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690325038); INSERT INTO public.notice VALUES (4410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690325638); INSERT INTO public.notice VALUES (4412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690326839); INSERT INTO public.notice VALUES (4413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690327438); INSERT INTO public.notice VALUES (4414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690328039); INSERT INTO public.notice VALUES (4415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690328639); INSERT INTO public.notice VALUES (4416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690329238); INSERT INTO public.notice VALUES (4417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690329838); INSERT INTO public.notice VALUES (4418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690330438); INSERT INTO public.notice VALUES (4419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690331039); INSERT INTO public.notice VALUES (4420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690331638); INSERT INTO public.notice VALUES (4421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690332238); INSERT INTO public.notice VALUES (4422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690332839); INSERT INTO public.notice VALUES (4423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690333439); INSERT INTO public.notice VALUES (4424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690334038); INSERT INTO public.notice VALUES (4425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690334637); INSERT INTO public.notice VALUES (4426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690335239); INSERT INTO public.notice VALUES (4427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690335839); INSERT INTO public.notice VALUES (4428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690336438); INSERT INTO public.notice VALUES (4429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690337039); INSERT INTO public.notice VALUES (4430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690337639); INSERT INTO public.notice VALUES (4431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690338239); INSERT INTO public.notice VALUES (4432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690338838); INSERT INTO public.notice VALUES (4433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690339437); INSERT INTO public.notice VALUES (4434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690340039); INSERT INTO public.notice VALUES (4435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690340638); INSERT INTO public.notice VALUES (4436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690341238); INSERT INTO public.notice VALUES (4437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690341839); INSERT INTO public.notice VALUES (4439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690343039); INSERT INTO public.notice VALUES (4440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690343638); INSERT INTO public.notice VALUES (4444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690346039); INSERT INTO public.notice VALUES (4863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690597438); INSERT INTO public.notice VALUES (4865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690598639); INSERT INTO public.notice VALUES (4866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690599238); INSERT INTO public.notice VALUES (4868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690600439); INSERT INTO public.notice VALUES (4873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690603438); INSERT INTO public.notice VALUES (4877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690605838); INSERT INTO public.notice VALUES (4878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690606438); INSERT INTO public.notice VALUES (4879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690607039); INSERT INTO public.notice VALUES (4880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690607638); INSERT INTO public.notice VALUES (4881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690608238); INSERT INTO public.notice VALUES (4885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690610638); INSERT INTO public.notice VALUES (4438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690342439); INSERT INTO public.notice VALUES (4441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690344239); INSERT INTO public.notice VALUES (4442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690344839); INSERT INTO public.notice VALUES (4443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690345438); INSERT INTO public.notice VALUES (4445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690346639); INSERT INTO public.notice VALUES (4446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690347238); INSERT INTO public.notice VALUES (4447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690347838); INSERT INTO public.notice VALUES (4448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690348439); INSERT INTO public.notice VALUES (4449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690349039); INSERT INTO public.notice VALUES (4450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690349638); INSERT INTO public.notice VALUES (4451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690350237); INSERT INTO public.notice VALUES (4452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690350839); INSERT INTO public.notice VALUES (4453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690351438); INSERT INTO public.notice VALUES (4454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690352038); INSERT INTO public.notice VALUES (4455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690352639); INSERT INTO public.notice VALUES (4456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690353239); INSERT INTO public.notice VALUES (4457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690353839); INSERT INTO public.notice VALUES (4458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690354437); INSERT INTO public.notice VALUES (4459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690355039); INSERT INTO public.notice VALUES (4464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690358038); INSERT INTO public.notice VALUES (4465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690358638); INSERT INTO public.notice VALUES (4475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690364638); INSERT INTO public.notice VALUES (4476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690365237); INSERT INTO public.notice VALUES (4478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690366438); INSERT INTO public.notice VALUES (4479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690367038); INSERT INTO public.notice VALUES (4480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690367637); INSERT INTO public.notice VALUES (4864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690598037); INSERT INTO public.notice VALUES (4867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690599838); INSERT INTO public.notice VALUES (4869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690601039); INSERT INTO public.notice VALUES (5050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690709638); INSERT INTO public.notice VALUES (4460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690355638); INSERT INTO public.notice VALUES (4461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690356238); INSERT INTO public.notice VALUES (4462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690356840); INSERT INTO public.notice VALUES (4463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690357439); INSERT INTO public.notice VALUES (4466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690359239); INSERT INTO public.notice VALUES (4467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690359838); INSERT INTO public.notice VALUES (4468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690360438); INSERT INTO public.notice VALUES (4469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690361039); INSERT INTO public.notice VALUES (4470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690361639); INSERT INTO public.notice VALUES (4471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690362238); INSERT INTO public.notice VALUES (4472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690362838); INSERT INTO public.notice VALUES (4473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690363439); INSERT INTO public.notice VALUES (4474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690364039); INSERT INTO public.notice VALUES (4477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690365839); INSERT INTO public.notice VALUES (4481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690368239); INSERT INTO public.notice VALUES (4482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690368838); INSERT INTO public.notice VALUES (4484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690370039); INSERT INTO public.notice VALUES (4486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690371238); INSERT INTO public.notice VALUES (4487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690371838); INSERT INTO public.notice VALUES (4491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690374237); INSERT INTO public.notice VALUES (4494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690376038); INSERT INTO public.notice VALUES (4495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690376639); INSERT INTO public.notice VALUES (4496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690377239); INSERT INTO public.notice VALUES (4497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690377838); INSERT INTO public.notice VALUES (4870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690601638); INSERT INTO public.notice VALUES (4871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690602237); INSERT INTO public.notice VALUES (4872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690602839); INSERT INTO public.notice VALUES (4874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690604038); INSERT INTO public.notice VALUES (4875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690604639); INSERT INTO public.notice VALUES (4876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690605239); INSERT INTO public.notice VALUES (4483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690369438); INSERT INTO public.notice VALUES (4485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690370639); INSERT INTO public.notice VALUES (4488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690372439); INSERT INTO public.notice VALUES (4489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690373039); INSERT INTO public.notice VALUES (4490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690373638); INSERT INTO public.notice VALUES (4492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690374839); INSERT INTO public.notice VALUES (4493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690375438); INSERT INTO public.notice VALUES (4498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690378438); INSERT INTO public.notice VALUES (4499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690379039); INSERT INTO public.notice VALUES (4500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690379639); INSERT INTO public.notice VALUES (4501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690380238); INSERT INTO public.notice VALUES (4502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690380838); INSERT INTO public.notice VALUES (4503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690381439); INSERT INTO public.notice VALUES (4504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690382039); INSERT INTO public.notice VALUES (4505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690382638); INSERT INTO public.notice VALUES (4506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690383237); INSERT INTO public.notice VALUES (4509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690385038); INSERT INTO public.notice VALUES (4882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690608839); INSERT INTO public.notice VALUES (4883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690609439); INSERT INTO public.notice VALUES (4884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690610038); INSERT INTO public.notice VALUES (4887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690611839); INSERT INTO public.notice VALUES (4888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690612438); INSERT INTO public.notice VALUES (4889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690613037); INSERT INTO public.notice VALUES (4890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690613639); INSERT INTO public.notice VALUES (4891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690614238); INSERT INTO public.notice VALUES (4894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690616039); INSERT INTO public.notice VALUES (4895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690616638); INSERT INTO public.notice VALUES (4896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690617238); INSERT INTO public.notice VALUES (4899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690619038); INSERT INTO public.notice VALUES (4900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690619637); INSERT INTO public.notice VALUES (4507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690383839); INSERT INTO public.notice VALUES (4508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690384439); INSERT INTO public.notice VALUES (4510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690385639); INSERT INTO public.notice VALUES (4511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690386239); INSERT INTO public.notice VALUES (4512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690386838); INSERT INTO public.notice VALUES (4513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690387438); INSERT INTO public.notice VALUES (4514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690388039); INSERT INTO public.notice VALUES (4515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690388638); INSERT INTO public.notice VALUES (4516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690389238); INSERT INTO public.notice VALUES (4517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690389840); INSERT INTO public.notice VALUES (4518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690390439); INSERT INTO public.notice VALUES (4519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690391039); INSERT INTO public.notice VALUES (4520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690391638); INSERT INTO public.notice VALUES (4521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690392239); INSERT INTO public.notice VALUES (4522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690392839); INSERT INTO public.notice VALUES (4523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690393438); INSERT INTO public.notice VALUES (4525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690394639); INSERT INTO public.notice VALUES (4526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690395239); INSERT INTO public.notice VALUES (4886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690611239); INSERT INTO public.notice VALUES (4892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690614838); INSERT INTO public.notice VALUES (4893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690615439); INSERT INTO public.notice VALUES (4897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690617839); INSERT INTO public.notice VALUES (4898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690618438); INSERT INTO public.notice VALUES (4901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690620239); INSERT INTO public.notice VALUES (4904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690622039); INSERT INTO public.notice VALUES (4909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690625038); INSERT INTO public.notice VALUES (4910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690625638); INSERT INTO public.notice VALUES (4911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690626239); INSERT INTO public.notice VALUES (4912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690626840); INSERT INTO public.notice VALUES (4914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690628037); INSERT INTO public.notice VALUES (4524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690394038); INSERT INTO public.notice VALUES (4527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690395838); INSERT INTO public.notice VALUES (4528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690396438); INSERT INTO public.notice VALUES (4529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690397039); INSERT INTO public.notice VALUES (4530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690397639); INSERT INTO public.notice VALUES (4531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690398238); INSERT INTO public.notice VALUES (4532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690398838); INSERT INTO public.notice VALUES (4533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690399439); INSERT INTO public.notice VALUES (4534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690400038); INSERT INTO public.notice VALUES (4535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690400638); INSERT INTO public.notice VALUES (4536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690401239); INSERT INTO public.notice VALUES (4537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690401839); INSERT INTO public.notice VALUES (4538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690402438); INSERT INTO public.notice VALUES (4539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690403038); INSERT INTO public.notice VALUES (4540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690403639); INSERT INTO public.notice VALUES (4541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690404238); INSERT INTO public.notice VALUES (4542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690404838); INSERT INTO public.notice VALUES (4902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690620838); INSERT INTO public.notice VALUES (4903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690621438); INSERT INTO public.notice VALUES (4905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690622639); INSERT INTO public.notice VALUES (5053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690711438); INSERT INTO public.notice VALUES (5107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690743838); INSERT INTO public.notice VALUES (5110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690745638); INSERT INTO public.notice VALUES (5116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690749239); INSERT INTO public.notice VALUES (5122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690752838); INSERT INTO public.notice VALUES (5124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690754038); INSERT INTO public.notice VALUES (5125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690754638); INSERT INTO public.notice VALUES (5126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690755239); INSERT INTO public.notice VALUES (5127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690755839); INSERT INTO public.notice VALUES (5128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690756439); INSERT INTO public.notice VALUES (4543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690405437); INSERT INTO public.notice VALUES (4544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690406039); INSERT INTO public.notice VALUES (4545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690406638); INSERT INTO public.notice VALUES (4546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690407238); INSERT INTO public.notice VALUES (4547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690407839); INSERT INTO public.notice VALUES (4548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690408439); INSERT INTO public.notice VALUES (4549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690409038); INSERT INTO public.notice VALUES (4550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690409638); INSERT INTO public.notice VALUES (4551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690410239); INSERT INTO public.notice VALUES (4552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690410839); INSERT INTO public.notice VALUES (4553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690411438); INSERT INTO public.notice VALUES (4554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690412037); INSERT INTO public.notice VALUES (4555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690412639); INSERT INTO public.notice VALUES (4556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690413238); INSERT INTO public.notice VALUES (4557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690413838); INSERT INTO public.notice VALUES (4558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690414437); INSERT INTO public.notice VALUES (4559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690415039); INSERT INTO public.notice VALUES (4560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690415638); INSERT INTO public.notice VALUES (4561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690416238); INSERT INTO public.notice VALUES (4562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690416839); INSERT INTO public.notice VALUES (4563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690417439); INSERT INTO public.notice VALUES (4564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690418038); INSERT INTO public.notice VALUES (4565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690418638); INSERT INTO public.notice VALUES (4566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690419239); INSERT INTO public.notice VALUES (4567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690419839); INSERT INTO public.notice VALUES (4568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690420438); INSERT INTO public.notice VALUES (4569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690421037); INSERT INTO public.notice VALUES (4570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690421639); INSERT INTO public.notice VALUES (4571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690422238); INSERT INTO public.notice VALUES (4572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690422838); INSERT INTO public.notice VALUES (4573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690423439); INSERT INTO public.notice VALUES (4574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690424039); INSERT INTO public.notice VALUES (4575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690424638); INSERT INTO public.notice VALUES (4578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690426439); INSERT INTO public.notice VALUES (4581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690428239); INSERT INTO public.notice VALUES (4906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690623238); INSERT INTO public.notice VALUES (4907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690623837); INSERT INTO public.notice VALUES (4908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690624439); INSERT INTO public.notice VALUES (4913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690627438); INSERT INTO public.notice VALUES (4915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690628639); INSERT INTO public.notice VALUES (5054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690712040); INSERT INTO public.notice VALUES (5055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690712640); INSERT INTO public.notice VALUES (5056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690713238); INSERT INTO public.notice VALUES (5057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690713838); INSERT INTO public.notice VALUES (5058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690714439); INSERT INTO public.notice VALUES (4576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690425239); INSERT INTO public.notice VALUES (4577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690425839); INSERT INTO public.notice VALUES (4579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690427038); INSERT INTO public.notice VALUES (4580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690427641); INSERT INTO public.notice VALUES (4582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690428839); INSERT INTO public.notice VALUES (4583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690429438); INSERT INTO public.notice VALUES (4584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690430039); INSERT INTO public.notice VALUES (4585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690430639); INSERT INTO public.notice VALUES (4586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690431238); INSERT INTO public.notice VALUES (4587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690431838); INSERT INTO public.notice VALUES (4588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690432439); INSERT INTO public.notice VALUES (4589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690433038); INSERT INTO public.notice VALUES (4590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690433638); INSERT INTO public.notice VALUES (4591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690434237); INSERT INTO public.notice VALUES (4592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690434839); INSERT INTO public.notice VALUES (4593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690435438); INSERT INTO public.notice VALUES (4916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690629239); INSERT INTO public.notice VALUES (4919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690631039); INSERT INTO public.notice VALUES (4920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690631638); INSERT INTO public.notice VALUES (4921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690632238); INSERT INTO public.notice VALUES (4922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690632839); INSERT INTO public.notice VALUES (4923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690633438); INSERT INTO public.notice VALUES (4926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690635239); INSERT INTO public.notice VALUES (5061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690716238); INSERT INTO public.notice VALUES (5062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690716839); INSERT INTO public.notice VALUES (5067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690719838); INSERT INTO public.notice VALUES (5073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690723439); INSERT INTO public.notice VALUES (5074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690724038); INSERT INTO public.notice VALUES (5077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690725839); INSERT INTO public.notice VALUES (5080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690727639); INSERT INTO public.notice VALUES (4594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690436039); INSERT INTO public.notice VALUES (4595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690436639); INSERT INTO public.notice VALUES (4596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690437239); INSERT INTO public.notice VALUES (4597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690437838); INSERT INTO public.notice VALUES (4598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690438438); INSERT INTO public.notice VALUES (4599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690439039); INSERT INTO public.notice VALUES (4600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690439638); INSERT INTO public.notice VALUES (4601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690440238); INSERT INTO public.notice VALUES (4602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690440839); INSERT INTO public.notice VALUES (4603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690441439); INSERT INTO public.notice VALUES (4604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690442038); INSERT INTO public.notice VALUES (4605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690442638); INSERT INTO public.notice VALUES (4606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690443239); INSERT INTO public.notice VALUES (4607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690443838); INSERT INTO public.notice VALUES (4608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690444438); INSERT INTO public.notice VALUES (4609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690445037); INSERT INTO public.notice VALUES (4610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690445639); INSERT INTO public.notice VALUES (4611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690446238); INSERT INTO public.notice VALUES (4613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690447439); INSERT INTO public.notice VALUES (4614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690448038); INSERT INTO public.notice VALUES (4624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690454039); INSERT INTO public.notice VALUES (4625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690454638); INSERT INTO public.notice VALUES (4626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690455238); INSERT INTO public.notice VALUES (4627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690455840); INSERT INTO public.notice VALUES (4628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690456439); INSERT INTO public.notice VALUES (4629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690457038); INSERT INTO public.notice VALUES (4631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690458239); INSERT INTO public.notice VALUES (4633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690459438); INSERT INTO public.notice VALUES (4634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690460037); INSERT INTO public.notice VALUES (4636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690461238); INSERT INTO public.notice VALUES (4612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690446838); INSERT INTO public.notice VALUES (4615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690448639); INSERT INTO public.notice VALUES (4616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690449237); INSERT INTO public.notice VALUES (4617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690449839); INSERT INTO public.notice VALUES (4618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690450438); INSERT INTO public.notice VALUES (4619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690451038); INSERT INTO public.notice VALUES (4620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690451640); INSERT INTO public.notice VALUES (4621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690452238); INSERT INTO public.notice VALUES (4622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690452838); INSERT INTO public.notice VALUES (4623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690453438); INSERT INTO public.notice VALUES (4630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690457638); INSERT INTO public.notice VALUES (4632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690458839); INSERT INTO public.notice VALUES (4635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690460639); INSERT INTO public.notice VALUES (4638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690462439); INSERT INTO public.notice VALUES (4639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690463039); INSERT INTO public.notice VALUES (4637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690461838); INSERT INTO public.notice VALUES (4640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690463638); INSERT INTO public.notice VALUES (4641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690464237); INSERT INTO public.notice VALUES (4642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690464840); INSERT INTO public.notice VALUES (4643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690465438); INSERT INTO public.notice VALUES (4644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690466038); INSERT INTO public.notice VALUES (4645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690466639); INSERT INTO public.notice VALUES (4917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690629838); INSERT INTO public.notice VALUES (5064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690718038); INSERT INTO public.notice VALUES (5065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690718639); INSERT INTO public.notice VALUES (5066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690719239); INSERT INTO public.notice VALUES (5068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690720438); INSERT INTO public.notice VALUES (5069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690721039); INSERT INTO public.notice VALUES (5070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690721638); INSERT INTO public.notice VALUES (5071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690722238); INSERT INTO public.notice VALUES (5129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690757037); INSERT INTO public.notice VALUES (5130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690757639); INSERT INTO public.notice VALUES (5131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690758238); INSERT INTO public.notice VALUES (7020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691893020); INSERT INTO public.notice VALUES (7021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691893619); INSERT INTO public.notice VALUES (7022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691894219); INSERT INTO public.notice VALUES (7023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691894820); INSERT INTO public.notice VALUES (7024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691895420); INSERT INTO public.notice VALUES (7025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691896019); INSERT INTO public.notice VALUES (7026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691896619); INSERT INTO public.notice VALUES (7027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691897220); INSERT INTO public.notice VALUES (7028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691897820); INSERT INTO public.notice VALUES (7030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691899018); INSERT INTO public.notice VALUES (7035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691902020); INSERT INTO public.notice VALUES (7036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691902619); INSERT INTO public.notice VALUES (5132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690758838); INSERT INTO public.notice VALUES (5133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690759438); INSERT INTO public.notice VALUES (5134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690760039); INSERT INTO public.notice VALUES (5135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690760638); INSERT INTO public.notice VALUES (5136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690761238); INSERT INTO public.notice VALUES (5137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690761839); INSERT INTO public.notice VALUES (5138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690762439); INSERT INTO public.notice VALUES (5139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690763038); INSERT INTO public.notice VALUES (5140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690763637); INSERT INTO public.notice VALUES (5141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690764239); INSERT INTO public.notice VALUES (5142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690764838); INSERT INTO public.notice VALUES (5143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690765857); INSERT INTO public.notice VALUES (5144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690766457); INSERT INTO public.notice VALUES (5145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690767057); INSERT INTO public.notice VALUES (5146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690767658); INSERT INTO public.notice VALUES (5147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690768257); INSERT INTO public.notice VALUES (5148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690768858); INSERT INTO public.notice VALUES (5149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690769458); INSERT INTO public.notice VALUES (5150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690770058); INSERT INTO public.notice VALUES (5151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690770657); INSERT INTO public.notice VALUES (5152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690771258); INSERT INTO public.notice VALUES (5153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690771858); INSERT INTO public.notice VALUES (5154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690772457); INSERT INTO public.notice VALUES (5155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690773057); INSERT INTO public.notice VALUES (5156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690773658); INSERT INTO public.notice VALUES (5157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690774258); INSERT INTO public.notice VALUES (5158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690774857); INSERT INTO public.notice VALUES (5159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690775457); INSERT INTO public.notice VALUES (5160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690776058); INSERT INTO public.notice VALUES (5161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690776657); INSERT INTO public.notice VALUES (5162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690777257); INSERT INTO public.notice VALUES (5163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690777856); INSERT INTO public.notice VALUES (5164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690778458); INSERT INTO public.notice VALUES (5165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690779057); INSERT INTO public.notice VALUES (5166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690779657); INSERT INTO public.notice VALUES (5167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690780258); INSERT INTO public.notice VALUES (5168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690780858); INSERT INTO public.notice VALUES (5169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690781457); INSERT INTO public.notice VALUES (5170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690782056); INSERT INTO public.notice VALUES (5171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690782658); INSERT INTO public.notice VALUES (5172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690783257); INSERT INTO public.notice VALUES (5173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690783857); INSERT INTO public.notice VALUES (5174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690784458); INSERT INTO public.notice VALUES (5175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690785058); INSERT INTO public.notice VALUES (5176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690785657); INSERT INTO public.notice VALUES (5177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690786257); INSERT INTO public.notice VALUES (5178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690786858); INSERT INTO public.notice VALUES (5179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690787458); INSERT INTO public.notice VALUES (5180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690788058); INSERT INTO public.notice VALUES (5181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690788658); INSERT INTO public.notice VALUES (5182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690789258); INSERT INTO public.notice VALUES (5183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690789857); INSERT INTO public.notice VALUES (5184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690790457); INSERT INTO public.notice VALUES (5185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690791058); INSERT INTO public.notice VALUES (5192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690795258); INSERT INTO public.notice VALUES (5193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690795858); INSERT INTO public.notice VALUES (5194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690796457); INSERT INTO public.notice VALUES (5195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690797057); INSERT INTO public.notice VALUES (5196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690797658); INSERT INTO public.notice VALUES (5197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690798258); INSERT INTO public.notice VALUES (5186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690791658); INSERT INTO public.notice VALUES (5187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690792257); INSERT INTO public.notice VALUES (5188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690792858); INSERT INTO public.notice VALUES (5189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690793458); INSERT INTO public.notice VALUES (5190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690794057); INSERT INTO public.notice VALUES (5191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690794657); INSERT INTO public.notice VALUES (5201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690800657); INSERT INTO public.notice VALUES (5202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690801257); INSERT INTO public.notice VALUES (5203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690801858); INSERT INTO public.notice VALUES (5204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690802458); INSERT INTO public.notice VALUES (5215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690809057); INSERT INTO public.notice VALUES (5216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690809658); INSERT INTO public.notice VALUES (5217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690810258); INSERT INTO public.notice VALUES (5218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690810859); INSERT INTO public.notice VALUES (5219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690811457); INSERT INTO public.notice VALUES (5198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690798857); INSERT INTO public.notice VALUES (5199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690799458); INSERT INTO public.notice VALUES (5200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690800058); INSERT INTO public.notice VALUES (5205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690803057); INSERT INTO public.notice VALUES (5206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690803658); INSERT INTO public.notice VALUES (5207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690804258); INSERT INTO public.notice VALUES (5208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690804857); INSERT INTO public.notice VALUES (5209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690805457); INSERT INTO public.notice VALUES (5210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690806059); INSERT INTO public.notice VALUES (5211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690806658); INSERT INTO public.notice VALUES (5212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690807257); INSERT INTO public.notice VALUES (5213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690807857); INSERT INTO public.notice VALUES (5214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690808458); INSERT INTO public.notice VALUES (5239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690823459); INSERT INTO public.notice VALUES (5240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690824058); INSERT INTO public.notice VALUES (5220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690812057); INSERT INTO public.notice VALUES (5221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690812659); INSERT INTO public.notice VALUES (5222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690813258); INSERT INTO public.notice VALUES (5223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690813857); INSERT INTO public.notice VALUES (5224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690814457); INSERT INTO public.notice VALUES (5225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690815058); INSERT INTO public.notice VALUES (5226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690815658); INSERT INTO public.notice VALUES (5227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690816258); INSERT INTO public.notice VALUES (5228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690816859); INSERT INTO public.notice VALUES (5229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690817459); INSERT INTO public.notice VALUES (5230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690818057); INSERT INTO public.notice VALUES (5231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690818658); INSERT INTO public.notice VALUES (5232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690819258); INSERT INTO public.notice VALUES (5233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690819858); INSERT INTO public.notice VALUES (5234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690820457); INSERT INTO public.notice VALUES (5235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690821057); INSERT INTO public.notice VALUES (5236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690821658); INSERT INTO public.notice VALUES (5237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690822257); INSERT INTO public.notice VALUES (5238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690822857); INSERT INTO public.notice VALUES (5241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690824657); INSERT INTO public.notice VALUES (5242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690825257); INSERT INTO public.notice VALUES (5243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690825858); INSERT INTO public.notice VALUES (5244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690826457); INSERT INTO public.notice VALUES (5245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690827057); INSERT INTO public.notice VALUES (5246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690827658); INSERT INTO public.notice VALUES (5247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690828258); INSERT INTO public.notice VALUES (5248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690828857); INSERT INTO public.notice VALUES (5249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690829457); INSERT INTO public.notice VALUES (5250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690830058); INSERT INTO public.notice VALUES (5251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690830657); INSERT INTO public.notice VALUES (5252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690831257); INSERT INTO public.notice VALUES (5253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690831856); INSERT INTO public.notice VALUES (5254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690832458); INSERT INTO public.notice VALUES (5255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690833057); INSERT INTO public.notice VALUES (5256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690833657); INSERT INTO public.notice VALUES (5257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690834258); INSERT INTO public.notice VALUES (5258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690834858); INSERT INTO public.notice VALUES (5259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690835457); INSERT INTO public.notice VALUES (5260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690836056); INSERT INTO public.notice VALUES (5261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690836658); INSERT INTO public.notice VALUES (5272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690843258); INSERT INTO public.notice VALUES (7029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691898419); INSERT INTO public.notice VALUES (7031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691899620); INSERT INTO public.notice VALUES (7032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691900219); INSERT INTO public.notice VALUES (7033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691900819); INSERT INTO public.notice VALUES (5262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690837257); INSERT INTO public.notice VALUES (5263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690837857); INSERT INTO public.notice VALUES (5264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690838458); INSERT INTO public.notice VALUES (5265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690839058); INSERT INTO public.notice VALUES (5266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690839657); INSERT INTO public.notice VALUES (5267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690840257); INSERT INTO public.notice VALUES (5268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690840858); INSERT INTO public.notice VALUES (5269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690841457); INSERT INTO public.notice VALUES (5270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690842057); INSERT INTO public.notice VALUES (5271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690842658); INSERT INTO public.notice VALUES (5273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690843857); INSERT INTO public.notice VALUES (5274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690844457); INSERT INTO public.notice VALUES (5275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690845058); INSERT INTO public.notice VALUES (5276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690845658); INSERT INTO public.notice VALUES (5277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690846257); INSERT INTO public.notice VALUES (5278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690846856); INSERT INTO public.notice VALUES (5279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690847458); INSERT INTO public.notice VALUES (5280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690848057); INSERT INTO public.notice VALUES (5283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690849858); INSERT INTO public.notice VALUES (5284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690850457); INSERT INTO public.notice VALUES (5291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690854657); INSERT INTO public.notice VALUES (5296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690857656); INSERT INTO public.notice VALUES (7034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691901420); INSERT INTO public.notice VALUES (7045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691908020); INSERT INTO public.notice VALUES (7046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691908619); INSERT INTO public.notice VALUES (7047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691909219); INSERT INTO public.notice VALUES (7048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691909818); INSERT INTO public.notice VALUES (7049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691910420); INSERT INTO public.notice VALUES (7050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691911019); INSERT INTO public.notice VALUES (7051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691911619); INSERT INTO public.notice VALUES (5281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690848657); INSERT INTO public.notice VALUES (5282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690849258); INSERT INTO public.notice VALUES (5285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690851057); INSERT INTO public.notice VALUES (5286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690851658); INSERT INTO public.notice VALUES (5287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690852258); INSERT INTO public.notice VALUES (5288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690852857); INSERT INTO public.notice VALUES (5289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690853456); INSERT INTO public.notice VALUES (5290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690854058); INSERT INTO public.notice VALUES (5292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690855257); INSERT INTO public.notice VALUES (5293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690855858); INSERT INTO public.notice VALUES (5294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690856458); INSERT INTO public.notice VALUES (5295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690857057); INSERT INTO public.notice VALUES (5297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690858258); INSERT INTO public.notice VALUES (5298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690858858); INSERT INTO public.notice VALUES (5299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690859457); INSERT INTO public.notice VALUES (5300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690860058); INSERT INTO public.notice VALUES (5301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690860658); INSERT INTO public.notice VALUES (5309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690865457); INSERT INTO public.notice VALUES (7037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691903219); INSERT INTO public.notice VALUES (7038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691903820); INSERT INTO public.notice VALUES (7039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691904420); INSERT INTO public.notice VALUES (7040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691905019); INSERT INTO public.notice VALUES (7041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691905619); INSERT INTO public.notice VALUES (7042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691906220); INSERT INTO public.notice VALUES (7043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691906819); INSERT INTO public.notice VALUES (7044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691907419); INSERT INTO public.notice VALUES (7058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691915819); INSERT INTO public.notice VALUES (7061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691917619); INSERT INTO public.notice VALUES (7062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691918219); INSERT INTO public.notice VALUES (7231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692019619); INSERT INTO public.notice VALUES (5302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690861257); INSERT INTO public.notice VALUES (5303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690861857); INSERT INTO public.notice VALUES (5304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690862458); INSERT INTO public.notice VALUES (5305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690863057); INSERT INTO public.notice VALUES (5306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690863657); INSERT INTO public.notice VALUES (5307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690864258); INSERT INTO public.notice VALUES (5308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690864858); INSERT INTO public.notice VALUES (5310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690866057); INSERT INTO public.notice VALUES (5311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690866658); INSERT INTO public.notice VALUES (5312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690867258); INSERT INTO public.notice VALUES (5313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690867857); INSERT INTO public.notice VALUES (5314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690868456); INSERT INTO public.notice VALUES (5315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690869058); INSERT INTO public.notice VALUES (5316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690869657); INSERT INTO public.notice VALUES (5317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690870257); INSERT INTO public.notice VALUES (5318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690870858); INSERT INTO public.notice VALUES (5319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690871458); INSERT INTO public.notice VALUES (5320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690872057); INSERT INTO public.notice VALUES (5321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690872657); INSERT INTO public.notice VALUES (5322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690873258); INSERT INTO public.notice VALUES (5323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690873857); INSERT INTO public.notice VALUES (5324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690874457); INSERT INTO public.notice VALUES (5325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690875058); INSERT INTO public.notice VALUES (5326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690875658); INSERT INTO public.notice VALUES (5327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690876257); INSERT INTO public.notice VALUES (5328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690876857); INSERT INTO public.notice VALUES (5329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690877458); INSERT INTO public.notice VALUES (5330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690878058); INSERT INTO public.notice VALUES (5331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690878657); INSERT INTO public.notice VALUES (5332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690879257); INSERT INTO public.notice VALUES (5333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690879858); INSERT INTO public.notice VALUES (5334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690880457); INSERT INTO public.notice VALUES (5335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690881057); INSERT INTO public.notice VALUES (5336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690881658); INSERT INTO public.notice VALUES (7052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691912220); INSERT INTO public.notice VALUES (7053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691912820); INSERT INTO public.notice VALUES (7054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691913420); INSERT INTO public.notice VALUES (7055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691914019); INSERT INTO public.notice VALUES (7056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691914620); INSERT INTO public.notice VALUES (7057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691915219); INSERT INTO public.notice VALUES (7059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691916420); INSERT INTO public.notice VALUES (7060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691917020); INSERT INTO public.notice VALUES (7234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692021422); INSERT INTO public.notice VALUES (7235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692022019); INSERT INTO public.notice VALUES (7236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692022621); INSERT INTO public.notice VALUES (5337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690882258); INSERT INTO public.notice VALUES (5338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690882857); INSERT INTO public.notice VALUES (5339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690883457); INSERT INTO public.notice VALUES (5340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690884058); INSERT INTO public.notice VALUES (5341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690884657); INSERT INTO public.notice VALUES (5342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690885257); INSERT INTO public.notice VALUES (5343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690885858); INSERT INTO public.notice VALUES (5344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690886458); INSERT INTO public.notice VALUES (5345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690887057); INSERT INTO public.notice VALUES (5346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690887657); INSERT INTO public.notice VALUES (5347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690888258); INSERT INTO public.notice VALUES (5348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690888858); INSERT INTO public.notice VALUES (5349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690889457); INSERT INTO public.notice VALUES (5350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690890056); INSERT INTO public.notice VALUES (5351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690890658); INSERT INTO public.notice VALUES (5352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690891257); INSERT INTO public.notice VALUES (5353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690891857); INSERT INTO public.notice VALUES (5354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690892458); INSERT INTO public.notice VALUES (5355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690893058); INSERT INTO public.notice VALUES (5356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690893657); INSERT INTO public.notice VALUES (5357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690894257); INSERT INTO public.notice VALUES (5358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690894858); INSERT INTO public.notice VALUES (5359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690895458); INSERT INTO public.notice VALUES (5360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690896057); INSERT INTO public.notice VALUES (5361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690896656); INSERT INTO public.notice VALUES (5381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690908657); INSERT INTO public.notice VALUES (5389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690913457); INSERT INTO public.notice VALUES (5390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690914058); INSERT INTO public.notice VALUES (5391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690914658); INSERT INTO public.notice VALUES (5392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690915257); INSERT INTO public.notice VALUES (5362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690897258); INSERT INTO public.notice VALUES (5363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690897857); INSERT INTO public.notice VALUES (5364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690898457); INSERT INTO public.notice VALUES (5365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690899058); INSERT INTO public.notice VALUES (5366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690899658); INSERT INTO public.notice VALUES (5367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690900257); INSERT INTO public.notice VALUES (5368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690900857); INSERT INTO public.notice VALUES (5369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690901458); INSERT INTO public.notice VALUES (5370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690902057); INSERT INTO public.notice VALUES (5371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690902658); INSERT INTO public.notice VALUES (5372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690903258); INSERT INTO public.notice VALUES (5373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690903858); INSERT INTO public.notice VALUES (5374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690904457); INSERT INTO public.notice VALUES (5375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690905057); INSERT INTO public.notice VALUES (5376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690905658); INSERT INTO public.notice VALUES (5377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690906258); INSERT INTO public.notice VALUES (5378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690906857); INSERT INTO public.notice VALUES (5379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690907458); INSERT INTO public.notice VALUES (5380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690908058); INSERT INTO public.notice VALUES (5382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690909257); INSERT INTO public.notice VALUES (5383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690909858); INSERT INTO public.notice VALUES (5384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690910458); INSERT INTO public.notice VALUES (5385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690911057); INSERT INTO public.notice VALUES (5386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690911657); INSERT INTO public.notice VALUES (5387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690912258); INSERT INTO public.notice VALUES (5388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690912857); INSERT INTO public.notice VALUES (5415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690929058); INSERT INTO public.notice VALUES (5427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690936258); INSERT INTO public.notice VALUES (5428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690936857); INSERT INTO public.notice VALUES (5429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690937457); INSERT INTO public.notice VALUES (5393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690915857); INSERT INTO public.notice VALUES (5394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690916458); INSERT INTO public.notice VALUES (5395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690917057); INSERT INTO public.notice VALUES (5396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690917657); INSERT INTO public.notice VALUES (5397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690918256); INSERT INTO public.notice VALUES (5398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690918858); INSERT INTO public.notice VALUES (5399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690919457); INSERT INTO public.notice VALUES (5400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690920057); INSERT INTO public.notice VALUES (5401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690920658); INSERT INTO public.notice VALUES (5402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690921258); INSERT INTO public.notice VALUES (5403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690921857); INSERT INTO public.notice VALUES (5404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690922457); INSERT INTO public.notice VALUES (5405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690923058); INSERT INTO public.notice VALUES (5406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690923657); INSERT INTO public.notice VALUES (5407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690924257); INSERT INTO public.notice VALUES (5408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690924858); INSERT INTO public.notice VALUES (5409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690925458); INSERT INTO public.notice VALUES (5410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690926057); INSERT INTO public.notice VALUES (5411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690926660); INSERT INTO public.notice VALUES (5412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690927258); INSERT INTO public.notice VALUES (5413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690927858); INSERT INTO public.notice VALUES (5414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690928457); INSERT INTO public.notice VALUES (5416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690929658); INSERT INTO public.notice VALUES (5417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690930257); INSERT INTO public.notice VALUES (5418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690930857); INSERT INTO public.notice VALUES (5419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690931458); INSERT INTO public.notice VALUES (5420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690932058); INSERT INTO public.notice VALUES (5421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690932657); INSERT INTO public.notice VALUES (5422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690933257); INSERT INTO public.notice VALUES (5423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690933858); INSERT INTO public.notice VALUES (5424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690934457); INSERT INTO public.notice VALUES (5425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690935057); INSERT INTO public.notice VALUES (5426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690935658); INSERT INTO public.notice VALUES (5433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690939859); INSERT INTO public.notice VALUES (7063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691918820); INSERT INTO public.notice VALUES (7067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691921220); INSERT INTO public.notice VALUES (7068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691921819); INSERT INTO public.notice VALUES (7069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691922419); INSERT INTO public.notice VALUES (7071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691923620); INSERT INTO public.notice VALUES (7072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691924219); INSERT INTO public.notice VALUES (7075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691926019); INSERT INTO public.notice VALUES (7076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691926619); INSERT INTO public.notice VALUES (7077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691927220); INSERT INTO public.notice VALUES (7078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691927820); INSERT INTO public.notice VALUES (7079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691928419); INSERT INTO public.notice VALUES (5430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690938058); INSERT INTO public.notice VALUES (5431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690938657); INSERT INTO public.notice VALUES (5432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690939257); INSERT INTO public.notice VALUES (5434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690940458); INSERT INTO public.notice VALUES (5435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690941057); INSERT INTO public.notice VALUES (5436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690941657); INSERT INTO public.notice VALUES (5437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690942258); INSERT INTO public.notice VALUES (5438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690942858); INSERT INTO public.notice VALUES (5439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690943457); INSERT INTO public.notice VALUES (5440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690944057); INSERT INTO public.notice VALUES (5441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690944658); INSERT INTO public.notice VALUES (5442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690945257); INSERT INTO public.notice VALUES (5443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690945858); INSERT INTO public.notice VALUES (5444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690946458); INSERT INTO public.notice VALUES (5445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690947058); INSERT INTO public.notice VALUES (5446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690947657); INSERT INTO public.notice VALUES (5447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690948257); INSERT INTO public.notice VALUES (5448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690948858); INSERT INTO public.notice VALUES (5449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690949458); INSERT INTO public.notice VALUES (5450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690950057); INSERT INTO public.notice VALUES (5451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690950656); INSERT INTO public.notice VALUES (5452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690951258); INSERT INTO public.notice VALUES (5453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690951857); INSERT INTO public.notice VALUES (5454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690952457); INSERT INTO public.notice VALUES (5455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690953058); INSERT INTO public.notice VALUES (5456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690953658); INSERT INTO public.notice VALUES (5460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690956058); INSERT INTO public.notice VALUES (5461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690956657); INSERT INTO public.notice VALUES (7064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691919419); INSERT INTO public.notice VALUES (7237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692023220); INSERT INTO public.notice VALUES (5457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690954257); INSERT INTO public.notice VALUES (5458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690954857); INSERT INTO public.notice VALUES (5459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690955458); INSERT INTO public.notice VALUES (5462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690957256); INSERT INTO public.notice VALUES (5463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690957858); INSERT INTO public.notice VALUES (5464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690958457); INSERT INTO public.notice VALUES (5465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690959057); INSERT INTO public.notice VALUES (5466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690959658); INSERT INTO public.notice VALUES (5467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690960258); INSERT INTO public.notice VALUES (5468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690960857); INSERT INTO public.notice VALUES (5469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690961456); INSERT INTO public.notice VALUES (5470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690962058); INSERT INTO public.notice VALUES (5471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690962658); INSERT INTO public.notice VALUES (5472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690963257); INSERT INTO public.notice VALUES (5473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690963858); INSERT INTO public.notice VALUES (5474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690964459); INSERT INTO public.notice VALUES (5475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690965057); INSERT INTO public.notice VALUES (5476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690965657); INSERT INTO public.notice VALUES (5477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690966258); INSERT INTO public.notice VALUES (5478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690966857); INSERT INTO public.notice VALUES (5479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690967457); INSERT INTO public.notice VALUES (5480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690968056); INSERT INTO public.notice VALUES (5481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690968658); INSERT INTO public.notice VALUES (5482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690969257); INSERT INTO public.notice VALUES (5483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690969857); INSERT INTO public.notice VALUES (5484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690970458); INSERT INTO public.notice VALUES (5485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690971058); INSERT INTO public.notice VALUES (5486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690971657); INSERT INTO public.notice VALUES (5487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690972256); INSERT INTO public.notice VALUES (5488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690972858); INSERT INTO public.notice VALUES (5489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690973457); INSERT INTO public.notice VALUES (5490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690974057); INSERT INTO public.notice VALUES (5502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690981258); INSERT INTO public.notice VALUES (5503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690981858); INSERT INTO public.notice VALUES (5504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690982457); INSERT INTO public.notice VALUES (5505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690983056); INSERT INTO public.notice VALUES (5506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690983658); INSERT INTO public.notice VALUES (5507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690984257); INSERT INTO public.notice VALUES (5508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690984857); INSERT INTO public.notice VALUES (5509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690985458); INSERT INTO public.notice VALUES (5510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690986058); INSERT INTO public.notice VALUES (5511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690986657); INSERT INTO public.notice VALUES (5512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690987257); INSERT INTO public.notice VALUES (5513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690987858); INSERT INTO public.notice VALUES (5514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690988457); INSERT INTO public.notice VALUES (5491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690974658); INSERT INTO public.notice VALUES (5492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690975258); INSERT INTO public.notice VALUES (5493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690975857); INSERT INTO public.notice VALUES (5494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690976457); INSERT INTO public.notice VALUES (5495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690977058); INSERT INTO public.notice VALUES (5496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690977657); INSERT INTO public.notice VALUES (5497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690978257); INSERT INTO public.notice VALUES (5498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690978856); INSERT INTO public.notice VALUES (5499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690979458); INSERT INTO public.notice VALUES (5500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690980057); INSERT INTO public.notice VALUES (5501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690980657); INSERT INTO public.notice VALUES (5516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690989658); INSERT INTO public.notice VALUES (7065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691920019); INSERT INTO public.notice VALUES (7066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691920619); INSERT INTO public.notice VALUES (7070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691923020); INSERT INTO public.notice VALUES (5515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690989058); INSERT INTO public.notice VALUES (5517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690990258); INSERT INTO public.notice VALUES (5518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690990857); INSERT INTO public.notice VALUES (5519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690991457); INSERT INTO public.notice VALUES (5520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690992058); INSERT INTO public.notice VALUES (5521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690992658); INSERT INTO public.notice VALUES (5522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690993258); INSERT INTO public.notice VALUES (5523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690993857); INSERT INTO public.notice VALUES (5524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690994458); INSERT INTO public.notice VALUES (5525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690995058); INSERT INTO public.notice VALUES (5526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690995657); INSERT INTO public.notice VALUES (5527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690996258); INSERT INTO public.notice VALUES (5528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690996858); INSERT INTO public.notice VALUES (5529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690997457); INSERT INTO public.notice VALUES (5530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690998057); INSERT INTO public.notice VALUES (5531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690998658); INSERT INTO public.notice VALUES (5537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691002257); INSERT INTO public.notice VALUES (5538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691002858); INSERT INTO public.notice VALUES (5539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691003458); INSERT INTO public.notice VALUES (5540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691004057); INSERT INTO public.notice VALUES (5541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691004657); INSERT INTO public.notice VALUES (5542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691005258); INSERT INTO public.notice VALUES (5543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691005857); INSERT INTO public.notice VALUES (5544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691006457); INSERT INTO public.notice VALUES (5545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691007058); INSERT INTO public.notice VALUES (5546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691007658); INSERT INTO public.notice VALUES (5547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691008258); INSERT INTO public.notice VALUES (5548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691008857); INSERT INTO public.notice VALUES (5549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691009458); INSERT INTO public.notice VALUES (5559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691015457); INSERT INTO public.notice VALUES (5532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690999258); INSERT INTO public.notice VALUES (5533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1690999857); INSERT INTO public.notice VALUES (5534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691000456); INSERT INTO public.notice VALUES (5535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691001058); INSERT INTO public.notice VALUES (5536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691001657); INSERT INTO public.notice VALUES (5550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691010058); INSERT INTO public.notice VALUES (5551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691010657); INSERT INTO public.notice VALUES (5552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691011257); INSERT INTO public.notice VALUES (5553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691011858); INSERT INTO public.notice VALUES (5554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691012457); INSERT INTO public.notice VALUES (5555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691013057); INSERT INTO public.notice VALUES (5556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691013658); INSERT INTO public.notice VALUES (5557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691014258); INSERT INTO public.notice VALUES (5558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691014857); INSERT INTO public.notice VALUES (5560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691016058); INSERT INTO public.notice VALUES (5561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691016658); INSERT INTO public.notice VALUES (5562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691017257); INSERT INTO public.notice VALUES (5563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691017856); INSERT INTO public.notice VALUES (5564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691018458); INSERT INTO public.notice VALUES (5565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691019057); INSERT INTO public.notice VALUES (5566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691019657); INSERT INTO public.notice VALUES (5567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691020258); INSERT INTO public.notice VALUES (5568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691020858); INSERT INTO public.notice VALUES (5569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691021457); INSERT INTO public.notice VALUES (5570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691022057); INSERT INTO public.notice VALUES (5577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691026257); INSERT INTO public.notice VALUES (5578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691026858); INSERT INTO public.notice VALUES (5579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691027457); INSERT INTO public.notice VALUES (5580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691028057); INSERT INTO public.notice VALUES (5581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691028656); INSERT INTO public.notice VALUES (5571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691022658); INSERT INTO public.notice VALUES (5572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691023257); INSERT INTO public.notice VALUES (5573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691023857); INSERT INTO public.notice VALUES (5574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691024458); INSERT INTO public.notice VALUES (5575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691025058); INSERT INTO public.notice VALUES (5576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691025657); INSERT INTO public.notice VALUES (5584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691030457); INSERT INTO public.notice VALUES (5585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691031058); INSERT INTO public.notice VALUES (5588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691032857); INSERT INTO public.notice VALUES (5589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691033458); INSERT INTO public.notice VALUES (7073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691924819); INSERT INTO public.notice VALUES (7238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692023820); INSERT INTO public.notice VALUES (7239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692024419); INSERT INTO public.notice VALUES (7240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692025019); INSERT INTO public.notice VALUES (7241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692025620); INSERT INTO public.notice VALUES (5582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691029258); INSERT INTO public.notice VALUES (5583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691029857); INSERT INTO public.notice VALUES (5586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691031658); INSERT INTO public.notice VALUES (5587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691032257); INSERT INTO public.notice VALUES (5590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691034057); INSERT INTO public.notice VALUES (5591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691034657); INSERT INTO public.notice VALUES (5592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691035258); INSERT INTO public.notice VALUES (5593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691035858); INSERT INTO public.notice VALUES (5594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691036457); INSERT INTO public.notice VALUES (5595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691037057); INSERT INTO public.notice VALUES (5596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691037658); INSERT INTO public.notice VALUES (5597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691038258); INSERT INTO public.notice VALUES (5598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691038857); INSERT INTO public.notice VALUES (5599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691039458); INSERT INTO public.notice VALUES (5600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691040058); INSERT INTO public.notice VALUES (5601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691040657); INSERT INTO public.notice VALUES (5609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691045457); INSERT INTO public.notice VALUES (5610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691046058); INSERT INTO public.notice VALUES (5611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691046658); INSERT INTO public.notice VALUES (5612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691047257); INSERT INTO public.notice VALUES (5613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691047857); INSERT INTO public.notice VALUES (5614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691048458); INSERT INTO public.notice VALUES (5615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691049057); INSERT INTO public.notice VALUES (5616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691049657); INSERT INTO public.notice VALUES (5624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691054456); INSERT INTO public.notice VALUES (5625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691055058); INSERT INTO public.notice VALUES (5626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691055657); INSERT INTO public.notice VALUES (5627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691056257); INSERT INTO public.notice VALUES (5628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691056858); INSERT INTO public.notice VALUES (5629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691057458); INSERT INTO public.notice VALUES (5602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691041257); INSERT INTO public.notice VALUES (5603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691041858); INSERT INTO public.notice VALUES (5604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691042458); INSERT INTO public.notice VALUES (5605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691043057); INSERT INTO public.notice VALUES (5606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691043656); INSERT INTO public.notice VALUES (5607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691044258); INSERT INTO public.notice VALUES (5608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691044857); INSERT INTO public.notice VALUES (5617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691050258); INSERT INTO public.notice VALUES (5618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691050858); INSERT INTO public.notice VALUES (5619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691051457); INSERT INTO public.notice VALUES (5620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691052057); INSERT INTO public.notice VALUES (5621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691052658); INSERT INTO public.notice VALUES (5622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691053257); INSERT INTO public.notice VALUES (5623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691053857); INSERT INTO public.notice VALUES (5634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691060457); INSERT INTO public.notice VALUES (5630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691058057); INSERT INTO public.notice VALUES (5631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691058657); INSERT INTO public.notice VALUES (5632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691059258); INSERT INTO public.notice VALUES (5633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691059857); INSERT INTO public.notice VALUES (5652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691071257); INSERT INTO public.notice VALUES (5655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691073057); INSERT INTO public.notice VALUES (5656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691073657); INSERT INTO public.notice VALUES (5657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691074258); INSERT INTO public.notice VALUES (5658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691074857); INSERT INTO public.notice VALUES (5659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691075458); INSERT INTO public.notice VALUES (5660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691076058); INSERT INTO public.notice VALUES (5661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691076658); INSERT INTO public.notice VALUES (5662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691077257); INSERT INTO public.notice VALUES (5663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691077857); INSERT INTO public.notice VALUES (5664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691078458); INSERT INTO public.notice VALUES (5635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691061058); INSERT INTO public.notice VALUES (5636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691061658); INSERT INTO public.notice VALUES (5637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691062257); INSERT INTO public.notice VALUES (5638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691062857); INSERT INTO public.notice VALUES (5639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691063458); INSERT INTO public.notice VALUES (5640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691064058); INSERT INTO public.notice VALUES (5641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691064657); INSERT INTO public.notice VALUES (5642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691065256); INSERT INTO public.notice VALUES (5643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691065858); INSERT INTO public.notice VALUES (5644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691066457); INSERT INTO public.notice VALUES (5645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691067057); INSERT INTO public.notice VALUES (5646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691067658); INSERT INTO public.notice VALUES (5647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691068258); INSERT INTO public.notice VALUES (5648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691068858); INSERT INTO public.notice VALUES (5649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691069457); INSERT INTO public.notice VALUES (5650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691070058); INSERT INTO public.notice VALUES (5651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691070657); INSERT INTO public.notice VALUES (5653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691071858); INSERT INTO public.notice VALUES (5654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691072458); INSERT INTO public.notice VALUES (7074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691925420); INSERT INTO public.notice VALUES (7087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691933219); INSERT INTO public.notice VALUES (7088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691933820); INSERT INTO public.notice VALUES (7089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691934420); INSERT INTO public.notice VALUES (7090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691935019); INSERT INTO public.notice VALUES (7091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691935618); INSERT INTO public.notice VALUES (7092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691936220); INSERT INTO public.notice VALUES (7093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691936819); INSERT INTO public.notice VALUES (7094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691937419); INSERT INTO public.notice VALUES (7095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691938020); INSERT INTO public.notice VALUES (7096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691938620); INSERT INTO public.notice VALUES (5665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691079057); INSERT INTO public.notice VALUES (5666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691079657); INSERT INTO public.notice VALUES (5667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691080256); INSERT INTO public.notice VALUES (5668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691080858); INSERT INTO public.notice VALUES (5669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691081457); INSERT INTO public.notice VALUES (5670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691082057); INSERT INTO public.notice VALUES (5671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691082659); INSERT INTO public.notice VALUES (5672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691083258); INSERT INTO public.notice VALUES (5673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691083857); INSERT INTO public.notice VALUES (5674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691084458); INSERT INTO public.notice VALUES (5675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691085058); INSERT INTO public.notice VALUES (5676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691085657); INSERT INTO public.notice VALUES (5677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691086257); INSERT INTO public.notice VALUES (5678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691086858); INSERT INTO public.notice VALUES (5679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691087458); INSERT INTO public.notice VALUES (5680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691088057); INSERT INTO public.notice VALUES (5681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691088657); INSERT INTO public.notice VALUES (5684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691090457); INSERT INTO public.notice VALUES (5685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691091056); INSERT INTO public.notice VALUES (5686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691091658); INSERT INTO public.notice VALUES (5687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691092257); INSERT INTO public.notice VALUES (5688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691092857); INSERT INTO public.notice VALUES (5689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691093458); INSERT INTO public.notice VALUES (5690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691094058); INSERT INTO public.notice VALUES (5691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691094657); INSERT INTO public.notice VALUES (5692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691095256); INSERT INTO public.notice VALUES (5693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691095858); INSERT INTO public.notice VALUES (5694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691096457); INSERT INTO public.notice VALUES (5695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691097057); INSERT INTO public.notice VALUES (5696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691097659); INSERT INTO public.notice VALUES (5682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691089259); INSERT INTO public.notice VALUES (5683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691089858); INSERT INTO public.notice VALUES (5722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691113258); INSERT INTO public.notice VALUES (5723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691113857); INSERT INTO public.notice VALUES (5724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691114457); INSERT INTO public.notice VALUES (5725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691115058); INSERT INTO public.notice VALUES (5726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691115658); INSERT INTO public.notice VALUES (5727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691116258); INSERT INTO public.notice VALUES (5728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691116857); INSERT INTO public.notice VALUES (5729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691117458); INSERT INTO public.notice VALUES (5730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691118058); INSERT INTO public.notice VALUES (5731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691118657); INSERT INTO public.notice VALUES (5732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691119258); INSERT INTO public.notice VALUES (5733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691119858); INSERT INTO public.notice VALUES (5734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691120457); INSERT INTO public.notice VALUES (5697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691098258); INSERT INTO public.notice VALUES (5698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691098857); INSERT INTO public.notice VALUES (5699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691099457); INSERT INTO public.notice VALUES (5700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691100058); INSERT INTO public.notice VALUES (5701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691100658); INSERT INTO public.notice VALUES (5702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691101257); INSERT INTO public.notice VALUES (5703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691101856); INSERT INTO public.notice VALUES (5704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691102458); INSERT INTO public.notice VALUES (5705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691103057); INSERT INTO public.notice VALUES (5706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691103657); INSERT INTO public.notice VALUES (5707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691104258); INSERT INTO public.notice VALUES (5708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691104858); INSERT INTO public.notice VALUES (5709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691105457); INSERT INTO public.notice VALUES (5710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691106057); INSERT INTO public.notice VALUES (5711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691106658); INSERT INTO public.notice VALUES (5712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691107257); INSERT INTO public.notice VALUES (5713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691107857); INSERT INTO public.notice VALUES (5714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691108459); INSERT INTO public.notice VALUES (5715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691109058); INSERT INTO public.notice VALUES (5716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691109657); INSERT INTO public.notice VALUES (5717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691110257); INSERT INTO public.notice VALUES (5718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691110858); INSERT INTO public.notice VALUES (5719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691111457); INSERT INTO public.notice VALUES (5720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691112057); INSERT INTO public.notice VALUES (5721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691112658); INSERT INTO public.notice VALUES (5738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691122857); INSERT INTO public.notice VALUES (5741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691124657); INSERT INTO public.notice VALUES (7080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691929019); INSERT INTO public.notice VALUES (7081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691929620); INSERT INTO public.notice VALUES (7242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692026219); INSERT INTO public.notice VALUES (5735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691121057); INSERT INTO public.notice VALUES (5736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691121658); INSERT INTO public.notice VALUES (5737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691122257); INSERT INTO public.notice VALUES (5739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691123456); INSERT INTO public.notice VALUES (5740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691124058); INSERT INTO public.notice VALUES (5742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691125257); INSERT INTO public.notice VALUES (5743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691125858); INSERT INTO public.notice VALUES (5744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691126458); INSERT INTO public.notice VALUES (5745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691127057); INSERT INTO public.notice VALUES (5746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691127657); INSERT INTO public.notice VALUES (5747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691128258); INSERT INTO public.notice VALUES (5748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691128857); INSERT INTO public.notice VALUES (5749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691129457); INSERT INTO public.notice VALUES (5750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691130058); INSERT INTO public.notice VALUES (5751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691130658); INSERT INTO public.notice VALUES (5752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691131257); INSERT INTO public.notice VALUES (5753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691131857); INSERT INTO public.notice VALUES (5754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691132458); INSERT INTO public.notice VALUES (5755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691133057); INSERT INTO public.notice VALUES (5765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691139058); INSERT INTO public.notice VALUES (5766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691139657); INSERT INTO public.notice VALUES (5767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691140257); INSERT INTO public.notice VALUES (5772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691143258); INSERT INTO public.notice VALUES (5773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691143858); INSERT INTO public.notice VALUES (5774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691144457); INSERT INTO public.notice VALUES (5775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691145057); INSERT INTO public.notice VALUES (5776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691145658); INSERT INTO public.notice VALUES (5777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691146257); INSERT INTO public.notice VALUES (5778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691146857); INSERT INTO public.notice VALUES (5779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691147458); INSERT INTO public.notice VALUES (5756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691133657); INSERT INTO public.notice VALUES (5757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691134256); INSERT INTO public.notice VALUES (5758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691134858); INSERT INTO public.notice VALUES (5759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691135457); INSERT INTO public.notice VALUES (5760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691136057); INSERT INTO public.notice VALUES (5761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691136659); INSERT INTO public.notice VALUES (5762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691137257); INSERT INTO public.notice VALUES (5763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691137857); INSERT INTO public.notice VALUES (5764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691138457); INSERT INTO public.notice VALUES (5768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691140858); INSERT INTO public.notice VALUES (5769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691141458); INSERT INTO public.notice VALUES (5770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691142057); INSERT INTO public.notice VALUES (5771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691142657); INSERT INTO public.notice VALUES (5803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691161858); INSERT INTO public.notice VALUES (5804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691162458); INSERT INTO public.notice VALUES (5780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691148058); INSERT INTO public.notice VALUES (5781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691148657); INSERT INTO public.notice VALUES (5782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691149256); INSERT INTO public.notice VALUES (5783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691149858); INSERT INTO public.notice VALUES (5784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691150457); INSERT INTO public.notice VALUES (5785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691151057); INSERT INTO public.notice VALUES (5786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691151658); INSERT INTO public.notice VALUES (5787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691152258); INSERT INTO public.notice VALUES (5788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691152857); INSERT INTO public.notice VALUES (5789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691153457); INSERT INTO public.notice VALUES (5790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691154058); INSERT INTO public.notice VALUES (5791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691154658); INSERT INTO public.notice VALUES (5792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691155257); INSERT INTO public.notice VALUES (5793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691155857); INSERT INTO public.notice VALUES (5794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691156458); INSERT INTO public.notice VALUES (5795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691157057); INSERT INTO public.notice VALUES (5796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691157657); INSERT INTO public.notice VALUES (5797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691158258); INSERT INTO public.notice VALUES (5798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691158858); INSERT INTO public.notice VALUES (5799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691159457); INSERT INTO public.notice VALUES (5800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691160057); INSERT INTO public.notice VALUES (5801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691160658); INSERT INTO public.notice VALUES (5802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691161258); INSERT INTO public.notice VALUES (5820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691172057); INSERT INTO public.notice VALUES (5821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691172657); INSERT INTO public.notice VALUES (5823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691173858); INSERT INTO public.notice VALUES (5824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691174457); INSERT INTO public.notice VALUES (5825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691175057); INSERT INTO public.notice VALUES (7082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691930219); INSERT INTO public.notice VALUES (7083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691930819); INSERT INTO public.notice VALUES (5805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691163058); INSERT INTO public.notice VALUES (5806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691163657); INSERT INTO public.notice VALUES (5807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691164257); INSERT INTO public.notice VALUES (5808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691164858); INSERT INTO public.notice VALUES (5809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691165458); INSERT INTO public.notice VALUES (5810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691166057); INSERT INTO public.notice VALUES (5811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691166656); INSERT INTO public.notice VALUES (5812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691167258); INSERT INTO public.notice VALUES (5813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691167857); INSERT INTO public.notice VALUES (5814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691168457); INSERT INTO public.notice VALUES (5815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691169058); INSERT INTO public.notice VALUES (5816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691169658); INSERT INTO public.notice VALUES (5817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691170257); INSERT INTO public.notice VALUES (5818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691170857); INSERT INTO public.notice VALUES (5819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691171458); INSERT INTO public.notice VALUES (5822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691173259); INSERT INTO public.notice VALUES (5826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691175658); INSERT INTO public.notice VALUES (5827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691176258); INSERT INTO public.notice VALUES (5828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691176857); INSERT INTO public.notice VALUES (5829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691177456); INSERT INTO public.notice VALUES (5830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691178058); INSERT INTO public.notice VALUES (5831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691178657); INSERT INTO public.notice VALUES (5832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691179257); INSERT INTO public.notice VALUES (5833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691179858); INSERT INTO public.notice VALUES (5834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691180458); INSERT INTO public.notice VALUES (5835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691181057); INSERT INTO public.notice VALUES (5836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691181656); INSERT INTO public.notice VALUES (5837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691182258); INSERT INTO public.notice VALUES (5838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691182857); INSERT INTO public.notice VALUES (5839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691183457); INSERT INTO public.notice VALUES (5840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691184058); INSERT INTO public.notice VALUES (5841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691184658); INSERT INTO public.notice VALUES (5842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691185257); INSERT INTO public.notice VALUES (5843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691185857); INSERT INTO public.notice VALUES (5844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691186458); INSERT INTO public.notice VALUES (5845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691187057); INSERT INTO public.notice VALUES (5846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691187657); INSERT INTO public.notice VALUES (5847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691188258); INSERT INTO public.notice VALUES (5848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691188858); INSERT INTO public.notice VALUES (5849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691189457); INSERT INTO public.notice VALUES (5858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691194858); INSERT INTO public.notice VALUES (5860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691196057); INSERT INTO public.notice VALUES (5861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691196656); INSERT INTO public.notice VALUES (7084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691931418); INSERT INTO public.notice VALUES (7085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691932020); INSERT INTO public.notice VALUES (5850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691190056); INSERT INTO public.notice VALUES (5851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691190658); INSERT INTO public.notice VALUES (5852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691191258); INSERT INTO public.notice VALUES (5853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691191857); INSERT INTO public.notice VALUES (5854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691192459); INSERT INTO public.notice VALUES (5855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691193058); INSERT INTO public.notice VALUES (5856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691193657); INSERT INTO public.notice VALUES (5857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691194257); INSERT INTO public.notice VALUES (5859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691195458); INSERT INTO public.notice VALUES (5862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691197258); INSERT INTO public.notice VALUES (5863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691197857); INSERT INTO public.notice VALUES (5864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691198457); INSERT INTO public.notice VALUES (5865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691199058); INSERT INTO public.notice VALUES (5866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691199658); INSERT INTO public.notice VALUES (5867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691200257); INSERT INTO public.notice VALUES (5868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691200856); INSERT INTO public.notice VALUES (5869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691201458); INSERT INTO public.notice VALUES (5870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691202058); INSERT INTO public.notice VALUES (5871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691202657); INSERT INTO public.notice VALUES (5872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691203256); INSERT INTO public.notice VALUES (5873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691203858); INSERT INTO public.notice VALUES (5874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691204457); INSERT INTO public.notice VALUES (5875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691205057); INSERT INTO public.notice VALUES (5876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691205658); INSERT INTO public.notice VALUES (5884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691210457); INSERT INTO public.notice VALUES (5885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691211057); INSERT INTO public.notice VALUES (5886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691211657); INSERT INTO public.notice VALUES (5887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691212258); INSERT INTO public.notice VALUES (5889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691213457); INSERT INTO public.notice VALUES (5890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691214058); INSERT INTO public.notice VALUES (5877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691206257); INSERT INTO public.notice VALUES (5878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691206857); INSERT INTO public.notice VALUES (5879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691207456); INSERT INTO public.notice VALUES (5880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691208058); INSERT INTO public.notice VALUES (5881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691208657); INSERT INTO public.notice VALUES (5882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691209257); INSERT INTO public.notice VALUES (5883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691209858); INSERT INTO public.notice VALUES (5888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691212858); INSERT INTO public.notice VALUES (5896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691217657); INSERT INTO public.notice VALUES (7086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691932619); INSERT INTO public.notice VALUES (7101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691941619); INSERT INTO public.notice VALUES (7102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691942220); INSERT INTO public.notice VALUES (7103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691942820); INSERT INTO public.notice VALUES (7110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691947020); INSERT INTO public.notice VALUES (7125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691956020); INSERT INTO public.notice VALUES (5891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691214658); INSERT INTO public.notice VALUES (5892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691215257); INSERT INTO public.notice VALUES (5893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691215857); INSERT INTO public.notice VALUES (5894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691216458); INSERT INTO public.notice VALUES (5895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691217057); INSERT INTO public.notice VALUES (5897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691218258); INSERT INTO public.notice VALUES (5898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691218858); INSERT INTO public.notice VALUES (5899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691219457); INSERT INTO public.notice VALUES (5900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691220057); INSERT INTO public.notice VALUES (5901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691220658); INSERT INTO public.notice VALUES (5902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691221257); INSERT INTO public.notice VALUES (5903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691221857); INSERT INTO public.notice VALUES (5904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691222456); INSERT INTO public.notice VALUES (5905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691223058); INSERT INTO public.notice VALUES (5906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691223657); INSERT INTO public.notice VALUES (5907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691224257); INSERT INTO public.notice VALUES (5908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691224858); INSERT INTO public.notice VALUES (5909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691225458); INSERT INTO public.notice VALUES (5910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691226057); INSERT INTO public.notice VALUES (5911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691226657); INSERT INTO public.notice VALUES (5912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691227259); INSERT INTO public.notice VALUES (5913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691227857); INSERT INTO public.notice VALUES (5914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691228457); INSERT INTO public.notice VALUES (5915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691229056); INSERT INTO public.notice VALUES (5916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691229658); INSERT INTO public.notice VALUES (5917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691230257); INSERT INTO public.notice VALUES (5918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691230857); INSERT INTO public.notice VALUES (5919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691231458); INSERT INTO public.notice VALUES (5920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691232058); INSERT INTO public.notice VALUES (5921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691232657); INSERT INTO public.notice VALUES (5922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691233257); INSERT INTO public.notice VALUES (5923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691233858); INSERT INTO public.notice VALUES (5924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691234457); INSERT INTO public.notice VALUES (5925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691235057); INSERT INTO public.notice VALUES (5940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691244057); INSERT INTO public.notice VALUES (5941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691244658); INSERT INTO public.notice VALUES (5942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691245258); INSERT INTO public.notice VALUES (5943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691245857); INSERT INTO public.notice VALUES (5944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691246456); INSERT INTO public.notice VALUES (5946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691247657); INSERT INTO public.notice VALUES (7097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691939219); INSERT INTO public.notice VALUES (7098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691939819); INSERT INTO public.notice VALUES (7099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691940420); INSERT INTO public.notice VALUES (7100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691941021); INSERT INTO public.notice VALUES (7104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691943419); INSERT INTO public.notice VALUES (5926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691235656); INSERT INTO public.notice VALUES (5927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691236258); INSERT INTO public.notice VALUES (5928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691236857); INSERT INTO public.notice VALUES (5929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691237457); INSERT INTO public.notice VALUES (5930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691238058); INSERT INTO public.notice VALUES (5931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691238658); INSERT INTO public.notice VALUES (5932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691239258); INSERT INTO public.notice VALUES (5933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691239857); INSERT INTO public.notice VALUES (5934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691240458); INSERT INTO public.notice VALUES (5935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691241057); INSERT INTO public.notice VALUES (5936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691241657); INSERT INTO public.notice VALUES (5937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691242259); INSERT INTO public.notice VALUES (5938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691242858); INSERT INTO public.notice VALUES (5939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691243457); INSERT INTO public.notice VALUES (5945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691247058); INSERT INTO public.notice VALUES (5947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691248257); INSERT INTO public.notice VALUES (5948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691248858); INSERT INTO public.notice VALUES (5949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691249457); INSERT INTO public.notice VALUES (5950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691250057); INSERT INTO public.notice VALUES (5951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691250656); INSERT INTO public.notice VALUES (5952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691251258); INSERT INTO public.notice VALUES (5957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691254257); INSERT INTO public.notice VALUES (5958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691254857); INSERT INTO public.notice VALUES (7105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691944019); INSERT INTO public.notice VALUES (7106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691944620); INSERT INTO public.notice VALUES (7107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691945219); INSERT INTO public.notice VALUES (7108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691945819); INSERT INTO public.notice VALUES (7243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692026819); INSERT INTO public.notice VALUES (7244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com ', 1692027430); INSERT INTO public.notice VALUES (7258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692035820); INSERT INTO public.notice VALUES (7259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692036420); INSERT INTO public.notice VALUES (5953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691251857); INSERT INTO public.notice VALUES (5954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691252457); INSERT INTO public.notice VALUES (5955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691253058); INSERT INTO public.notice VALUES (5956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691253658); INSERT INTO public.notice VALUES (5959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691255458); INSERT INTO public.notice VALUES (5960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691256058); INSERT INTO public.notice VALUES (5961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691256657); INSERT INTO public.notice VALUES (5962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691257256); INSERT INTO public.notice VALUES (5963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691257858); INSERT INTO public.notice VALUES (5964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691258457); INSERT INTO public.notice VALUES (5965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691259057); INSERT INTO public.notice VALUES (5966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691259658); INSERT INTO public.notice VALUES (5967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691260258); INSERT INTO public.notice VALUES (5968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691260857); INSERT INTO public.notice VALUES (5969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691261457); INSERT INTO public.notice VALUES (5970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691262058); INSERT INTO public.notice VALUES (5971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691262657); INSERT INTO public.notice VALUES (5972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691263257); INSERT INTO public.notice VALUES (5973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691263856); INSERT INTO public.notice VALUES (5977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691266259); INSERT INTO public.notice VALUES (5982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691269257); INSERT INTO public.notice VALUES (5991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691274659); INSERT INTO public.notice VALUES (5992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691275258); INSERT INTO public.notice VALUES (6007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691284258); INSERT INTO public.notice VALUES (7109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691946421); INSERT INTO public.notice VALUES (7111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691947619); INSERT INTO public.notice VALUES (7112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691948220); INSERT INTO public.notice VALUES (7113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691948820); INSERT INTO public.notice VALUES (7245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692028020); INSERT INTO public.notice VALUES (7246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692028619); INSERT INTO public.notice VALUES (7247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com ', 1692029228); INSERT INTO public.notice VALUES (5974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691264458); INSERT INTO public.notice VALUES (5975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691265057); INSERT INTO public.notice VALUES (5976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691265657); INSERT INTO public.notice VALUES (5978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691266858); INSERT INTO public.notice VALUES (5979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691267457); INSERT INTO public.notice VALUES (5980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691268057); INSERT INTO public.notice VALUES (5981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691268658); INSERT INTO public.notice VALUES (5983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691269857); INSERT INTO public.notice VALUES (5984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691270458); INSERT INTO public.notice VALUES (5985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691271058); INSERT INTO public.notice VALUES (5986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691271658); INSERT INTO public.notice VALUES (5987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691272257); INSERT INTO public.notice VALUES (5988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691272858); INSERT INTO public.notice VALUES (5989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691273458); INSERT INTO public.notice VALUES (5990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691274057); INSERT INTO public.notice VALUES (5993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691275857); INSERT INTO public.notice VALUES (5994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691276457); INSERT INTO public.notice VALUES (5995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691277058); INSERT INTO public.notice VALUES (5996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691277658); INSERT INTO public.notice VALUES (5997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691278257); INSERT INTO public.notice VALUES (5998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691278857); INSERT INTO public.notice VALUES (5999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691279458); INSERT INTO public.notice VALUES (6000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691280057); INSERT INTO public.notice VALUES (6001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691280657); INSERT INTO public.notice VALUES (6002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691281256); INSERT INTO public.notice VALUES (6003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691281858); INSERT INTO public.notice VALUES (6004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691282457); INSERT INTO public.notice VALUES (6005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691283057); INSERT INTO public.notice VALUES (6006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691283658); INSERT INTO public.notice VALUES (6008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691284857); INSERT INTO public.notice VALUES (6009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691285457); INSERT INTO public.notice VALUES (6010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691286058); INSERT INTO public.notice VALUES (6022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691293257); INSERT INTO public.notice VALUES (6023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691293857); INSERT INTO public.notice VALUES (6024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691294458); INSERT INTO public.notice VALUES (6025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691295057); INSERT INTO public.notice VALUES (6033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691299857); INSERT INTO public.notice VALUES (6034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691300457); INSERT INTO public.notice VALUES (6035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691301058); INSERT INTO public.notice VALUES (6036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691301657); INSERT INTO public.notice VALUES (6037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691302257); INSERT INTO public.notice VALUES (6038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691302856); INSERT INTO public.notice VALUES (6039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691303458); INSERT INTO public.notice VALUES (6040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691304057); INSERT INTO public.notice VALUES (7114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691949420); INSERT INTO public.notice VALUES (6011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691286657); INSERT INTO public.notice VALUES (6012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691287257); INSERT INTO public.notice VALUES (6013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691287858); INSERT INTO public.notice VALUES (6014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691288458); INSERT INTO public.notice VALUES (6015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691289057); INSERT INTO public.notice VALUES (6016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691289657); INSERT INTO public.notice VALUES (6017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691290258); INSERT INTO public.notice VALUES (6018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691290857); INSERT INTO public.notice VALUES (6019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691291457); INSERT INTO public.notice VALUES (6020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691292058); INSERT INTO public.notice VALUES (6021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691292658); INSERT INTO public.notice VALUES (6026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691295657); INSERT INTO public.notice VALUES (6027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691296256); INSERT INTO public.notice VALUES (6028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691296858); INSERT INTO public.notice VALUES (6029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691297457); INSERT INTO public.notice VALUES (6030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691298057); INSERT INTO public.notice VALUES (6031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691298658); INSERT INTO public.notice VALUES (6032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691299258); INSERT INTO public.notice VALUES (6041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691304657); INSERT INTO public.notice VALUES (6042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691305258); INSERT INTO public.notice VALUES (6043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691305858); INSERT INTO public.notice VALUES (6044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691306457); INSERT INTO public.notice VALUES (6045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691307058); INSERT INTO public.notice VALUES (6046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691307659); INSERT INTO public.notice VALUES (6047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691308257); INSERT INTO public.notice VALUES (6048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691308857); INSERT INTO public.notice VALUES (6049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691309458); INSERT INTO public.notice VALUES (6050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691310063); INSERT INTO public.notice VALUES (6051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691310657); INSERT INTO public.notice VALUES (6052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691311256); INSERT INTO public.notice VALUES (6053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691311859); INSERT INTO public.notice VALUES (6054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691312457); INSERT INTO public.notice VALUES (6055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691313057); INSERT INTO public.notice VALUES (6056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691313658); INSERT INTO public.notice VALUES (6059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691315457); INSERT INTO public.notice VALUES (6060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691316058); INSERT INTO public.notice VALUES (6061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691316658); INSERT INTO public.notice VALUES (6062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691317257); INSERT INTO public.notice VALUES (6063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691317856); INSERT INTO public.notice VALUES (6064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691318458); INSERT INTO public.notice VALUES (6065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691319058); INSERT INTO public.notice VALUES (6074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691324458); INSERT INTO public.notice VALUES (6075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691325058); INSERT INTO public.notice VALUES (6076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691325657); INSERT INTO public.notice VALUES (6077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691326257); INSERT INTO public.notice VALUES (6057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691314258); INSERT INTO public.notice VALUES (6058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691314860); INSERT INTO public.notice VALUES (6066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691319657); INSERT INTO public.notice VALUES (6067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691320258); INSERT INTO public.notice VALUES (6068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691320858); INSERT INTO public.notice VALUES (6069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691321457); INSERT INTO public.notice VALUES (6070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691322057); INSERT INTO public.notice VALUES (6071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691322658); INSERT INTO public.notice VALUES (6072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691323257); INSERT INTO public.notice VALUES (6073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691323857); INSERT INTO public.notice VALUES (6078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691326858); INSERT INTO public.notice VALUES (6079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691327458); INSERT INTO public.notice VALUES (6080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691328057); INSERT INTO public.notice VALUES (6081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691328657); INSERT INTO public.notice VALUES (6082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691329259); INSERT INTO public.notice VALUES (6083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691329857); INSERT INTO public.notice VALUES (6084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691330458); INSERT INTO public.notice VALUES (6085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691331058); INSERT INTO public.notice VALUES (6086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691331658); INSERT INTO public.notice VALUES (6087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691332257); INSERT INTO public.notice VALUES (6088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691332857); INSERT INTO public.notice VALUES (6089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691333458); INSERT INTO public.notice VALUES (6090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691334058); INSERT INTO public.notice VALUES (6091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691334658); INSERT INTO public.notice VALUES (6092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691335256); INSERT INTO public.notice VALUES (6093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691335858); INSERT INTO public.notice VALUES (6094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691336457); INSERT INTO public.notice VALUES (6095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691337057); INSERT INTO public.notice VALUES (6096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691337658); INSERT INTO public.notice VALUES (6111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691346658); INSERT INTO public.notice VALUES (6097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691338257); INSERT INTO public.notice VALUES (6098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691338857); INSERT INTO public.notice VALUES (6099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691339456); INSERT INTO public.notice VALUES (6100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691340058); INSERT INTO public.notice VALUES (6101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691340657); INSERT INTO public.notice VALUES (6102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691341257); INSERT INTO public.notice VALUES (6103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691341858); INSERT INTO public.notice VALUES (6104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691342457); INSERT INTO public.notice VALUES (6105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691343057); INSERT INTO public.notice VALUES (6106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691343656); INSERT INTO public.notice VALUES (6107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691344258); INSERT INTO public.notice VALUES (6108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691344857); INSERT INTO public.notice VALUES (6109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691345457); INSERT INTO public.notice VALUES (6110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691346058); INSERT INTO public.notice VALUES (6120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691352057); INSERT INTO public.notice VALUES (6112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691347257); INSERT INTO public.notice VALUES (6113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691347859); INSERT INTO public.notice VALUES (6114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691348458); INSERT INTO public.notice VALUES (6115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691349057); INSERT INTO public.notice VALUES (6116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691349657); INSERT INTO public.notice VALUES (6117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691350258); INSERT INTO public.notice VALUES (6118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691350858); INSERT INTO public.notice VALUES (6119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691351457); INSERT INTO public.notice VALUES (6131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691358656); INSERT INTO public.notice VALUES (6132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691359258); INSERT INTO public.notice VALUES (6136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691361657); INSERT INTO public.notice VALUES (7115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691950019); INSERT INTO public.notice VALUES (7116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691950618); INSERT INTO public.notice VALUES (7117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691951220); INSERT INTO public.notice VALUES (7118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691951820); INSERT INTO public.notice VALUES (6121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691352658); INSERT INTO public.notice VALUES (6122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691353257); INSERT INTO public.notice VALUES (6123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691353857); INSERT INTO public.notice VALUES (6124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691354458); INSERT INTO public.notice VALUES (6125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691355058); INSERT INTO public.notice VALUES (6126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691355658); INSERT INTO public.notice VALUES (6127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691356257); INSERT INTO public.notice VALUES (6128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691356858); INSERT INTO public.notice VALUES (6129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691357457); INSERT INTO public.notice VALUES (6130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691358057); INSERT INTO public.notice VALUES (6133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691359857); INSERT INTO public.notice VALUES (6134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691360457); INSERT INTO public.notice VALUES (6135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691361058); INSERT INTO public.notice VALUES (6137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691362257); INSERT INTO public.notice VALUES (6138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691362856); INSERT INTO public.notice VALUES (6139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691363458); INSERT INTO public.notice VALUES (6140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691364057); INSERT INTO public.notice VALUES (6141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691364657); INSERT INTO public.notice VALUES (6142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691365258); INSERT INTO public.notice VALUES (6143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691365858); INSERT INTO public.notice VALUES (7119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691952418); INSERT INTO public.notice VALUES (7120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691953020); INSERT INTO public.notice VALUES (7121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691953619); INSERT INTO public.notice VALUES (7122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691954219); INSERT INTO public.notice VALUES (7123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691954820); INSERT INTO public.notice VALUES (7124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691955420); INSERT INTO public.notice VALUES (7126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691956619); INSERT INTO public.notice VALUES (7127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691957220); INSERT INTO public.notice VALUES (7128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691957819); INSERT INTO public.notice VALUES (7129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691958419); INSERT INTO public.notice VALUES (6144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691366457); INSERT INTO public.notice VALUES (6145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691367056); INSERT INTO public.notice VALUES (6146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691367658); INSERT INTO public.notice VALUES (6147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691368257); INSERT INTO public.notice VALUES (6148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691368857); INSERT INTO public.notice VALUES (6149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691369456); INSERT INTO public.notice VALUES (6150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691370058); INSERT INTO public.notice VALUES (6151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691370657); INSERT INTO public.notice VALUES (6152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691371257); INSERT INTO public.notice VALUES (6153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691371859); INSERT INTO public.notice VALUES (6154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691372458); INSERT INTO public.notice VALUES (6155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691373057); INSERT INTO public.notice VALUES (6156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691373656); INSERT INTO public.notice VALUES (6157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691374258); INSERT INTO public.notice VALUES (6158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691374858); INSERT INTO public.notice VALUES (6159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691375457); INSERT INTO public.notice VALUES (6160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691376058); INSERT INTO public.notice VALUES (6164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691378458); INSERT INTO public.notice VALUES (6167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691380256); INSERT INTO public.notice VALUES (6168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691380858); INSERT INTO public.notice VALUES (6169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691381457); INSERT INTO public.notice VALUES (6170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691382057); INSERT INTO public.notice VALUES (6171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691382658); INSERT INTO public.notice VALUES (6172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691383258); INSERT INTO public.notice VALUES (6173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691383857); INSERT INTO public.notice VALUES (6174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691384456); INSERT INTO public.notice VALUES (6175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691385058); INSERT INTO public.notice VALUES (6176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691385657); INSERT INTO public.notice VALUES (6177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691386257); INSERT INTO public.notice VALUES (6178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691386856); INSERT INTO public.notice VALUES (6161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691376658); INSERT INTO public.notice VALUES (6162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691377257); INSERT INTO public.notice VALUES (6163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691377857); INSERT INTO public.notice VALUES (6165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691379057); INSERT INTO public.notice VALUES (6166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691379657); INSERT INTO public.notice VALUES (6184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691390457); INSERT INTO public.notice VALUES (6185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691391056); INSERT INTO public.notice VALUES (6186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691391658); INSERT INTO public.notice VALUES (6187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691392257); INSERT INTO public.notice VALUES (6188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691392857); INSERT INTO public.notice VALUES (6189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691393458); INSERT INTO public.notice VALUES (6190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691394058); INSERT INTO public.notice VALUES (6191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691394657); INSERT INTO public.notice VALUES (6192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691395258); INSERT INTO public.notice VALUES (6193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691395858); INSERT INTO public.notice VALUES (6179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691387458); INSERT INTO public.notice VALUES (6180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691388057); INSERT INTO public.notice VALUES (6181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691388657); INSERT INTO public.notice VALUES (6182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691389258); INSERT INTO public.notice VALUES (6183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691389858); INSERT INTO public.notice VALUES (6194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691396458); INSERT INTO public.notice VALUES (6195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691397058); INSERT INTO public.notice VALUES (6196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691397656); INSERT INTO public.notice VALUES (6197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691398258); INSERT INTO public.notice VALUES (6198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691398858); INSERT INTO public.notice VALUES (6199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691399457); INSERT INTO public.notice VALUES (6200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691400058); INSERT INTO public.notice VALUES (6201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691400658); INSERT INTO public.notice VALUES (6202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691401257); INSERT INTO public.notice VALUES (6203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691401857); INSERT INTO public.notice VALUES (6204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691402458); INSERT INTO public.notice VALUES (6205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691403057); INSERT INTO public.notice VALUES (6206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691403657); INSERT INTO public.notice VALUES (6214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691408457); INSERT INTO public.notice VALUES (6215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691409058); INSERT INTO public.notice VALUES (6216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691409657); INSERT INTO public.notice VALUES (6217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691410257); INSERT INTO public.notice VALUES (6218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691410859); INSERT INTO public.notice VALUES (6222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691413258); INSERT INTO public.notice VALUES (6223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691413857); INSERT INTO public.notice VALUES (6224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691414457); INSERT INTO public.notice VALUES (6225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691415057); INSERT INTO public.notice VALUES (6226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691415658); INSERT INTO public.notice VALUES (6227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691416257); INSERT INTO public.notice VALUES (6228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691416857); INSERT INTO public.notice VALUES (6207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691404259); INSERT INTO public.notice VALUES (6208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691404858); INSERT INTO public.notice VALUES (6209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691405457); INSERT INTO public.notice VALUES (6210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691406057); INSERT INTO public.notice VALUES (6211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691406658); INSERT INTO public.notice VALUES (6212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691407257); INSERT INTO public.notice VALUES (6213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691407858); INSERT INTO public.notice VALUES (6219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691411458); INSERT INTO public.notice VALUES (6220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691412057); INSERT INTO public.notice VALUES (6221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691412657); INSERT INTO public.notice VALUES (6232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691419257); INSERT INTO public.notice VALUES (6240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691424058); INSERT INTO public.notice VALUES (6241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691424659); INSERT INTO public.notice VALUES (6242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691425257); INSERT INTO public.notice VALUES (6243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691425858); INSERT INTO public.notice VALUES (6229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691417458); INSERT INTO public.notice VALUES (6230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691418058); INSERT INTO public.notice VALUES (6231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691418657); INSERT INTO public.notice VALUES (6233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691419859); INSERT INTO public.notice VALUES (6234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691420457); INSERT INTO public.notice VALUES (6235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691421058); INSERT INTO public.notice VALUES (6236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691421658); INSERT INTO public.notice VALUES (6237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691422258); INSERT INTO public.notice VALUES (6238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691422857); INSERT INTO public.notice VALUES (6239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691423457); INSERT INTO public.notice VALUES (6245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691427058); INSERT INTO public.notice VALUES (7130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691959018); INSERT INTO public.notice VALUES (7131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691959620); INSERT INTO public.notice VALUES (7132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691960219); INSERT INTO public.notice VALUES (7133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691960819); INSERT INTO public.notice VALUES (6244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691426458); INSERT INTO public.notice VALUES (6246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691427657); INSERT INTO public.notice VALUES (6247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691428258); INSERT INTO public.notice VALUES (6248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691428858); INSERT INTO public.notice VALUES (6249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691429457); INSERT INTO public.notice VALUES (6250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691430056); INSERT INTO public.notice VALUES (6251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691430658); INSERT INTO public.notice VALUES (6252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691431257); INSERT INTO public.notice VALUES (6253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691431857); INSERT INTO public.notice VALUES (6254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691432458); INSERT INTO public.notice VALUES (6255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691433059); INSERT INTO public.notice VALUES (6256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691433657); INSERT INTO public.notice VALUES (6257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691434257); INSERT INTO public.notice VALUES (6258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691434858); INSERT INTO public.notice VALUES (6259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691435457); INSERT INTO public.notice VALUES (6260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691436057); INSERT INTO public.notice VALUES (6261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691436659); INSERT INTO public.notice VALUES (6262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691437258); INSERT INTO public.notice VALUES (6263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691437857); INSERT INTO public.notice VALUES (6264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691438457); INSERT INTO public.notice VALUES (6265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691439058); INSERT INTO public.notice VALUES (6266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691439657); INSERT INTO public.notice VALUES (6267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691440257); INSERT INTO public.notice VALUES (6268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691440857); INSERT INTO public.notice VALUES (6269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691441458); INSERT INTO public.notice VALUES (6270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691442057); INSERT INTO public.notice VALUES (6271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691442657); INSERT INTO public.notice VALUES (6272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691443258); INSERT INTO public.notice VALUES (6273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691443858); INSERT INTO public.notice VALUES (6274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691444457); INSERT INTO public.notice VALUES (6275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691445057); INSERT INTO public.notice VALUES (6276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691445658); INSERT INTO public.notice VALUES (6277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691446258); INSERT INTO public.notice VALUES (6278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691446857); INSERT INTO public.notice VALUES (6279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691447456); INSERT INTO public.notice VALUES (6280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691448058); INSERT INTO public.notice VALUES (6281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691448658); INSERT INTO public.notice VALUES (6282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691449257); INSERT INTO public.notice VALUES (6283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691449858); INSERT INTO public.notice VALUES (6284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691450458); INSERT INTO public.notice VALUES (6285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691451057); INSERT INTO public.notice VALUES (6286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691451656); INSERT INTO public.notice VALUES (6287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691452258); INSERT INTO public.notice VALUES (6288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691452858); INSERT INTO public.notice VALUES (6289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691453457); INSERT INTO public.notice VALUES (6290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691454058); INSERT INTO public.notice VALUES (6291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691454658); INSERT INTO public.notice VALUES (6292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691455257); INSERT INTO public.notice VALUES (6293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691455857); INSERT INTO public.notice VALUES (6294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691456458); INSERT INTO public.notice VALUES (6295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691457058); INSERT INTO public.notice VALUES (6296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691457657); INSERT INTO public.notice VALUES (6297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691458256); INSERT INTO public.notice VALUES (6298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691458858); INSERT INTO public.notice VALUES (6299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691459457); INSERT INTO public.notice VALUES (6300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691460057); INSERT INTO public.notice VALUES (6301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691460658); INSERT INTO public.notice VALUES (6302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691461258); INSERT INTO public.notice VALUES (6314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691468457); INSERT INTO public.notice VALUES (6320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691472058); INSERT INTO public.notice VALUES (6303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691461857); INSERT INTO public.notice VALUES (6304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691462456); INSERT INTO public.notice VALUES (6305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691463058); INSERT INTO public.notice VALUES (6306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691463657); INSERT INTO public.notice VALUES (6307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691464257); INSERT INTO public.notice VALUES (6308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691464858); INSERT INTO public.notice VALUES (6309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691465461); INSERT INTO public.notice VALUES (6310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691466058); INSERT INTO public.notice VALUES (6311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691466657); INSERT INTO public.notice VALUES (6312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691467355); INSERT INTO public.notice VALUES (6313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691467858); INSERT INTO public.notice VALUES (6315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691469056); INSERT INTO public.notice VALUES (6316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691469658); INSERT INTO public.notice VALUES (6317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691470257); INSERT INTO public.notice VALUES (6318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691470857); INSERT INTO public.notice VALUES (6319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691471458); INSERT INTO public.notice VALUES (6330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691478058); INSERT INTO public.notice VALUES (6331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691478657); INSERT INTO public.notice VALUES (6332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691479257); INSERT INTO public.notice VALUES (6333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691479856); INSERT INTO public.notice VALUES (6334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691480458); INSERT INTO public.notice VALUES (6335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691481057); INSERT INTO public.notice VALUES (6336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691481657); INSERT INTO public.notice VALUES (6337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691482258); INSERT INTO public.notice VALUES (6343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691485857); INSERT INTO public.notice VALUES (7134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691961420); INSERT INTO public.notice VALUES (7135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691962019); INSERT INTO public.notice VALUES (7136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691962619); INSERT INTO public.notice VALUES (7140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691965019); INSERT INTO public.notice VALUES (7163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691978821); INSERT INTO public.notice VALUES (6321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691472657); INSERT INTO public.notice VALUES (6322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691473258); INSERT INTO public.notice VALUES (6323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691473858); INSERT INTO public.notice VALUES (6324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691474457); INSERT INTO public.notice VALUES (6325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691475057); INSERT INTO public.notice VALUES (6326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691475658); INSERT INTO public.notice VALUES (6327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691476258); INSERT INTO public.notice VALUES (6328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691476857); INSERT INTO public.notice VALUES (6329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691477457); INSERT INTO public.notice VALUES (6338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691482858); INSERT INTO public.notice VALUES (6339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691483457); INSERT INTO public.notice VALUES (6340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691484057); INSERT INTO public.notice VALUES (6341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691484658); INSERT INTO public.notice VALUES (6342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691485257); INSERT INTO public.notice VALUES (6344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691486458); INSERT INTO public.notice VALUES (6345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691487058); INSERT INTO public.notice VALUES (6346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691487657); INSERT INTO public.notice VALUES (6347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691488257); INSERT INTO public.notice VALUES (6348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691488858); INSERT INTO public.notice VALUES (6349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691489457); INSERT INTO public.notice VALUES (6350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691490057); INSERT INTO public.notice VALUES (6351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691490656); INSERT INTO public.notice VALUES (6352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691491258); INSERT INTO public.notice VALUES (6353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691491857); INSERT INTO public.notice VALUES (6354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691492457); INSERT INTO public.notice VALUES (6355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691493058); INSERT INTO public.notice VALUES (6356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691493658); INSERT INTO public.notice VALUES (6357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691494257); INSERT INTO public.notice VALUES (6358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691494857); INSERT INTO public.notice VALUES (6359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691495458); INSERT INTO public.notice VALUES (6360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691496057); INSERT INTO public.notice VALUES (6361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691496657); INSERT INTO public.notice VALUES (6362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691497258); INSERT INTO public.notice VALUES (6363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691497858); INSERT INTO public.notice VALUES (6364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691498457); INSERT INTO public.notice VALUES (6365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691499057); INSERT INTO public.notice VALUES (6366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691499658); INSERT INTO public.notice VALUES (6367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691500258); INSERT INTO public.notice VALUES (6368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691500857); INSERT INTO public.notice VALUES (6369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691501456); INSERT INTO public.notice VALUES (6370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691502058); INSERT INTO public.notice VALUES (6371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691502657); INSERT INTO public.notice VALUES (6372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691503257); INSERT INTO public.notice VALUES (6373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691503858); INSERT INTO public.notice VALUES (6374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691504458); INSERT INTO public.notice VALUES (6375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691505057); INSERT INTO public.notice VALUES (6379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691507458); INSERT INTO public.notice VALUES (6380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691508056); INSERT INTO public.notice VALUES (6381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691508658); INSERT INTO public.notice VALUES (6382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691509257); INSERT INTO public.notice VALUES (6383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691509857); INSERT INTO public.notice VALUES (7137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691963221); INSERT INTO public.notice VALUES (7138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691963820); INSERT INTO public.notice VALUES (7139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691964419); INSERT INTO public.notice VALUES (7141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691965620); INSERT INTO public.notice VALUES (7142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691966220); INSERT INTO public.notice VALUES (7143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691966819); INSERT INTO public.notice VALUES (7144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691967418); INSERT INTO public.notice VALUES (7145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691968020); INSERT INTO public.notice VALUES (7146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691968619); INSERT INTO public.notice VALUES (6376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691505657); INSERT INTO public.notice VALUES (6377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691506258); INSERT INTO public.notice VALUES (6378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691506858); INSERT INTO public.notice VALUES (6384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691510458); INSERT INTO public.notice VALUES (6385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691511058); INSERT INTO public.notice VALUES (6386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691511657); INSERT INTO public.notice VALUES (6387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691512256); INSERT INTO public.notice VALUES (6388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691512858); INSERT INTO public.notice VALUES (6389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691513458); INSERT INTO public.notice VALUES (6390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691514057); INSERT INTO public.notice VALUES (6391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691514658); INSERT INTO public.notice VALUES (6392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691515258); INSERT INTO public.notice VALUES (6393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691515857); INSERT INTO public.notice VALUES (6394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691516457); INSERT INTO public.notice VALUES (6395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691517058); INSERT INTO public.notice VALUES (6396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691517658); INSERT INTO public.notice VALUES (6397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691518257); INSERT INTO public.notice VALUES (6398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691518857); INSERT INTO public.notice VALUES (6399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691519458); INSERT INTO public.notice VALUES (6400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691520057); INSERT INTO public.notice VALUES (7147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691969219); INSERT INTO public.notice VALUES (7148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691969820); INSERT INTO public.notice VALUES (7149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691970420); INSERT INTO public.notice VALUES (7150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691971019); INSERT INTO public.notice VALUES (7151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691971618); INSERT INTO public.notice VALUES (7152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691972220); INSERT INTO public.notice VALUES (7153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691972819); INSERT INTO public.notice VALUES (7154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691973418); INSERT INTO public.notice VALUES (7155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691974018); INSERT INTO public.notice VALUES (7156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691974620); INSERT INTO public.notice VALUES (6401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691520657); INSERT INTO public.notice VALUES (6402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691521258); INSERT INTO public.notice VALUES (6403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691521858); INSERT INTO public.notice VALUES (6404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691522457); INSERT INTO public.notice VALUES (6405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691523056); INSERT INTO public.notice VALUES (6406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691523658); INSERT INTO public.notice VALUES (6407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691524257); INSERT INTO public.notice VALUES (6408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691524857); INSERT INTO public.notice VALUES (6409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691525458); INSERT INTO public.notice VALUES (6410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691526058); INSERT INTO public.notice VALUES (6411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691526657); INSERT INTO public.notice VALUES (6412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691527257); INSERT INTO public.notice VALUES (6413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691527859); INSERT INTO public.notice VALUES (6414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691528458); INSERT INTO public.notice VALUES (6415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691529057); INSERT INTO public.notice VALUES (6416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691529656); INSERT INTO public.notice VALUES (6417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691530258); INSERT INTO public.notice VALUES (6418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691530858); INSERT INTO public.notice VALUES (6419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691531457); INSERT INTO public.notice VALUES (6420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691532058); INSERT INTO public.notice VALUES (6421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691532658); INSERT INTO public.notice VALUES (6422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691533257); INSERT INTO public.notice VALUES (6423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691533859); INSERT INTO public.notice VALUES (6424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691534458); INSERT INTO public.notice VALUES (6425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691535057); INSERT INTO public.notice VALUES (6426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691535657); INSERT INTO public.notice VALUES (6427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691536258); INSERT INTO public.notice VALUES (6428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691536858); INSERT INTO public.notice VALUES (6429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691537457); INSERT INTO public.notice VALUES (6430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691538057); INSERT INTO public.notice VALUES (6431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691538658); INSERT INTO public.notice VALUES (6432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691539257); INSERT INTO public.notice VALUES (6433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691539857); INSERT INTO public.notice VALUES (6434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691540456); INSERT INTO public.notice VALUES (6435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691541058); INSERT INTO public.notice VALUES (6436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691541657); INSERT INTO public.notice VALUES (6437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691542257); INSERT INTO public.notice VALUES (6438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691542858); INSERT INTO public.notice VALUES (6439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691543457); INSERT INTO public.notice VALUES (6440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691544057); INSERT INTO public.notice VALUES (6441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691544657); INSERT INTO public.notice VALUES (6449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691549458); INSERT INTO public.notice VALUES (7157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691975219); INSERT INTO public.notice VALUES (7158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691975819); INSERT INTO public.notice VALUES (7159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691976420); INSERT INTO public.notice VALUES (6442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691545258); INSERT INTO public.notice VALUES (6443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691545859); INSERT INTO public.notice VALUES (6444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691546457); INSERT INTO public.notice VALUES (6445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691547058); INSERT INTO public.notice VALUES (6446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691547658); INSERT INTO public.notice VALUES (6447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691548257); INSERT INTO public.notice VALUES (6448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691548857); INSERT INTO public.notice VALUES (6450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691550058); INSERT INTO public.notice VALUES (6451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691550657); INSERT INTO public.notice VALUES (6452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691551259); INSERT INTO public.notice VALUES (6453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691551858); INSERT INTO public.notice VALUES (6454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691552457); INSERT INTO public.notice VALUES (6455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691553057); INSERT INTO public.notice VALUES (6456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691553659); INSERT INTO public.notice VALUES (6457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691554258); INSERT INTO public.notice VALUES (6458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691554858); INSERT INTO public.notice VALUES (6459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691555457); INSERT INTO public.notice VALUES (6460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691556058); INSERT INTO public.notice VALUES (6463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691557859); INSERT INTO public.notice VALUES (6464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691558458); INSERT INTO public.notice VALUES (6465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691559057); INSERT INTO public.notice VALUES (6466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691559657); INSERT INTO public.notice VALUES (6467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691560258); INSERT INTO public.notice VALUES (6468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691560857); INSERT INTO public.notice VALUES (6469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691561457); INSERT INTO public.notice VALUES (6470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691562056); INSERT INTO public.notice VALUES (6471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691562658); INSERT INTO public.notice VALUES (6472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691563257); INSERT INTO public.notice VALUES (6473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691563857); INSERT INTO public.notice VALUES (6474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691564459); INSERT INTO public.notice VALUES (6461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691556657); INSERT INTO public.notice VALUES (6462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691557257); INSERT INTO public.notice VALUES (6480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691568057); INSERT INTO public.notice VALUES (6481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691568658); INSERT INTO public.notice VALUES (6482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691569258); INSERT INTO public.notice VALUES (6483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691569857); INSERT INTO public.notice VALUES (7160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691977019); INSERT INTO public.notice VALUES (7161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691977619); INSERT INTO public.notice VALUES (7162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691978218); INSERT INTO public.notice VALUES (7185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691992019); INSERT INTO public.notice VALUES (7188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691993820); INSERT INTO public.notice VALUES (7197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691999218); INSERT INTO public.notice VALUES (7198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691999820); INSERT INTO public.notice VALUES (7232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692020220); INSERT INTO public.notice VALUES (7233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692020820); INSERT INTO public.notice VALUES (6475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691565058); INSERT INTO public.notice VALUES (6476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691565657); INSERT INTO public.notice VALUES (6477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691566257); INSERT INTO public.notice VALUES (6478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691566858); INSERT INTO public.notice VALUES (6479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691567457); INSERT INTO public.notice VALUES (6484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691570456); INSERT INTO public.notice VALUES (6485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691571058); INSERT INTO public.notice VALUES (6486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691571657); INSERT INTO public.notice VALUES (6487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691572257); INSERT INTO public.notice VALUES (6488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691572858); INSERT INTO public.notice VALUES (6489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691573458); INSERT INTO public.notice VALUES (6490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691574057); INSERT INTO public.notice VALUES (6491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691574657); INSERT INTO public.notice VALUES (6492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691575258); INSERT INTO public.notice VALUES (6493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691575857); INSERT INTO public.notice VALUES (6494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691576457); INSERT INTO public.notice VALUES (6495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691577056); INSERT INTO public.notice VALUES (6496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691577658); INSERT INTO public.notice VALUES (6497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691578257); INSERT INTO public.notice VALUES (6498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691578857); INSERT INTO public.notice VALUES (6499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691579458); INSERT INTO public.notice VALUES (6500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691580058); INSERT INTO public.notice VALUES (6501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691580657); INSERT INTO public.notice VALUES (6509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691585457); INSERT INTO public.notice VALUES (6510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691586058); INSERT INTO public.notice VALUES (6511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691586658); INSERT INTO public.notice VALUES (6512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691587258); INSERT INTO public.notice VALUES (6513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691587859); INSERT INTO public.notice VALUES (6514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691588458); INSERT INTO public.notice VALUES (6515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691589057); INSERT INTO public.notice VALUES (6502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691581256); INSERT INTO public.notice VALUES (6503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691581858); INSERT INTO public.notice VALUES (6504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691582457); INSERT INTO public.notice VALUES (6505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691583057); INSERT INTO public.notice VALUES (6506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691583657); INSERT INTO public.notice VALUES (6507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691584258); INSERT INTO public.notice VALUES (6508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691584857); INSERT INTO public.notice VALUES (6516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691589657); INSERT INTO public.notice VALUES (6517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691590259); INSERT INTO public.notice VALUES (6518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691590859); INSERT INTO public.notice VALUES (6519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691591458); INSERT INTO public.notice VALUES (6520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691592057); INSERT INTO public.notice VALUES (6521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691592658); INSERT INTO public.notice VALUES (6522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691593258); INSERT INTO public.notice VALUES (6523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691593858); INSERT INTO public.notice VALUES (6524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691594457); INSERT INTO public.notice VALUES (6525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691595058); INSERT INTO public.notice VALUES (6526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691595658); INSERT INTO public.notice VALUES (6527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691596257); INSERT INTO public.notice VALUES (6528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691596858); INSERT INTO public.notice VALUES (6529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691597458); INSERT INTO public.notice VALUES (6530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691598057); INSERT INTO public.notice VALUES (6531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691598657); INSERT INTO public.notice VALUES (6532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691599258); INSERT INTO public.notice VALUES (6533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691599858); INSERT INTO public.notice VALUES (7164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691979419); INSERT INTO public.notice VALUES (7165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691980019); INSERT INTO public.notice VALUES (7166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691980620); INSERT INTO public.notice VALUES (7248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692029820); INSERT INTO public.notice VALUES (7249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692030419); INSERT INTO public.notice VALUES (6534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691600457); INSERT INTO public.notice VALUES (6535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691601057); INSERT INTO public.notice VALUES (6536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691601894); INSERT INTO public.notice VALUES (6537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691602494); INSERT INTO public.notice VALUES (6538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691603093); INSERT INTO public.notice VALUES (6539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691603694); INSERT INTO public.notice VALUES (6540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691604293); INSERT INTO public.notice VALUES (6541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691604893); INSERT INTO public.notice VALUES (6542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691605494); INSERT INTO public.notice VALUES (6543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691606094); INSERT INTO public.notice VALUES (6544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691606693); INSERT INTO public.notice VALUES (6545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691607293); INSERT INTO public.notice VALUES (6546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691607894); INSERT INTO public.notice VALUES (6547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691608494); INSERT INTO public.notice VALUES (6548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691609093); INSERT INTO public.notice VALUES (6549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691609692); INSERT INTO public.notice VALUES (6550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691610294); INSERT INTO public.notice VALUES (6551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691610893); INSERT INTO public.notice VALUES (6552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691611493); INSERT INTO public.notice VALUES (6553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691612095); INSERT INTO public.notice VALUES (6554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691612694); INSERT INTO public.notice VALUES (6555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691613293); INSERT INTO public.notice VALUES (6556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691613892); INSERT INTO public.notice VALUES (6557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691614494); INSERT INTO public.notice VALUES (6558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691615093); INSERT INTO public.notice VALUES (6559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691615693); INSERT INTO public.notice VALUES (6560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691616294); INSERT INTO public.notice VALUES (6561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691616894); INSERT INTO public.notice VALUES (6562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691617493); INSERT INTO public.notice VALUES (6563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691618093); INSERT INTO public.notice VALUES (6564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691618694); INSERT INTO public.notice VALUES (6565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691619293); INSERT INTO public.notice VALUES (6566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691619893); INSERT INTO public.notice VALUES (6567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691620494); INSERT INTO public.notice VALUES (6568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691621094); INSERT INTO public.notice VALUES (6569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691621693); INSERT INTO public.notice VALUES (6570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691622293); INSERT INTO public.notice VALUES (6571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691622894); INSERT INTO public.notice VALUES (6572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691623493); INSERT INTO public.notice VALUES (6573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691624093); INSERT INTO public.notice VALUES (6574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691624692); INSERT INTO public.notice VALUES (6575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691625294); INSERT INTO public.notice VALUES (6576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691625893); INSERT INTO public.notice VALUES (6577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691626493); INSERT INTO public.notice VALUES (6578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691627094); INSERT INTO public.notice VALUES (6579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691627694); INSERT INTO public.notice VALUES (6580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691628293); INSERT INTO public.notice VALUES (6581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691628893); INSERT INTO public.notice VALUES (6582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691629494); INSERT INTO public.notice VALUES (6583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691630093); INSERT INTO public.notice VALUES (6584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691630693); INSERT INTO public.notice VALUES (6613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691648093); INSERT INTO public.notice VALUES (6614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691648692); INSERT INTO public.notice VALUES (6616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691649894); INSERT INTO public.notice VALUES (7167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691981220); INSERT INTO public.notice VALUES (7168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691981819); INSERT INTO public.notice VALUES (7169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691982418); INSERT INTO public.notice VALUES (7170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691983020); INSERT INTO public.notice VALUES (7171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691983619); INSERT INTO public.notice VALUES (7172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691984219); INSERT INTO public.notice VALUES (6585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691631293); INSERT INTO public.notice VALUES (6586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691631894); INSERT INTO public.notice VALUES (6587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691632493); INSERT INTO public.notice VALUES (6588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691633093); INSERT INTO public.notice VALUES (6589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691633692); INSERT INTO public.notice VALUES (6590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691634294); INSERT INTO public.notice VALUES (6591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691634893); INSERT INTO public.notice VALUES (6592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691635493); INSERT INTO public.notice VALUES (6593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691636094); INSERT INTO public.notice VALUES (6594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691636693); INSERT INTO public.notice VALUES (6595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691637293); INSERT INTO public.notice VALUES (6596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691637893); INSERT INTO public.notice VALUES (6597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691638494); INSERT INTO public.notice VALUES (6598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691639093); INSERT INTO public.notice VALUES (6599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691639693); INSERT INTO public.notice VALUES (6600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691640294); INSERT INTO public.notice VALUES (6601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691640897); INSERT INTO public.notice VALUES (6602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691641493); INSERT INTO public.notice VALUES (6603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691642092); INSERT INTO public.notice VALUES (6604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691642694); INSERT INTO public.notice VALUES (6605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691643293); INSERT INTO public.notice VALUES (6606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691643893); INSERT INTO public.notice VALUES (6607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691644492); INSERT INTO public.notice VALUES (6608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691645094); INSERT INTO public.notice VALUES (6609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691645693); INSERT INTO public.notice VALUES (6610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691646292); INSERT INTO public.notice VALUES (6611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691646894); INSERT INTO public.notice VALUES (6612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691647493); INSERT INTO public.notice VALUES (6615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691649294); INSERT INTO public.notice VALUES (6617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691650493); INSERT INTO public.notice VALUES (6618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691651094); INSERT INTO public.notice VALUES (6619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691651694); INSERT INTO public.notice VALUES (6620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691652293); INSERT INTO public.notice VALUES (6621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691652894); INSERT INTO public.notice VALUES (6622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691653497); INSERT INTO public.notice VALUES (6623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691654093); INSERT INTO public.notice VALUES (6624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691654693); INSERT INTO public.notice VALUES (6625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691655294); INSERT INTO public.notice VALUES (6626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691655894); INSERT INTO public.notice VALUES (6627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691656493); INSERT INTO public.notice VALUES (6628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691657094); INSERT INTO public.notice VALUES (6629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691657694); INSERT INTO public.notice VALUES (6630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691658293); INSERT INTO public.notice VALUES (6631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691658893); INSERT INTO public.notice VALUES (6632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691659494); INSERT INTO public.notice VALUES (6633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691660298); INSERT INTO public.notice VALUES (6634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691661420); INSERT INTO public.notice VALUES (6635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691662019); INSERT INTO public.notice VALUES (6636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691662619); INSERT INTO public.notice VALUES (6637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691663218); INSERT INTO public.notice VALUES (6638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691663820); INSERT INTO public.notice VALUES (6639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691664419); INSERT INTO public.notice VALUES (6640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691665019); INSERT INTO public.notice VALUES (6641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691665620); INSERT INTO public.notice VALUES (6642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691666219); INSERT INTO public.notice VALUES (6643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691666819); INSERT INTO public.notice VALUES (6644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691667418); INSERT INTO public.notice VALUES (6645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691668020); INSERT INTO public.notice VALUES (6646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691668619); INSERT INTO public.notice VALUES (6647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691669219); INSERT INTO public.notice VALUES (6648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691669820); INSERT INTO public.notice VALUES (6649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691670420); INSERT INTO public.notice VALUES (6650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691671019); INSERT INTO public.notice VALUES (6651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691671619); INSERT INTO public.notice VALUES (6652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691672220); INSERT INTO public.notice VALUES (6655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691674018); INSERT INTO public.notice VALUES (6656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691674620); INSERT INTO public.notice VALUES (6660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691677020); INSERT INTO public.notice VALUES (7173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691984820); INSERT INTO public.notice VALUES (7174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691985419); INSERT INTO public.notice VALUES (7175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691986019); INSERT INTO public.notice VALUES (7176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691986618); INSERT INTO public.notice VALUES (7177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691987220); INSERT INTO public.notice VALUES (7178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691987819); INSERT INTO public.notice VALUES (7179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691988419); INSERT INTO public.notice VALUES (6653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691672820); INSERT INTO public.notice VALUES (6654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691673419); INSERT INTO public.notice VALUES (6657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691675220); INSERT INTO public.notice VALUES (6658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691675819); INSERT INTO public.notice VALUES (6659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691676420); INSERT INTO public.notice VALUES (6661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691677620); INSERT INTO public.notice VALUES (6662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691678219); INSERT INTO public.notice VALUES (6663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691678820); INSERT INTO public.notice VALUES (6664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691679420); INSERT INTO public.notice VALUES (6665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691680019); INSERT INTO public.notice VALUES (6666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691680619); INSERT INTO public.notice VALUES (6667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691681220); INSERT INTO public.notice VALUES (6668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691681819); INSERT INTO public.notice VALUES (6669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691682419); INSERT INTO public.notice VALUES (6670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691683020); INSERT INTO public.notice VALUES (6671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691683620); INSERT INTO public.notice VALUES (6672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691684219); INSERT INTO public.notice VALUES (6674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691685420); INSERT INTO public.notice VALUES (7180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691989020); INSERT INTO public.notice VALUES (7181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691989619); INSERT INTO public.notice VALUES (7182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691990219); INSERT INTO public.notice VALUES (7183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691990819); INSERT INTO public.notice VALUES (7184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691991420); INSERT INTO public.notice VALUES (7186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691992619); INSERT INTO public.notice VALUES (7187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691993220); INSERT INTO public.notice VALUES (7189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691994419); INSERT INTO public.notice VALUES (7190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691995019); INSERT INTO public.notice VALUES (7191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691995620); INSERT INTO public.notice VALUES (7192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691996220); INSERT INTO public.notice VALUES (7193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691996819); INSERT INTO public.notice VALUES (6673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691684819); INSERT INTO public.notice VALUES (6675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691686019); INSERT INTO public.notice VALUES (6676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691686619); INSERT INTO public.notice VALUES (6677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691687218); INSERT INTO public.notice VALUES (6678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691687820); INSERT INTO public.notice VALUES (6679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691688419); INSERT INTO public.notice VALUES (6680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691689020); INSERT INTO public.notice VALUES (6681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691689620); INSERT INTO public.notice VALUES (6682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691690220); INSERT INTO public.notice VALUES (6683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691690819); INSERT INTO public.notice VALUES (6684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691691418); INSERT INTO public.notice VALUES (6685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691692020); INSERT INTO public.notice VALUES (6686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691692620); INSERT INTO public.notice VALUES (6687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691693219); INSERT INTO public.notice VALUES (6688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691693818); INSERT INTO public.notice VALUES (6689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691694420); INSERT INTO public.notice VALUES (6690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691695019); INSERT INTO public.notice VALUES (6691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691695620); INSERT INTO public.notice VALUES (6692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691696220); INSERT INTO public.notice VALUES (6693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691696819); INSERT INTO public.notice VALUES (6694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691697419); INSERT INTO public.notice VALUES (6695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691698018); INSERT INTO public.notice VALUES (6703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691702820); INSERT INTO public.notice VALUES (6704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691703419); INSERT INTO public.notice VALUES (7194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691997420); INSERT INTO public.notice VALUES (7195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691998020); INSERT INTO public.notice VALUES (7196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691998619); INSERT INTO public.notice VALUES (7199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692000419); INSERT INTO public.notice VALUES (7200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692001019); INSERT INTO public.notice VALUES (7201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692001618); INSERT INTO public.notice VALUES (6696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691698620); INSERT INTO public.notice VALUES (6697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691699219); INSERT INTO public.notice VALUES (6698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691699819); INSERT INTO public.notice VALUES (6699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691700420); INSERT INTO public.notice VALUES (6700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691701020); INSERT INTO public.notice VALUES (6701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691701619); INSERT INTO public.notice VALUES (6702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691702219); INSERT INTO public.notice VALUES (6705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691704019); INSERT INTO public.notice VALUES (6706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691704620); INSERT INTO public.notice VALUES (6707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691705220); INSERT INTO public.notice VALUES (6708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691705819); INSERT INTO public.notice VALUES (6709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691706418); INSERT INTO public.notice VALUES (6710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691707020); INSERT INTO public.notice VALUES (6711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691707619); INSERT INTO public.notice VALUES (6712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691708219); INSERT INTO public.notice VALUES (6713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691708820); INSERT INTO public.notice VALUES (6714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691709420); INSERT INTO public.notice VALUES (6715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691710019); INSERT INTO public.notice VALUES (6716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691710619); INSERT INTO public.notice VALUES (6721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691713620); INSERT INTO public.notice VALUES (6722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691714219); INSERT INTO public.notice VALUES (6723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691714819); INSERT INTO public.notice VALUES (6724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691715420); INSERT INTO public.notice VALUES (6725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691716020); INSERT INTO public.notice VALUES (6726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691716619); INSERT INTO public.notice VALUES (6733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691720819); INSERT INTO public.notice VALUES (6751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691731619); INSERT INTO public.notice VALUES (7202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692002220); INSERT INTO public.notice VALUES (7203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692002819); INSERT INTO public.notice VALUES (7204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692003419); INSERT INTO public.notice VALUES (6717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691711220); INSERT INTO public.notice VALUES (6718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691711819); INSERT INTO public.notice VALUES (6719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691712419); INSERT INTO public.notice VALUES (6720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691713020); INSERT INTO public.notice VALUES (6727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691717219); INSERT INTO public.notice VALUES (6728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691717820); INSERT INTO public.notice VALUES (6729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691718419); INSERT INTO public.notice VALUES (6730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691719019); INSERT INTO public.notice VALUES (6731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691719620); INSERT INTO public.notice VALUES (6732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691720220); INSERT INTO public.notice VALUES (6734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691721419); INSERT INTO public.notice VALUES (6735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691722020); INSERT INTO public.notice VALUES (6736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691722619); INSERT INTO public.notice VALUES (6737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691723219); INSERT INTO public.notice VALUES (6738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691723821); INSERT INTO public.notice VALUES (6739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691724420); INSERT INTO public.notice VALUES (6740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691725019); INSERT INTO public.notice VALUES (6741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691725618); INSERT INTO public.notice VALUES (6742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691726220); INSERT INTO public.notice VALUES (6743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691726820); INSERT INTO public.notice VALUES (6744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691727419); INSERT INTO public.notice VALUES (6745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691728018); INSERT INTO public.notice VALUES (6746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691728620); INSERT INTO public.notice VALUES (6747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691729219); INSERT INTO public.notice VALUES (6748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691729819); INSERT INTO public.notice VALUES (6749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691730420); INSERT INTO public.notice VALUES (6750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691731020); INSERT INTO public.notice VALUES (6752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691732218); INSERT INTO public.notice VALUES (6753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691732820); INSERT INTO public.notice VALUES (6754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691733419); INSERT INTO public.notice VALUES (6755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691734019); INSERT INTO public.notice VALUES (6756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691734620); INSERT INTO public.notice VALUES (6757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691735219); INSERT INTO public.notice VALUES (6758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691735819); INSERT INTO public.notice VALUES (6759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691736418); INSERT INTO public.notice VALUES (6760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691737020); INSERT INTO public.notice VALUES (6761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691737619); INSERT INTO public.notice VALUES (6762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691738219); INSERT INTO public.notice VALUES (6763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691738820); INSERT INTO public.notice VALUES (6764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691739420); INSERT INTO public.notice VALUES (6765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691740020); INSERT INTO public.notice VALUES (6766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691740619); INSERT INTO public.notice VALUES (6767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691741220); INSERT INTO public.notice VALUES (6768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691741819); INSERT INTO public.notice VALUES (6769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691742419); INSERT INTO public.notice VALUES (6770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691743020); INSERT INTO public.notice VALUES (6771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691743620); INSERT INTO public.notice VALUES (6807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691765220); INSERT INTO public.notice VALUES (7205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692004020); INSERT INTO public.notice VALUES (7206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692004619); INSERT INTO public.notice VALUES (7207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692005219); INSERT INTO public.notice VALUES (7208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692005818); INSERT INTO public.notice VALUES (7250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692031019); INSERT INTO public.notice VALUES (7260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692037019); INSERT INTO public.notice VALUES (7261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692037619); INSERT INTO public.notice VALUES (7262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692038220); INSERT INTO public.notice VALUES (7272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692044218); INSERT INTO public.notice VALUES (7273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692044820); INSERT INTO public.notice VALUES (7274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692045419); INSERT INTO public.notice VALUES (7275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692046019); INSERT INTO public.notice VALUES (6772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691744219); INSERT INTO public.notice VALUES (6773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691744819); INSERT INTO public.notice VALUES (6774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691745420); INSERT INTO public.notice VALUES (6775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691746019); INSERT INTO public.notice VALUES (6776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691746619); INSERT INTO public.notice VALUES (6777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691747220); INSERT INTO public.notice VALUES (6778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691747820); INSERT INTO public.notice VALUES (6779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691748419); INSERT INTO public.notice VALUES (6780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691749019); INSERT INTO public.notice VALUES (6781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691749620); INSERT INTO public.notice VALUES (6782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691750219); INSERT INTO public.notice VALUES (6783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691750819); INSERT INTO public.notice VALUES (6784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691751418); INSERT INTO public.notice VALUES (6785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691752020); INSERT INTO public.notice VALUES (6786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691752619); INSERT INTO public.notice VALUES (6787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691753219); INSERT INTO public.notice VALUES (6788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691753820); INSERT INTO public.notice VALUES (6789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691754420); INSERT INTO public.notice VALUES (6790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691755019); INSERT INTO public.notice VALUES (6791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691755620); INSERT INTO public.notice VALUES (6792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691756220); INSERT INTO public.notice VALUES (6793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691756819); INSERT INTO public.notice VALUES (6794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691757419); INSERT INTO public.notice VALUES (6795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691758020); INSERT INTO public.notice VALUES (6796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691758620); INSERT INTO public.notice VALUES (6797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691759219); INSERT INTO public.notice VALUES (6798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691759819); INSERT INTO public.notice VALUES (6799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691760420); INSERT INTO public.notice VALUES (6800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691761019); INSERT INTO public.notice VALUES (6801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691761619); INSERT INTO public.notice VALUES (6802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691762221); INSERT INTO public.notice VALUES (6803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691762820); INSERT INTO public.notice VALUES (6804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691763419); INSERT INTO public.notice VALUES (6805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691764019); INSERT INTO public.notice VALUES (6806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691764620); INSERT INTO public.notice VALUES (6808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691765819); INSERT INTO public.notice VALUES (6809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691766418); INSERT INTO public.notice VALUES (6810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691767020); INSERT INTO public.notice VALUES (6811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691767619); INSERT INTO public.notice VALUES (6812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691768219); INSERT INTO public.notice VALUES (6813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691768820); INSERT INTO public.notice VALUES (6814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691769420); INSERT INTO public.notice VALUES (6815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691770020); INSERT INTO public.notice VALUES (6816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691770618); INSERT INTO public.notice VALUES (6817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691771220); INSERT INTO public.notice VALUES (6818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691771819); INSERT INTO public.notice VALUES (6819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691772419); INSERT INTO public.notice VALUES (6820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691773020); INSERT INTO public.notice VALUES (6821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691773620); INSERT INTO public.notice VALUES (6828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691777820); INSERT INTO public.notice VALUES (6829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691778419); INSERT INTO public.notice VALUES (6830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691779019); INSERT INTO public.notice VALUES (6831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691779620); INSERT INTO public.notice VALUES (6832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691780219); INSERT INTO public.notice VALUES (6835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691782021); INSERT INTO public.notice VALUES (6836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691782619); INSERT INTO public.notice VALUES (6837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691783219); INSERT INTO public.notice VALUES (6838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691783820); INSERT INTO public.notice VALUES (6840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691785019); INSERT INTO public.notice VALUES (6841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691785619); INSERT INTO public.notice VALUES (6822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691774219); INSERT INTO public.notice VALUES (6823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691774818); INSERT INTO public.notice VALUES (6824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691775421); INSERT INTO public.notice VALUES (6825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691776019); INSERT INTO public.notice VALUES (6826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691776619); INSERT INTO public.notice VALUES (6827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691777220); INSERT INTO public.notice VALUES (6833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691780819); INSERT INTO public.notice VALUES (6834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691781420); INSERT INTO public.notice VALUES (6839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691784419); INSERT INTO public.notice VALUES (6842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691786220); INSERT INTO public.notice VALUES (6843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691786819); INSERT INTO public.notice VALUES (6844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691787419); INSERT INTO public.notice VALUES (6845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691788020); INSERT INTO public.notice VALUES (6846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691788620); INSERT INTO public.notice VALUES (6847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691789219); INSERT INTO public.notice VALUES (6848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691789818); INSERT INTO public.notice VALUES (6850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691791019); INSERT INTO public.notice VALUES (6851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691791619); INSERT INTO public.notice VALUES (6852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691792218); INSERT INTO public.notice VALUES (6853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691792820); INSERT INTO public.notice VALUES (6854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691793419); INSERT INTO public.notice VALUES (6855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691794019); INSERT INTO public.notice VALUES (6856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691794620); INSERT INTO public.notice VALUES (6860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691797020); INSERT INTO public.notice VALUES (6861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691797619); INSERT INTO public.notice VALUES (6862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691798219); INSERT INTO public.notice VALUES (6863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691798820); INSERT INTO public.notice VALUES (6864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691799420); INSERT INTO public.notice VALUES (6865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691800019); INSERT INTO public.notice VALUES (6866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691800618); INSERT INTO public.notice VALUES (6849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691790420); INSERT INTO public.notice VALUES (6857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691795220); INSERT INTO public.notice VALUES (6858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691795819); INSERT INTO public.notice VALUES (6859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691796418); INSERT INTO public.notice VALUES (7209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692006420); INSERT INTO public.notice VALUES (7210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692007019); INSERT INTO public.notice VALUES (7211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692007619); INSERT INTO public.notice VALUES (7212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692008220); INSERT INTO public.notice VALUES (7213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692008821); INSERT INTO public.notice VALUES (7214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692009419); INSERT INTO public.notice VALUES (7215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692010018); INSERT INTO public.notice VALUES (7216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692010620); INSERT INTO public.notice VALUES (7217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692011219); INSERT INTO public.notice VALUES (7218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692011819); INSERT INTO public.notice VALUES (7219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692012420); INSERT INTO public.notice VALUES (6867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691801221); INSERT INTO public.notice VALUES (6868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691801819); INSERT INTO public.notice VALUES (6869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691802419); INSERT INTO public.notice VALUES (6870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691803020); INSERT INTO public.notice VALUES (6871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691803620); INSERT INTO public.notice VALUES (6872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691804219); INSERT INTO public.notice VALUES (6873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691804819); INSERT INTO public.notice VALUES (6874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691805420); INSERT INTO public.notice VALUES (6875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691806019); INSERT INTO public.notice VALUES (6876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691806619); INSERT INTO public.notice VALUES (6877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691807218); INSERT INTO public.notice VALUES (6878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691807820); INSERT INTO public.notice VALUES (6879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691808419); INSERT INTO public.notice VALUES (6880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691809019); INSERT INTO public.notice VALUES (6881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691809620); INSERT INTO public.notice VALUES (6882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691810219); INSERT INTO public.notice VALUES (6883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691810819); INSERT INTO public.notice VALUES (6884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691811418); INSERT INTO public.notice VALUES (6885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691812020); INSERT INTO public.notice VALUES (6886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691812619); INSERT INTO public.notice VALUES (6887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691813219); INSERT INTO public.notice VALUES (6888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691813820); INSERT INTO public.notice VALUES (6889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691814420); INSERT INTO public.notice VALUES (6890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691815019); INSERT INTO public.notice VALUES (6891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691815618); INSERT INTO public.notice VALUES (6892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691816220); INSERT INTO public.notice VALUES (6893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691816819); INSERT INTO public.notice VALUES (6894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691817419); INSERT INTO public.notice VALUES (6895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691818020); INSERT INTO public.notice VALUES (6896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691818620); INSERT INTO public.notice VALUES (6897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691819219); INSERT INTO public.notice VALUES (6898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691819819); INSERT INTO public.notice VALUES (6899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691820420); INSERT INTO public.notice VALUES (6900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691821020); INSERT INTO public.notice VALUES (7220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692013020); INSERT INTO public.notice VALUES (7221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692013619); INSERT INTO public.notice VALUES (7222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692014218); INSERT INTO public.notice VALUES (7223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692014820); INSERT INTO public.notice VALUES (7251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692031620); INSERT INTO public.notice VALUES (7252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692032220); INSERT INTO public.notice VALUES (7263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692038819); INSERT INTO public.notice VALUES (7264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692039419); INSERT INTO public.notice VALUES (7265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692040020); INSERT INTO public.notice VALUES (7266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692040620); INSERT INTO public.notice VALUES (7267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692041220); INSERT INTO public.notice VALUES (6901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691821619); INSERT INTO public.notice VALUES (6902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691822220); INSERT INTO public.notice VALUES (6903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691822820); INSERT INTO public.notice VALUES (6904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691823419); INSERT INTO public.notice VALUES (6905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691824018); INSERT INTO public.notice VALUES (6906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691824620); INSERT INTO public.notice VALUES (6907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691825219); INSERT INTO public.notice VALUES (6908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691825819); INSERT INTO public.notice VALUES (6909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691826418); INSERT INTO public.notice VALUES (6910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691827020); INSERT INTO public.notice VALUES (6911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691827619); INSERT INTO public.notice VALUES (6912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691828219); INSERT INTO public.notice VALUES (6913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691828820); INSERT INTO public.notice VALUES (6914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691829419); INSERT INTO public.notice VALUES (6915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691830019); INSERT INTO public.notice VALUES (6916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691830620); INSERT INTO public.notice VALUES (6917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691831220); INSERT INTO public.notice VALUES (6918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691831819); INSERT INTO public.notice VALUES (6919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691832419); INSERT INTO public.notice VALUES (6920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691833020); INSERT INTO public.notice VALUES (6921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691833620); INSERT INTO public.notice VALUES (6922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691834219); INSERT INTO public.notice VALUES (6923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691834818); INSERT INTO public.notice VALUES (6924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691835420); INSERT INTO public.notice VALUES (6925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691836019); INSERT INTO public.notice VALUES (6926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691836619); INSERT INTO public.notice VALUES (6927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691837220); INSERT INTO public.notice VALUES (6928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691837819); INSERT INTO public.notice VALUES (6929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691838419); INSERT INTO public.notice VALUES (6930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691839018); INSERT INTO public.notice VALUES (6931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691839620); INSERT INTO public.notice VALUES (6932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691840220); INSERT INTO public.notice VALUES (6933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691840819); INSERT INTO public.notice VALUES (6934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691841420); INSERT INTO public.notice VALUES (6935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691842020); INSERT INTO public.notice VALUES (6936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691842619); INSERT INTO public.notice VALUES (6937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691843218); INSERT INTO public.notice VALUES (6938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691843820); INSERT INTO public.notice VALUES (6939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691844419); INSERT INTO public.notice VALUES (6940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691845019); INSERT INTO public.notice VALUES (6941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691845620); INSERT INTO public.notice VALUES (6942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691846220); INSERT INTO public.notice VALUES (6943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691846819); INSERT INTO public.notice VALUES (6944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691847419); INSERT INTO public.notice VALUES (6945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691848020); INSERT INTO public.notice VALUES (6946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691848619); INSERT INTO public.notice VALUES (6947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691849219); INSERT INTO public.notice VALUES (6948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691849820); INSERT INTO public.notice VALUES (6949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691850420); INSERT INTO public.notice VALUES (6950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691851019); INSERT INTO public.notice VALUES (6951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691851619); INSERT INTO public.notice VALUES (6952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691852220); INSERT INTO public.notice VALUES (6953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691852819); INSERT INTO public.notice VALUES (6954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691853419); INSERT INTO public.notice VALUES (6955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691854018); INSERT INTO public.notice VALUES (6956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691854620); INSERT INTO public.notice VALUES (6957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691855219); INSERT INTO public.notice VALUES (6958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691855819); INSERT INTO public.notice VALUES (6961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691857619); INSERT INTO public.notice VALUES (6962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691858219); INSERT INTO public.notice VALUES (6959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691856420); INSERT INTO public.notice VALUES (6960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691857020); INSERT INTO public.notice VALUES (6966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691860620); INSERT INTO public.notice VALUES (6967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691861220); INSERT INTO public.notice VALUES (6968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691861820); INSERT INTO public.notice VALUES (6969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691862419); INSERT INTO public.notice VALUES (6970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691863020); INSERT INTO public.notice VALUES (6971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691863619); INSERT INTO public.notice VALUES (6972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691864219); INSERT INTO public.notice VALUES (6973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691864820); INSERT INTO public.notice VALUES (6975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691866019); INSERT INTO public.notice VALUES (6976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691866619); INSERT INTO public.notice VALUES (6977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691867221); INSERT INTO public.notice VALUES (6978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691867819); INSERT INTO public.notice VALUES (6979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691868420); INSERT INTO public.notice VALUES (6963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691858820); INSERT INTO public.notice VALUES (6964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691859419); INSERT INTO public.notice VALUES (6965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691860019); INSERT INTO public.notice VALUES (6974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691865420); INSERT INTO public.notice VALUES (6980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691869018); INSERT INTO public.notice VALUES (6981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691869620); INSERT INTO public.notice VALUES (6984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691871421); INSERT INTO public.notice VALUES (6985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691872020); INSERT INTO public.notice VALUES (6986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691872619); INSERT INTO public.notice VALUES (6987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691873220); INSERT INTO public.notice VALUES (6988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691873820); INSERT INTO public.notice VALUES (6989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691874419); INSERT INTO public.notice VALUES (7224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692015419); INSERT INTO public.notice VALUES (7225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692016019); INSERT INTO public.notice VALUES (7226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692016620); INSERT INTO public.notice VALUES (6982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691870219); INSERT INTO public.notice VALUES (6983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691870819); INSERT INTO public.notice VALUES (6990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691875019); INSERT INTO public.notice VALUES (6991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691875620); INSERT INTO public.notice VALUES (6992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691876220); INSERT INTO public.notice VALUES (6993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691876819); INSERT INTO public.notice VALUES (6994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691877418); INSERT INTO public.notice VALUES (6995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691878020); INSERT INTO public.notice VALUES (6996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691878619); INSERT INTO public.notice VALUES (6997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691879219); INSERT INTO public.notice VALUES (6998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691879820); INSERT INTO public.notice VALUES (6999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691880420); INSERT INTO public.notice VALUES (7000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691881019); INSERT INTO public.notice VALUES (7001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691881619); INSERT INTO public.notice VALUES (7002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691882220); INSERT INTO public.notice VALUES (7003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691882819); INSERT INTO public.notice VALUES (7004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691883419); INSERT INTO public.notice VALUES (7005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691884018); INSERT INTO public.notice VALUES (7006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691884620); INSERT INTO public.notice VALUES (7007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691885219); INSERT INTO public.notice VALUES (7008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691885819); INSERT INTO public.notice VALUES (7009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691886420); INSERT INTO public.notice VALUES (7010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691887021); INSERT INTO public.notice VALUES (7011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691887620); INSERT INTO public.notice VALUES (7012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691888218); INSERT INTO public.notice VALUES (7013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691888820); INSERT INTO public.notice VALUES (7014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691889419); INSERT INTO public.notice VALUES (7015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691890019); INSERT INTO public.notice VALUES (7227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692017220); INSERT INTO public.notice VALUES (7228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692017819); INSERT INTO public.notice VALUES (7016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691890620); INSERT INTO public.notice VALUES (7017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691891220); INSERT INTO public.notice VALUES (7018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691891819); INSERT INTO public.notice VALUES (7019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1691892419); INSERT INTO public.notice VALUES (7229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692018419); INSERT INTO public.notice VALUES (7230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692019024); INSERT INTO public.notice VALUES (7253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692032819); INSERT INTO public.notice VALUES (7254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692033418); INSERT INTO public.notice VALUES (7255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692034020); INSERT INTO public.notice VALUES (7256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692034620); INSERT INTO public.notice VALUES (7257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692035219); INSERT INTO public.notice VALUES (7268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692041819); INSERT INTO public.notice VALUES (7269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692042420); INSERT INTO public.notice VALUES (7270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692043020); INSERT INTO public.notice VALUES (7271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692043619); INSERT INTO public.notice VALUES (7276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692046620); INSERT INTO public.notice VALUES (7277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692047220); INSERT INTO public.notice VALUES (7278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692047819); INSERT INTO public.notice VALUES (7279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692048418); INSERT INTO public.notice VALUES (7280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692049020); INSERT INTO public.notice VALUES (7281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692049619); INSERT INTO public.notice VALUES (7282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692050219); INSERT INTO public.notice VALUES (7283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692050820); INSERT INTO public.notice VALUES (7284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692051420); INSERT INTO public.notice VALUES (7285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692052019); INSERT INTO public.notice VALUES (7286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692052619); INSERT INTO public.notice VALUES (7287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692053220); INSERT INTO public.notice VALUES (7288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692053819); INSERT INTO public.notice VALUES (7289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692054420); INSERT INTO public.notice VALUES (7290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692055020); INSERT INTO public.notice VALUES (7291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692055619); INSERT INTO public.notice VALUES (7292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692056219); INSERT INTO public.notice VALUES (7293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692056819); INSERT INTO public.notice VALUES (7296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692058619); INSERT INTO public.notice VALUES (9886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693613860); INSERT INTO public.notice VALUES (9887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693614460); INSERT INTO public.notice VALUES (9889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693615660); INSERT INTO public.notice VALUES (10121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693754860); INSERT INTO public.notice VALUES (10212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693809461); INSERT INTO public.notice VALUES (10213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693810061); INSERT INTO public.notice VALUES (10214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693810660); INSERT INTO public.notice VALUES (10215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693811263); INSERT INTO public.notice VALUES (10216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693811861); INSERT INTO public.notice VALUES (10217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693812460); INSERT INTO public.notice VALUES (10218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693813060); INSERT INTO public.notice VALUES (7294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692057420); INSERT INTO public.notice VALUES (7295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692058019); INSERT INTO public.notice VALUES (7297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692059220); INSERT INTO public.notice VALUES (7298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692059820); INSERT INTO public.notice VALUES (7299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692060419); INSERT INTO public.notice VALUES (7300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692061018); INSERT INTO public.notice VALUES (7301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692061620); INSERT INTO public.notice VALUES (7302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692062220); INSERT INTO public.notice VALUES (7303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692062819); INSERT INTO public.notice VALUES (7304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692063419); INSERT INTO public.notice VALUES (7305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692064020); INSERT INTO public.notice VALUES (7306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692064619); INSERT INTO public.notice VALUES (7307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692065219); INSERT INTO public.notice VALUES (7308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692065820); INSERT INTO public.notice VALUES (7309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692066420); INSERT INTO public.notice VALUES (7310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692067019); INSERT INTO public.notice VALUES (7311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692067618); INSERT INTO public.notice VALUES (7325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692076019); INSERT INTO public.notice VALUES (7332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692080219); INSERT INTO public.notice VALUES (7333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692080820); INSERT INTO public.notice VALUES (7334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692081420); INSERT INTO public.notice VALUES (7335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692082019); INSERT INTO public.notice VALUES (7336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692082619); INSERT INTO public.notice VALUES (7337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692083220); INSERT INTO public.notice VALUES (7338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692083819); INSERT INTO public.notice VALUES (7339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692084419); INSERT INTO public.notice VALUES (7340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692085020); INSERT INTO public.notice VALUES (7341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692085620); INSERT INTO public.notice VALUES (7342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692086219); INSERT INTO public.notice VALUES (7343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692086819); INSERT INTO public.notice VALUES (7312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692068220); INSERT INTO public.notice VALUES (7313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692068819); INSERT INTO public.notice VALUES (7314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692069419); INSERT INTO public.notice VALUES (7315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692070020); INSERT INTO public.notice VALUES (7316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692070620); INSERT INTO public.notice VALUES (7317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692071219); INSERT INTO public.notice VALUES (7318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692071818); INSERT INTO public.notice VALUES (7319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692072420); INSERT INTO public.notice VALUES (7320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692073019); INSERT INTO public.notice VALUES (7321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692073619); INSERT INTO public.notice VALUES (7322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692074218); INSERT INTO public.notice VALUES (7323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692074820); INSERT INTO public.notice VALUES (7324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692075419); INSERT INTO public.notice VALUES (7326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692076620); INSERT INTO public.notice VALUES (7327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692077220); INSERT INTO public.notice VALUES (7328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692077820); INSERT INTO public.notice VALUES (7329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692078418); INSERT INTO public.notice VALUES (7330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692079020); INSERT INTO public.notice VALUES (7331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692079619); INSERT INTO public.notice VALUES (9888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693615061); INSERT INTO public.notice VALUES (9894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693618662); INSERT INTO public.notice VALUES (9895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693619261); INSERT INTO public.notice VALUES (9896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693619860); INSERT INTO public.notice VALUES (9897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693620460); INSERT INTO public.notice VALUES (9898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693621061); INSERT INTO public.notice VALUES (9899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693621661); INSERT INTO public.notice VALUES (9900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693622260); INSERT INTO public.notice VALUES (9901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693622860); INSERT INTO public.notice VALUES (9902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693623461); INSERT INTO public.notice VALUES (9903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693624060); INSERT INTO public.notice VALUES (7344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692087420); INSERT INTO public.notice VALUES (7345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692088019); INSERT INTO public.notice VALUES (7346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692088619); INSERT INTO public.notice VALUES (7347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692089220); INSERT INTO public.notice VALUES (7348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692089820); INSERT INTO public.notice VALUES (7349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692090419); INSERT INTO public.notice VALUES (7350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692091019); INSERT INTO public.notice VALUES (7351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692091620); INSERT INTO public.notice VALUES (7352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692092220); INSERT INTO public.notice VALUES (7353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692092819); INSERT INTO public.notice VALUES (7354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692093421); INSERT INTO public.notice VALUES (7355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692094020); INSERT INTO public.notice VALUES (7356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692094619); INSERT INTO public.notice VALUES (7357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692095219); INSERT INTO public.notice VALUES (7358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692095820); INSERT INTO public.notice VALUES (7359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692096420); INSERT INTO public.notice VALUES (7360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692097019); INSERT INTO public.notice VALUES (7361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692097618); INSERT INTO public.notice VALUES (7363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692098820); INSERT INTO public.notice VALUES (7364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692099419); INSERT INTO public.notice VALUES (7365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692100021); INSERT INTO public.notice VALUES (7366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692100620); INSERT INTO public.notice VALUES (7367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692101219); INSERT INTO public.notice VALUES (7368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692101819); INSERT INTO public.notice VALUES (7369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692102420); INSERT INTO public.notice VALUES (9890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693616260); INSERT INTO public.notice VALUES (9891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693616861); INSERT INTO public.notice VALUES (9892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693617461); INSERT INTO public.notice VALUES (9893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693618060); INSERT INTO public.notice VALUES (9913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693630061); INSERT INTO public.notice VALUES (7362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692098220); INSERT INTO public.notice VALUES (7370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692103020); INSERT INTO public.notice VALUES (7371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692103619); INSERT INTO public.notice VALUES (7372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692104218); INSERT INTO public.notice VALUES (7373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692104820); INSERT INTO public.notice VALUES (7374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692105419); INSERT INTO public.notice VALUES (7375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692106019); INSERT INTO public.notice VALUES (7376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692106620); INSERT INTO public.notice VALUES (7377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692107220); INSERT INTO public.notice VALUES (7378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692107819); INSERT INTO public.notice VALUES (7379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692108419); INSERT INTO public.notice VALUES (7380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692109020); INSERT INTO public.notice VALUES (7381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692109619); INSERT INTO public.notice VALUES (7382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692110219); INSERT INTO public.notice VALUES (7383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692110820); INSERT INTO public.notice VALUES (7384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692111420); INSERT INTO public.notice VALUES (7385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692112019); INSERT INTO public.notice VALUES (7386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692112619); INSERT INTO public.notice VALUES (7387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692113220); INSERT INTO public.notice VALUES (7388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692113820); INSERT INTO public.notice VALUES (7389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692114419); INSERT INTO public.notice VALUES (7390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692115018); INSERT INTO public.notice VALUES (7391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692115620); INSERT INTO public.notice VALUES (7392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692116219); INSERT INTO public.notice VALUES (7412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692128220); INSERT INTO public.notice VALUES (7413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692128820); INSERT INTO public.notice VALUES (7415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692130018); INSERT INTO public.notice VALUES (7416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692130620); INSERT INTO public.notice VALUES (7417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692131219); INSERT INTO public.notice VALUES (7421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692133619); INSERT INTO public.notice VALUES (7393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692116819); INSERT INTO public.notice VALUES (7394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692117420); INSERT INTO public.notice VALUES (7395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692118020); INSERT INTO public.notice VALUES (7396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692118619); INSERT INTO public.notice VALUES (7397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692119218); INSERT INTO public.notice VALUES (7398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692119820); INSERT INTO public.notice VALUES (7399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692120419); INSERT INTO public.notice VALUES (7400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692121020); INSERT INTO public.notice VALUES (7401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692121620); INSERT INTO public.notice VALUES (7402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692122220); INSERT INTO public.notice VALUES (7403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692122819); INSERT INTO public.notice VALUES (7404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692123418); INSERT INTO public.notice VALUES (7405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692124020); INSERT INTO public.notice VALUES (7406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692124619); INSERT INTO public.notice VALUES (7407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692125219); INSERT INTO public.notice VALUES (7408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692125820); INSERT INTO public.notice VALUES (7409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692126420); INSERT INTO public.notice VALUES (7410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692127019); INSERT INTO public.notice VALUES (7411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692127619); INSERT INTO public.notice VALUES (7414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692129419); INSERT INTO public.notice VALUES (7418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692131819); INSERT INTO public.notice VALUES (7419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692132421); INSERT INTO public.notice VALUES (7420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692133020); INSERT INTO public.notice VALUES (7423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692134820); INSERT INTO public.notice VALUES (7424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692135420); INSERT INTO public.notice VALUES (7428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692137819); INSERT INTO public.notice VALUES (7429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692138419); INSERT INTO public.notice VALUES (7430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692139020); INSERT INTO public.notice VALUES (7431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692139619); INSERT INTO public.notice VALUES (7432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692140219); INSERT INTO public.notice VALUES (7422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692134218); INSERT INTO public.notice VALUES (7425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692136019); INSERT INTO public.notice VALUES (7426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692136620); INSERT INTO public.notice VALUES (7427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692137220); INSERT INTO public.notice VALUES (7433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692140820); INSERT INTO public.notice VALUES (7434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692141420); INSERT INTO public.notice VALUES (7435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692142019); INSERT INTO public.notice VALUES (7436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692142619); INSERT INTO public.notice VALUES (7437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692143220); INSERT INTO public.notice VALUES (7438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692143819); INSERT INTO public.notice VALUES (7439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692144419); INSERT INTO public.notice VALUES (7440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692145018); INSERT INTO public.notice VALUES (7446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692148619); INSERT INTO public.notice VALUES (7448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692149820); INSERT INTO public.notice VALUES (7449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692150419); INSERT INTO public.notice VALUES (7441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692145620); INSERT INTO public.notice VALUES (7442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692146219); INSERT INTO public.notice VALUES (7443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692146819); INSERT INTO public.notice VALUES (7444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692147420); INSERT INTO public.notice VALUES (7445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692148020); INSERT INTO public.notice VALUES (7447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692149218); INSERT INTO public.notice VALUES (7458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692155820); INSERT INTO public.notice VALUES (7459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692156420); INSERT INTO public.notice VALUES (7466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692160620); INSERT INTO public.notice VALUES (7467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692161219); INSERT INTO public.notice VALUES (7468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692161819); INSERT INTO public.notice VALUES (7469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692162420); INSERT INTO public.notice VALUES (7470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692163019); INSERT INTO public.notice VALUES (7471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692163619); INSERT INTO public.notice VALUES (7472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692164218); INSERT INTO public.notice VALUES (7450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692151019); INSERT INTO public.notice VALUES (7451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692151620); INSERT INTO public.notice VALUES (7452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692152220); INSERT INTO public.notice VALUES (7453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692152819); INSERT INTO public.notice VALUES (7454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692153419); INSERT INTO public.notice VALUES (7455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692154020); INSERT INTO public.notice VALUES (7456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692154619); INSERT INTO public.notice VALUES (7457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692155219); INSERT INTO public.notice VALUES (7460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692157019); INSERT INTO public.notice VALUES (7461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692157619); INSERT INTO public.notice VALUES (7462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692158220); INSERT INTO public.notice VALUES (7463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692158820); INSERT INTO public.notice VALUES (7464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692159419); INSERT INTO public.notice VALUES (7465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692160018); INSERT INTO public.notice VALUES (7482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692170219); INSERT INTO public.notice VALUES (7473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692164820); INSERT INTO public.notice VALUES (7474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692165419); INSERT INTO public.notice VALUES (7475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692166019); INSERT INTO public.notice VALUES (7476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692166620); INSERT INTO public.notice VALUES (7477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692167220); INSERT INTO public.notice VALUES (7478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692167819); INSERT INTO public.notice VALUES (7479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692168419); INSERT INTO public.notice VALUES (7480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692169020); INSERT INTO public.notice VALUES (7481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692169619); INSERT INTO public.notice VALUES (7483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692170821); INSERT INTO public.notice VALUES (7484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692171420); INSERT INTO public.notice VALUES (7485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692172019); INSERT INTO public.notice VALUES (7486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692172619); INSERT INTO public.notice VALUES (7487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692173220); INSERT INTO public.notice VALUES (7488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692173820); INSERT INTO public.notice VALUES (7489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692174419); INSERT INTO public.notice VALUES (7490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692175019); INSERT INTO public.notice VALUES (7493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692176819); INSERT INTO public.notice VALUES (7497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692179220); INSERT INTO public.notice VALUES (7498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692179820); INSERT INTO public.notice VALUES (7500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692181019); INSERT INTO public.notice VALUES (7502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692182220); INSERT INTO public.notice VALUES (7503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692182819); INSERT INTO public.notice VALUES (7504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692183419); INSERT INTO public.notice VALUES (7505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692184020); INSERT INTO public.notice VALUES (7511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692187620); INSERT INTO public.notice VALUES (7512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692188220); INSERT INTO public.notice VALUES (7513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692188820); INSERT INTO public.notice VALUES (7514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692189419); INSERT INTO public.notice VALUES (9904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693624660); INSERT INTO public.notice VALUES (7491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692175620); INSERT INTO public.notice VALUES (7492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692176220); INSERT INTO public.notice VALUES (7494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692177420); INSERT INTO public.notice VALUES (7495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692178020); INSERT INTO public.notice VALUES (7496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692178619); INSERT INTO public.notice VALUES (7499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692180419); INSERT INTO public.notice VALUES (7501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692181620); INSERT INTO public.notice VALUES (7506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692184620); INSERT INTO public.notice VALUES (7507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692185219); INSERT INTO public.notice VALUES (7508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692185820); INSERT INTO public.notice VALUES (7509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692186420); INSERT INTO public.notice VALUES (7510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692187019); INSERT INTO public.notice VALUES (7515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692190020); INSERT INTO public.notice VALUES (7516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692190620); INSERT INTO public.notice VALUES (7517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692191219); INSERT INTO public.notice VALUES (7518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692191819); INSERT INTO public.notice VALUES (7519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692192420); INSERT INTO public.notice VALUES (7520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692193020); INSERT INTO public.notice VALUES (7521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692193619); INSERT INTO public.notice VALUES (7522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692194221); INSERT INTO public.notice VALUES (7523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692194820); INSERT INTO public.notice VALUES (7524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692195419); INSERT INTO public.notice VALUES (7525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692196019); INSERT INTO public.notice VALUES (7526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692196620); INSERT INTO public.notice VALUES (7527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692197220); INSERT INTO public.notice VALUES (7528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692197819); INSERT INTO public.notice VALUES (7529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692198418); INSERT INTO public.notice VALUES (7535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692202020); INSERT INTO public.notice VALUES (7536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692202619); INSERT INTO public.notice VALUES (7537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692203220); INSERT INTO public.notice VALUES (7530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692199020); INSERT INTO public.notice VALUES (7531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692199619); INSERT INTO public.notice VALUES (7532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692200219); INSERT INTO public.notice VALUES (7533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692200820); INSERT INTO public.notice VALUES (7534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692201420); INSERT INTO public.notice VALUES (7538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692203819); INSERT INTO public.notice VALUES (7539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692204419); INSERT INTO public.notice VALUES (7540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692205020); INSERT INTO public.notice VALUES (7541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692205620); INSERT INTO public.notice VALUES (7542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692206219); INSERT INTO public.notice VALUES (7543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692206819); INSERT INTO public.notice VALUES (7544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692207421); INSERT INTO public.notice VALUES (7545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692208019); INSERT INTO public.notice VALUES (7546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692208619); INSERT INTO public.notice VALUES (7547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692209219); INSERT INTO public.notice VALUES (7548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692209820); INSERT INTO public.notice VALUES (7555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692214020); INSERT INTO public.notice VALUES (9905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693625261); INSERT INTO public.notice VALUES (9906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693625861); INSERT INTO public.notice VALUES (9907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693626460); INSERT INTO public.notice VALUES (9908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693627060); INSERT INTO public.notice VALUES (9909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693627661); INSERT INTO public.notice VALUES (9910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693628261); INSERT INTO public.notice VALUES (9911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693628860); INSERT INTO public.notice VALUES (9912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693629461); INSERT INTO public.notice VALUES (9921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693634861); INSERT INTO public.notice VALUES (9922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693635460); INSERT INTO public.notice VALUES (9923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693636062); INSERT INTO public.notice VALUES (9930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693640259); INSERT INTO public.notice VALUES (9931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693640861); INSERT INTO public.notice VALUES (7549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692210419); INSERT INTO public.notice VALUES (7550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692211019); INSERT INTO public.notice VALUES (7551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692211618); INSERT INTO public.notice VALUES (7552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692212220); INSERT INTO public.notice VALUES (7553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692212819); INSERT INTO public.notice VALUES (7554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692213419); INSERT INTO public.notice VALUES (7556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692214619); INSERT INTO public.notice VALUES (7557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692215219); INSERT INTO public.notice VALUES (7558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692215819); INSERT INTO public.notice VALUES (7559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692216420); INSERT INTO public.notice VALUES (7560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692217019); INSERT INTO public.notice VALUES (7561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692217619); INSERT INTO public.notice VALUES (7562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692218220); INSERT INTO public.notice VALUES (7563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692218820); INSERT INTO public.notice VALUES (7564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692219419); INSERT INTO public.notice VALUES (7565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692220019); INSERT INTO public.notice VALUES (7566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692220620); INSERT INTO public.notice VALUES (7567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692221219); INSERT INTO public.notice VALUES (7568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692221819); INSERT INTO public.notice VALUES (7569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692222420); INSERT INTO public.notice VALUES (7570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692223020); INSERT INTO public.notice VALUES (7571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692223619); INSERT INTO public.notice VALUES (7572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692224219); INSERT INTO public.notice VALUES (7573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692224820); INSERT INTO public.notice VALUES (7574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692225420); INSERT INTO public.notice VALUES (7575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692226019); INSERT INTO public.notice VALUES (7576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692226618); INSERT INTO public.notice VALUES (7577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692227220); INSERT INTO public.notice VALUES (7578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692227819); INSERT INTO public.notice VALUES (7579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692228419); INSERT INTO public.notice VALUES (7580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692229020); INSERT INTO public.notice VALUES (7584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692231420); INSERT INTO public.notice VALUES (7593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692236819); INSERT INTO public.notice VALUES (7594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692237418); INSERT INTO public.notice VALUES (7595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692238020); INSERT INTO public.notice VALUES (7596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692238619); INSERT INTO public.notice VALUES (7597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692239219); INSERT INTO public.notice VALUES (7598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692239820); INSERT INTO public.notice VALUES (7599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692240420); INSERT INTO public.notice VALUES (7600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692241019); INSERT INTO public.notice VALUES (7601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692241618); INSERT INTO public.notice VALUES (7602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692242220); INSERT INTO public.notice VALUES (7603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692242820); INSERT INTO public.notice VALUES (7604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692243419); INSERT INTO public.notice VALUES (7605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692244021); INSERT INTO public.notice VALUES (7581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692229620); INSERT INTO public.notice VALUES (7582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692230219); INSERT INTO public.notice VALUES (7583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692230819); INSERT INTO public.notice VALUES (7585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692232019); INSERT INTO public.notice VALUES (7586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692232619); INSERT INTO public.notice VALUES (7587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692233218); INSERT INTO public.notice VALUES (7588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692233820); INSERT INTO public.notice VALUES (7589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692234419); INSERT INTO public.notice VALUES (7590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692235019); INSERT INTO public.notice VALUES (7591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692235620); INSERT INTO public.notice VALUES (7592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692236220); INSERT INTO public.notice VALUES (7611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692247619); INSERT INTO public.notice VALUES (9914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693630660); INSERT INTO public.notice VALUES (9915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693631260); INSERT INTO public.notice VALUES (9916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693631861); INSERT INTO public.notice VALUES (7606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692244620); INSERT INTO public.notice VALUES (7607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692245219); INSERT INTO public.notice VALUES (7608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692245819); INSERT INTO public.notice VALUES (7609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692246420); INSERT INTO public.notice VALUES (7610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692247020); INSERT INTO public.notice VALUES (7612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692248220); INSERT INTO public.notice VALUES (7613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692248820); INSERT INTO public.notice VALUES (7614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692249419); INSERT INTO public.notice VALUES (7615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692250022); INSERT INTO public.notice VALUES (7616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692250621); INSERT INTO public.notice VALUES (7617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692251220); INSERT INTO public.notice VALUES (7618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692251819); INSERT INTO public.notice VALUES (7619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692252418); INSERT INTO public.notice VALUES (7620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692253020); INSERT INTO public.notice VALUES (7621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692253620); INSERT INTO public.notice VALUES (7622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692254219); INSERT INTO public.notice VALUES (7623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692254820); INSERT INTO public.notice VALUES (7624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692255420); INSERT INTO public.notice VALUES (7625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692256019); INSERT INTO public.notice VALUES (7626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692256620); INSERT INTO public.notice VALUES (7627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692257220); INSERT INTO public.notice VALUES (7628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692257819); INSERT INTO public.notice VALUES (7629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692258420); INSERT INTO public.notice VALUES (7630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692259020); INSERT INTO public.notice VALUES (7631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692259620); INSERT INTO public.notice VALUES (7632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692260219); INSERT INTO public.notice VALUES (7633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692260819); INSERT INTO public.notice VALUES (7634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692261420); INSERT INTO public.notice VALUES (7635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692262019); INSERT INTO public.notice VALUES (7636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692262619); INSERT INTO public.notice VALUES (7637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692263220); INSERT INTO public.notice VALUES (7638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692263820); INSERT INTO public.notice VALUES (7639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692264419); INSERT INTO public.notice VALUES (7640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692265019); INSERT INTO public.notice VALUES (7641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692265620); INSERT INTO public.notice VALUES (7642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692266221); INSERT INTO public.notice VALUES (7643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692266819); INSERT INTO public.notice VALUES (7644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692267418); INSERT INTO public.notice VALUES (7645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692268020); INSERT INTO public.notice VALUES (7646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692268619); INSERT INTO public.notice VALUES (7647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692269219); INSERT INTO public.notice VALUES (7648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692269820); INSERT INTO public.notice VALUES (7649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692270420); INSERT INTO public.notice VALUES (7650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692271019); INSERT INTO public.notice VALUES (7651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692271618); INSERT INTO public.notice VALUES (7652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692272220); INSERT INTO public.notice VALUES (7653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692272819); INSERT INTO public.notice VALUES (7654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692273419); INSERT INTO public.notice VALUES (7655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692274020); INSERT INTO public.notice VALUES (7656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692274620); INSERT INTO public.notice VALUES (7657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692275219); INSERT INTO public.notice VALUES (7658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692275819); INSERT INTO public.notice VALUES (7659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692276420); INSERT INTO public.notice VALUES (7660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692277019); INSERT INTO public.notice VALUES (7661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692277619); INSERT INTO public.notice VALUES (7662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692278220); INSERT INTO public.notice VALUES (7663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692278820); INSERT INTO public.notice VALUES (7664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692279419); INSERT INTO public.notice VALUES (7665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692280019); INSERT INTO public.notice VALUES (7666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692280620); INSERT INTO public.notice VALUES (7667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692281220); INSERT INTO public.notice VALUES (7668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692281819); INSERT INTO public.notice VALUES (7669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692282419); INSERT INTO public.notice VALUES (7670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692283020); INSERT INTO public.notice VALUES (7671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692283619); INSERT INTO public.notice VALUES (7672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692284219); INSERT INTO public.notice VALUES (7673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692284820); INSERT INTO public.notice VALUES (7674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692285420); INSERT INTO public.notice VALUES (7675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692286019); INSERT INTO public.notice VALUES (7676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692286619); INSERT INTO public.notice VALUES (7677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692287220); INSERT INTO public.notice VALUES (7678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692287819); INSERT INTO public.notice VALUES (7679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692288419); INSERT INTO public.notice VALUES (7680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692289018); INSERT INTO public.notice VALUES (7681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692289620); INSERT INTO public.notice VALUES (7682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692290219); INSERT INTO public.notice VALUES (7683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692290819); INSERT INTO public.notice VALUES (7684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692291420); INSERT INTO public.notice VALUES (7685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692292020); INSERT INTO public.notice VALUES (7686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692292619); INSERT INTO public.notice VALUES (7687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692293218); INSERT INTO public.notice VALUES (7688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692293820); INSERT INTO public.notice VALUES (7689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692294419); INSERT INTO public.notice VALUES (7690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692295019); INSERT INTO public.notice VALUES (7691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692295620); INSERT INTO public.notice VALUES (7692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692296219); INSERT INTO public.notice VALUES (7693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692296819); INSERT INTO public.notice VALUES (7694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692297419); INSERT INTO public.notice VALUES (7695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692298020); INSERT INTO public.notice VALUES (7696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692298619); INSERT INTO public.notice VALUES (7697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692299220); INSERT INTO public.notice VALUES (7698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692299820); INSERT INTO public.notice VALUES (7699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692300420); INSERT INTO public.notice VALUES (7700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692301019); INSERT INTO public.notice VALUES (7701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692301619); INSERT INTO public.notice VALUES (7702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692302220); INSERT INTO public.notice VALUES (7703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692302819); INSERT INTO public.notice VALUES (7704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692303419); INSERT INTO public.notice VALUES (7705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692304020); INSERT INTO public.notice VALUES (7706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692304620); INSERT INTO public.notice VALUES (7707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692305219); INSERT INTO public.notice VALUES (7723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692314820); INSERT INTO public.notice VALUES (7724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692315420); INSERT INTO public.notice VALUES (7725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692316019); INSERT INTO public.notice VALUES (7726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692316619); INSERT INTO public.notice VALUES (7708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692305819); INSERT INTO public.notice VALUES (7709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692306420); INSERT INTO public.notice VALUES (7710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692307020); INSERT INTO public.notice VALUES (7711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692307619); INSERT INTO public.notice VALUES (7712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692308218); INSERT INTO public.notice VALUES (7713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692308820); INSERT INTO public.notice VALUES (7714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692309419); INSERT INTO public.notice VALUES (7715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692310019); INSERT INTO public.notice VALUES (7716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692310620); INSERT INTO public.notice VALUES (7717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692311220); INSERT INTO public.notice VALUES (7718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692311819); INSERT INTO public.notice VALUES (7719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692312418); INSERT INTO public.notice VALUES (7720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692313020); INSERT INTO public.notice VALUES (7721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692313619); INSERT INTO public.notice VALUES (7722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692314219); INSERT INTO public.notice VALUES (7727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692317220); INSERT INTO public.notice VALUES (7728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692317820); INSERT INTO public.notice VALUES (7729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692318419); INSERT INTO public.notice VALUES (7730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692319018); INSERT INTO public.notice VALUES (7731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692319621); INSERT INTO public.notice VALUES (7732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692320219); INSERT INTO public.notice VALUES (7733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692320819); INSERT INTO public.notice VALUES (7734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692321420); INSERT INTO public.notice VALUES (7735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692322019); INSERT INTO public.notice VALUES (7736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692322619); INSERT INTO public.notice VALUES (7737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692323218); INSERT INTO public.notice VALUES (7738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692323820); INSERT INTO public.notice VALUES (7739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692324419); INSERT INTO public.notice VALUES (7740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692325019); INSERT INTO public.notice VALUES (7741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692325621); INSERT INTO public.notice VALUES (7742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692326220); INSERT INTO public.notice VALUES (7743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692326819); INSERT INTO public.notice VALUES (7744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692327419); INSERT INTO public.notice VALUES (7745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692328021); INSERT INTO public.notice VALUES (7746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692328620); INSERT INTO public.notice VALUES (7747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692329219); INSERT INTO public.notice VALUES (7748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692329819); INSERT INTO public.notice VALUES (7749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692330420); INSERT INTO public.notice VALUES (7750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692331019); INSERT INTO public.notice VALUES (7751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692331619); INSERT INTO public.notice VALUES (7752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692332220); INSERT INTO public.notice VALUES (7753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692332820); INSERT INTO public.notice VALUES (7754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692333419); INSERT INTO public.notice VALUES (7755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692334018); INSERT INTO public.notice VALUES (7756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692334620); INSERT INTO public.notice VALUES (7757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692335219); INSERT INTO public.notice VALUES (7758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692335819); INSERT INTO public.notice VALUES (7759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692336420); INSERT INTO public.notice VALUES (7760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692337020); INSERT INTO public.notice VALUES (7774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692345420); INSERT INTO public.notice VALUES (7775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692346019); INSERT INTO public.notice VALUES (7776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692346619); INSERT INTO public.notice VALUES (7777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692347220); INSERT INTO public.notice VALUES (7778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692347820); INSERT INTO public.notice VALUES (7779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692348419); INSERT INTO public.notice VALUES (7780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692349018); INSERT INTO public.notice VALUES (7781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692349620); INSERT INTO public.notice VALUES (9917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693632461); INSERT INTO public.notice VALUES (10122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693755461); INSERT INTO public.notice VALUES (10123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693756061); INSERT INTO public.notice VALUES (7761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692337619); INSERT INTO public.notice VALUES (7762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692338218); INSERT INTO public.notice VALUES (7763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692338820); INSERT INTO public.notice VALUES (7764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692339419); INSERT INTO public.notice VALUES (7765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692340019); INSERT INTO public.notice VALUES (7766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692340620); INSERT INTO public.notice VALUES (7767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692341220); INSERT INTO public.notice VALUES (7768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692341819); INSERT INTO public.notice VALUES (7769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692342419); INSERT INTO public.notice VALUES (7770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692343020); INSERT INTO public.notice VALUES (7771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692343620); INSERT INTO public.notice VALUES (7772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692344219); INSERT INTO public.notice VALUES (7773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692344818); INSERT INTO public.notice VALUES (7782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692350219); INSERT INTO public.notice VALUES (7783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692350819); INSERT INTO public.notice VALUES (7784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692351420); INSERT INTO public.notice VALUES (7785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692352019); INSERT INTO public.notice VALUES (7786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692352619); INSERT INTO public.notice VALUES (7787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692353220); INSERT INTO public.notice VALUES (7788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692353820); INSERT INTO public.notice VALUES (7789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692354419); INSERT INTO public.notice VALUES (7790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692355019); INSERT INTO public.notice VALUES (7791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692355620); INSERT INTO public.notice VALUES (7792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692356220); INSERT INTO public.notice VALUES (7793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692356819); INSERT INTO public.notice VALUES (7794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692357419); INSERT INTO public.notice VALUES (7795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692358020); INSERT INTO public.notice VALUES (7796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692358619); INSERT INTO public.notice VALUES (7797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692359219); INSERT INTO public.notice VALUES (7798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692359819); INSERT INTO public.notice VALUES (7799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692360420); INSERT INTO public.notice VALUES (7800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692361020); INSERT INTO public.notice VALUES (7801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692361619); INSERT INTO public.notice VALUES (7807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692365219); INSERT INTO public.notice VALUES (7808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692365819); INSERT INTO public.notice VALUES (7809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692366420); INSERT INTO public.notice VALUES (7812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692368221); INSERT INTO public.notice VALUES (7819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692372419); INSERT INTO public.notice VALUES (9918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693633060); INSERT INTO public.notice VALUES (9919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693633660); INSERT INTO public.notice VALUES (9920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693634261); INSERT INTO public.notice VALUES (9924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693636661); INSERT INTO public.notice VALUES (9925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693637260); INSERT INTO public.notice VALUES (9926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693637860); INSERT INTO public.notice VALUES (9927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693638461); INSERT INTO public.notice VALUES (7802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692362220); INSERT INTO public.notice VALUES (7803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692362820); INSERT INTO public.notice VALUES (7804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692363419); INSERT INTO public.notice VALUES (7805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692364019); INSERT INTO public.notice VALUES (7806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692364620); INSERT INTO public.notice VALUES (7810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692367020); INSERT INTO public.notice VALUES (7811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692367620); INSERT INTO public.notice VALUES (7813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692368820); INSERT INTO public.notice VALUES (7814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692369420); INSERT INTO public.notice VALUES (7815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692370019); INSERT INTO public.notice VALUES (7816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692370620); INSERT INTO public.notice VALUES (7817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692371220); INSERT INTO public.notice VALUES (7818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692371819); INSERT INTO public.notice VALUES (7820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692373020); INSERT INTO public.notice VALUES (7821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692373619); INSERT INTO public.notice VALUES (7822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692374219); INSERT INTO public.notice VALUES (7823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692374818); INSERT INTO public.notice VALUES (7827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692377220); INSERT INTO public.notice VALUES (9928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693639061); INSERT INTO public.notice VALUES (9929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693639660); INSERT INTO public.notice VALUES (9935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693643261); INSERT INTO public.notice VALUES (9939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693645661); INSERT INTO public.notice VALUES (10125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693757262); INSERT INTO public.notice VALUES (10126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693757861); INSERT INTO public.notice VALUES (10127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693758460); INSERT INTO public.notice VALUES (10128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693759060); INSERT INTO public.notice VALUES (10219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693813661); INSERT INTO public.notice VALUES (10222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693815460); INSERT INTO public.notice VALUES (10223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693816061); INSERT INTO public.notice VALUES (10233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693822060); INSERT INTO public.notice VALUES (7824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692375420); INSERT INTO public.notice VALUES (7825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692376019); INSERT INTO public.notice VALUES (7826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692376619); INSERT INTO public.notice VALUES (7828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692377820); INSERT INTO public.notice VALUES (7829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692378419); INSERT INTO public.notice VALUES (7830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692379018); INSERT INTO public.notice VALUES (7831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692379620); INSERT INTO public.notice VALUES (7832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692380220); INSERT INTO public.notice VALUES (7833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692380819); INSERT INTO public.notice VALUES (7834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692381420); INSERT INTO public.notice VALUES (7835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692382020); INSERT INTO public.notice VALUES (7836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692382619); INSERT INTO public.notice VALUES (7837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692383218); INSERT INTO public.notice VALUES (7838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692383820); INSERT INTO public.notice VALUES (7839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692384420); INSERT INTO public.notice VALUES (7840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692385019); INSERT INTO public.notice VALUES (7841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692385620); INSERT INTO public.notice VALUES (7842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692386220); INSERT INTO public.notice VALUES (7843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692386820); INSERT INTO public.notice VALUES (7844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692387419); INSERT INTO public.notice VALUES (7853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692392820); INSERT INTO public.notice VALUES (7854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692393419); INSERT INTO public.notice VALUES (7855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692394018); INSERT INTO public.notice VALUES (7856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692394620); INSERT INTO public.notice VALUES (9932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693641461); INSERT INTO public.notice VALUES (10129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693759661); INSERT INTO public.notice VALUES (10130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693760261); INSERT INTO public.notice VALUES (10226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693817860); INSERT INTO public.notice VALUES (10227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693818461); INSERT INTO public.notice VALUES (10228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693819060); INSERT INTO public.notice VALUES (7845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692388020); INSERT INTO public.notice VALUES (7846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692388619); INSERT INTO public.notice VALUES (7847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692389219); INSERT INTO public.notice VALUES (7848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692389820); INSERT INTO public.notice VALUES (7849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692390420); INSERT INTO public.notice VALUES (7850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692391019); INSERT INTO public.notice VALUES (7851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692391619); INSERT INTO public.notice VALUES (7852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692392220); INSERT INTO public.notice VALUES (7857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692395219); INSERT INTO public.notice VALUES (7858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692395819); INSERT INTO public.notice VALUES (7859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692396420); INSERT INTO public.notice VALUES (7860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692397020); INSERT INTO public.notice VALUES (7861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692397619); INSERT INTO public.notice VALUES (7862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692398218); INSERT INTO public.notice VALUES (7863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692398820); INSERT INTO public.notice VALUES (7864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692399419); INSERT INTO public.notice VALUES (7865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692400019); INSERT INTO public.notice VALUES (7866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692400620); INSERT INTO public.notice VALUES (7867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692401220); INSERT INTO public.notice VALUES (7868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692401819); INSERT INTO public.notice VALUES (7869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692402418); INSERT INTO public.notice VALUES (7874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692405420); INSERT INTO public.notice VALUES (7875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692406019); INSERT INTO public.notice VALUES (9933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693642060); INSERT INTO public.notice VALUES (9934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693642661); INSERT INTO public.notice VALUES (9936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693643860); INSERT INTO public.notice VALUES (9937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693644459); INSERT INTO public.notice VALUES (9938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693645061); INSERT INTO public.notice VALUES (9947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693650460); INSERT INTO public.notice VALUES (9948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693651059); INSERT INTO public.notice VALUES (7870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692403020); INSERT INTO public.notice VALUES (7871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692403620); INSERT INTO public.notice VALUES (7872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692404219); INSERT INTO public.notice VALUES (7873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692404819); INSERT INTO public.notice VALUES (7876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692406619); INSERT INTO public.notice VALUES (7877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692407220); INSERT INTO public.notice VALUES (7878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692407820); INSERT INTO public.notice VALUES (7879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692408419); INSERT INTO public.notice VALUES (7880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692409019); INSERT INTO public.notice VALUES (7881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692409620); INSERT INTO public.notice VALUES (7882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692410220); INSERT INTO public.notice VALUES (7883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692410819); INSERT INTO public.notice VALUES (7884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692411420); INSERT INTO public.notice VALUES (7885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692412020); INSERT INTO public.notice VALUES (7886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692412619); INSERT INTO public.notice VALUES (7887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692413219); INSERT INTO public.notice VALUES (7888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692413820); INSERT INTO public.notice VALUES (7889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692414419); INSERT INTO public.notice VALUES (7890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692415019); INSERT INTO public.notice VALUES (7891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692415620); INSERT INTO public.notice VALUES (7892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692416220); INSERT INTO public.notice VALUES (7893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692416820); INSERT INTO public.notice VALUES (7894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692417419); INSERT INTO public.notice VALUES (7895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692418020); INSERT INTO public.notice VALUES (7896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692418620); INSERT INTO public.notice VALUES (7897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692419219); INSERT INTO public.notice VALUES (7898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692419818); INSERT INTO public.notice VALUES (7899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692420420); INSERT INTO public.notice VALUES (7900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692421019); INSERT INTO public.notice VALUES (7901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692421619); INSERT INTO public.notice VALUES (7902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692422220); INSERT INTO public.notice VALUES (7903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692422820); INSERT INTO public.notice VALUES (7904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692423419); INSERT INTO public.notice VALUES (7905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692424019); INSERT INTO public.notice VALUES (7906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692424620); INSERT INTO public.notice VALUES (7907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692425220); INSERT INTO public.notice VALUES (7908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692425819); INSERT INTO public.notice VALUES (7909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692426420); INSERT INTO public.notice VALUES (7910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692427020); INSERT INTO public.notice VALUES (7911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692427619); INSERT INTO public.notice VALUES (7912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692428219); INSERT INTO public.notice VALUES (7913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692428822); INSERT INTO public.notice VALUES (7914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692429419); INSERT INTO public.notice VALUES (7915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692430019); INSERT INTO public.notice VALUES (7916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692430619); INSERT INTO public.notice VALUES (7917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692431220); INSERT INTO public.notice VALUES (7918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692431819); INSERT INTO public.notice VALUES (7919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692432419); INSERT INTO public.notice VALUES (7920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692433020); INSERT INTO public.notice VALUES (7921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692433620); INSERT INTO public.notice VALUES (7922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692434219); INSERT INTO public.notice VALUES (7923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692434818); INSERT INTO public.notice VALUES (7924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692435420); INSERT INTO public.notice VALUES (7925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692436020); INSERT INTO public.notice VALUES (7926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692436619); INSERT INTO public.notice VALUES (7927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692437220); INSERT INTO public.notice VALUES (7928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692437820); INSERT INTO public.notice VALUES (7929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692438419); INSERT INTO public.notice VALUES (7930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692439019); INSERT INTO public.notice VALUES (7931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692439620); INSERT INTO public.notice VALUES (7932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692440220); INSERT INTO public.notice VALUES (7933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692440819); INSERT INTO public.notice VALUES (7934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692441418); INSERT INTO public.notice VALUES (7936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692442619); INSERT INTO public.notice VALUES (7937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692443219); INSERT INTO public.notice VALUES (7938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692443820); INSERT INTO public.notice VALUES (7939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692444420); INSERT INTO public.notice VALUES (7940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692445019); INSERT INTO public.notice VALUES (7941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692445619); INSERT INTO public.notice VALUES (7942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692446220); INSERT INTO public.notice VALUES (7943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692446819); INSERT INTO public.notice VALUES (9940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693646261); INSERT INTO public.notice VALUES (9941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693646861); INSERT INTO public.notice VALUES (9942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693647462); INSERT INTO public.notice VALUES (10131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693760860); INSERT INTO public.notice VALUES (7935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692442020); INSERT INTO public.notice VALUES (7944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692447419); INSERT INTO public.notice VALUES (7945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692448020); INSERT INTO public.notice VALUES (7946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692448620); INSERT INTO public.notice VALUES (7947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692449219); INSERT INTO public.notice VALUES (7948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692449818); INSERT INTO public.notice VALUES (7949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692450420); INSERT INTO public.notice VALUES (7950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692451019); INSERT INTO public.notice VALUES (7951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692451619); INSERT INTO public.notice VALUES (7952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692452218); INSERT INTO public.notice VALUES (7953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692452820); INSERT INTO public.notice VALUES (7954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692453419); INSERT INTO public.notice VALUES (7955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692454019); INSERT INTO public.notice VALUES (7956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692454620); INSERT INTO public.notice VALUES (7957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692455220); INSERT INTO public.notice VALUES (7958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692455819); INSERT INTO public.notice VALUES (7959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692456418); INSERT INTO public.notice VALUES (7960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692457020); INSERT INTO public.notice VALUES (7961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692457619); INSERT INTO public.notice VALUES (7962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692458219); INSERT INTO public.notice VALUES (7963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692458820); INSERT INTO public.notice VALUES (7964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692459420); INSERT INTO public.notice VALUES (7965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692460019); INSERT INTO public.notice VALUES (7966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692460619); INSERT INTO public.notice VALUES (7967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692461220); INSERT INTO public.notice VALUES (7968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692461820); INSERT INTO public.notice VALUES (7969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692462419); INSERT INTO public.notice VALUES (7970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692463020); INSERT INTO public.notice VALUES (7971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692463620); INSERT INTO public.notice VALUES (7972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692464220); INSERT INTO public.notice VALUES (7973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692464818); INSERT INTO public.notice VALUES (7974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692465420); INSERT INTO public.notice VALUES (7975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692466019); INSERT INTO public.notice VALUES (7976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692466620); INSERT INTO public.notice VALUES (7977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692467218); INSERT INTO public.notice VALUES (7978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692467820); INSERT INTO public.notice VALUES (7979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692468420); INSERT INTO public.notice VALUES (7980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692469019); INSERT INTO public.notice VALUES (7981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692469620); INSERT INTO public.notice VALUES (7982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692470220); INSERT INTO public.notice VALUES (7983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692470819); INSERT INTO public.notice VALUES (7984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692471419); INSERT INTO public.notice VALUES (7985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692472020); INSERT INTO public.notice VALUES (7986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692472620); INSERT INTO public.notice VALUES (7987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692473219); INSERT INTO public.notice VALUES (7988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692473820); INSERT INTO public.notice VALUES (7989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692474420); INSERT INTO public.notice VALUES (7990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692475019); INSERT INTO public.notice VALUES (8007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692485220); INSERT INTO public.notice VALUES (8012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692488219); INSERT INTO public.notice VALUES (8014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692489420); INSERT INTO public.notice VALUES (8015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692490019); INSERT INTO public.notice VALUES (8016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692490619); INSERT INTO public.notice VALUES (9943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693648060); INSERT INTO public.notice VALUES (9944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693648660); INSERT INTO public.notice VALUES (9945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693649261); INSERT INTO public.notice VALUES (9946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693649860); INSERT INTO public.notice VALUES (10132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693761460); INSERT INTO public.notice VALUES (10134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693762661); INSERT INTO public.notice VALUES (10229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693819660); INSERT INTO public.notice VALUES (7991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692475618); INSERT INTO public.notice VALUES (7992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692476220); INSERT INTO public.notice VALUES (7993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692476819); INSERT INTO public.notice VALUES (7994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692477419); INSERT INTO public.notice VALUES (7995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692478020); INSERT INTO public.notice VALUES (7996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692478620); INSERT INTO public.notice VALUES (7997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692479219); INSERT INTO public.notice VALUES (7998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692479819); INSERT INTO public.notice VALUES (7999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692480420); INSERT INTO public.notice VALUES (8000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692481019); INSERT INTO public.notice VALUES (8001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692481619); INSERT INTO public.notice VALUES (8002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692482220); INSERT INTO public.notice VALUES (8003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692482820); INSERT INTO public.notice VALUES (8004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692483419); INSERT INTO public.notice VALUES (8005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692484019); INSERT INTO public.notice VALUES (8006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692484620); INSERT INTO public.notice VALUES (8008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692485819); INSERT INTO public.notice VALUES (8009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692486419); INSERT INTO public.notice VALUES (8010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692487020); INSERT INTO public.notice VALUES (8011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692487619); INSERT INTO public.notice VALUES (8013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692488820); INSERT INTO public.notice VALUES (8017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692491220); INSERT INTO public.notice VALUES (8018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692491819); INSERT INTO public.notice VALUES (8019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692492419); INSERT INTO public.notice VALUES (8020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692493018); INSERT INTO public.notice VALUES (8021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692493620); INSERT INTO public.notice VALUES (8022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692494219); INSERT INTO public.notice VALUES (8023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692494819); INSERT INTO public.notice VALUES (8024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692495420); INSERT INTO public.notice VALUES (8025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692496019); INSERT INTO public.notice VALUES (8026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692496619); INSERT INTO public.notice VALUES (8027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692497218); INSERT INTO public.notice VALUES (8028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692497820); INSERT INTO public.notice VALUES (8029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692498420); INSERT INTO public.notice VALUES (8038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692503818); INSERT INTO public.notice VALUES (8039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692504420); INSERT INTO public.notice VALUES (8040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692505019); INSERT INTO public.notice VALUES (8041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692505619); INSERT INTO public.notice VALUES (9949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693651661); INSERT INTO public.notice VALUES (9950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693652260); INSERT INTO public.notice VALUES (9951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693652860); INSERT INTO public.notice VALUES (9952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693653462); INSERT INTO public.notice VALUES (9953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693654061); INSERT INTO public.notice VALUES (9954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693654660); INSERT INTO public.notice VALUES (9973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693666060); INSERT INTO public.notice VALUES (8030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692499019); INSERT INTO public.notice VALUES (8031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692499620); INSERT INTO public.notice VALUES (8032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692500220); INSERT INTO public.notice VALUES (8033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692500819); INSERT INTO public.notice VALUES (8034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692501419); INSERT INTO public.notice VALUES (8035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692502020); INSERT INTO public.notice VALUES (8036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692502619); INSERT INTO public.notice VALUES (8037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692503219); INSERT INTO public.notice VALUES (8042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692506220); INSERT INTO public.notice VALUES (8043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692506819); INSERT INTO public.notice VALUES (8044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692507419); INSERT INTO public.notice VALUES (8045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692508018); INSERT INTO public.notice VALUES (8046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692508620); INSERT INTO public.notice VALUES (8047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692509219); INSERT INTO public.notice VALUES (8048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692509819); INSERT INTO public.notice VALUES (8049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692510420); INSERT INTO public.notice VALUES (8050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692511020); INSERT INTO public.notice VALUES (8051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692511619); INSERT INTO public.notice VALUES (8052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692512219); INSERT INTO public.notice VALUES (8053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692512820); INSERT INTO public.notice VALUES (8054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692513419); INSERT INTO public.notice VALUES (8061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692517619); INSERT INTO public.notice VALUES (8062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692518219); INSERT INTO public.notice VALUES (9955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693655261); INSERT INTO public.notice VALUES (9956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693655861); INSERT INTO public.notice VALUES (9957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693656460); INSERT INTO public.notice VALUES (9958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693657060); INSERT INTO public.notice VALUES (9959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693657661); INSERT INTO public.notice VALUES (9960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693658261); INSERT INTO public.notice VALUES (9961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693658860); INSERT INTO public.notice VALUES (8055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692514019); INSERT INTO public.notice VALUES (8056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692514618); INSERT INTO public.notice VALUES (8057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692515220); INSERT INTO public.notice VALUES (8058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692515819); INSERT INTO public.notice VALUES (8059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692516419); INSERT INTO public.notice VALUES (8060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692517020); INSERT INTO public.notice VALUES (8063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692518820); INSERT INTO public.notice VALUES (8064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692519420); INSERT INTO public.notice VALUES (8065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692520019); INSERT INTO public.notice VALUES (8066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692520619); INSERT INTO public.notice VALUES (8067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692521221); INSERT INTO public.notice VALUES (8068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692521819); INSERT INTO public.notice VALUES (8069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692522419); INSERT INTO public.notice VALUES (8070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692523018); INSERT INTO public.notice VALUES (8071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692523620); INSERT INTO public.notice VALUES (8072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692524219); INSERT INTO public.notice VALUES (8073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692524819); INSERT INTO public.notice VALUES (8074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692525420); INSERT INTO public.notice VALUES (8075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692526020); INSERT INTO public.notice VALUES (8077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692527218); INSERT INTO public.notice VALUES (8078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692527820); INSERT INTO public.notice VALUES (8079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692528419); INSERT INTO public.notice VALUES (8080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692529019); INSERT INTO public.notice VALUES (8081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692529619); INSERT INTO public.notice VALUES (8082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692530221); INSERT INTO public.notice VALUES (8084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692531419); INSERT INTO public.notice VALUES (8085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692532020); INSERT INTO public.notice VALUES (8089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692534420); INSERT INTO public.notice VALUES (8090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692535020); INSERT INTO public.notice VALUES (8095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692538018); INSERT INTO public.notice VALUES (8076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692526619); INSERT INTO public.notice VALUES (8083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692530820); INSERT INTO public.notice VALUES (8086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692532619); INSERT INTO public.notice VALUES (8087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692533219); INSERT INTO public.notice VALUES (8088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692533818); INSERT INTO public.notice VALUES (8091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692535619); INSERT INTO public.notice VALUES (8092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692536220); INSERT INTO public.notice VALUES (8093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692536820); INSERT INTO public.notice VALUES (8094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692537419); INSERT INTO public.notice VALUES (9962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693659460); INSERT INTO public.notice VALUES (9963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693660061); INSERT INTO public.notice VALUES (9964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693660661); INSERT INTO public.notice VALUES (9965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693661260); INSERT INTO public.notice VALUES (9966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693661861); INSERT INTO public.notice VALUES (9967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693662461); INSERT INTO public.notice VALUES (8096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692538620); INSERT INTO public.notice VALUES (8097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692539219); INSERT INTO public.notice VALUES (8098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692539819); INSERT INTO public.notice VALUES (8099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692540420); INSERT INTO public.notice VALUES (8100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692541020); INSERT INTO public.notice VALUES (8101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692541619); INSERT INTO public.notice VALUES (8102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692542219); INSERT INTO public.notice VALUES (8103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692542820); INSERT INTO public.notice VALUES (8104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692543420); INSERT INTO public.notice VALUES (8105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692544020); INSERT INTO public.notice VALUES (8106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692544618); INSERT INTO public.notice VALUES (8107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692545220); INSERT INTO public.notice VALUES (8108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692545819); INSERT INTO public.notice VALUES (8109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692546419); INSERT INTO public.notice VALUES (8110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692547020); INSERT INTO public.notice VALUES (8111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692547620); INSERT INTO public.notice VALUES (8112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692548219); INSERT INTO public.notice VALUES (8113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692548819); INSERT INTO public.notice VALUES (8114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692549420); INSERT INTO public.notice VALUES (8115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692550019); INSERT INTO public.notice VALUES (8116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692550619); INSERT INTO public.notice VALUES (8117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692551220); INSERT INTO public.notice VALUES (8118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692551819); INSERT INTO public.notice VALUES (8119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692552419); INSERT INTO public.notice VALUES (8120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692553019); INSERT INTO public.notice VALUES (8121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692553619); INSERT INTO public.notice VALUES (8122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692554219); INSERT INTO public.notice VALUES (8123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692554819); INSERT INTO public.notice VALUES (8124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692555420); INSERT INTO public.notice VALUES (8125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692556020); INSERT INTO public.notice VALUES (8126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692556619); INSERT INTO public.notice VALUES (8127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692557219); INSERT INTO public.notice VALUES (8128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692557820); INSERT INTO public.notice VALUES (8129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692558419); INSERT INTO public.notice VALUES (8130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692559018); INSERT INTO public.notice VALUES (8131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692559621); INSERT INTO public.notice VALUES (8132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692560219); INSERT INTO public.notice VALUES (8133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692560819); INSERT INTO public.notice VALUES (8134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692561418); INSERT INTO public.notice VALUES (8135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692562020); INSERT INTO public.notice VALUES (8136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692562619); INSERT INTO public.notice VALUES (8137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692563219); INSERT INTO public.notice VALUES (8138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692563820); INSERT INTO public.notice VALUES (8139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692564419); INSERT INTO public.notice VALUES (8140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692565019); INSERT INTO public.notice VALUES (8141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692565619); INSERT INTO public.notice VALUES (8142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692566220); INSERT INTO public.notice VALUES (8143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692566819); INSERT INTO public.notice VALUES (8144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692567419); INSERT INTO public.notice VALUES (8146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692568620); INSERT INTO public.notice VALUES (8147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692569219); INSERT INTO public.notice VALUES (8148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692569818); INSERT INTO public.notice VALUES (8149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692570420); INSERT INTO public.notice VALUES (8160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692577020); INSERT INTO public.notice VALUES (8161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692577619); INSERT INTO public.notice VALUES (8180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692589019); INSERT INTO public.notice VALUES (9968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693663060); INSERT INTO public.notice VALUES (9969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693663660); INSERT INTO public.notice VALUES (9970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693664261); INSERT INTO public.notice VALUES (9971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693664861); INSERT INTO public.notice VALUES (8145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692568020); INSERT INTO public.notice VALUES (8150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692571019); INSERT INTO public.notice VALUES (8151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692571619); INSERT INTO public.notice VALUES (8152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692572218); INSERT INTO public.notice VALUES (8153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692572820); INSERT INTO public.notice VALUES (8154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692573419); INSERT INTO public.notice VALUES (8155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692574019); INSERT INTO public.notice VALUES (8156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692574620); INSERT INTO public.notice VALUES (8157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692575220); INSERT INTO public.notice VALUES (8158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692575819); INSERT INTO public.notice VALUES (8159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692576419); INSERT INTO public.notice VALUES (8162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692578219); INSERT INTO public.notice VALUES (8163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692578820); INSERT INTO public.notice VALUES (8164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692579420); INSERT INTO public.notice VALUES (8165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692580019); INSERT INTO public.notice VALUES (8166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692580620); INSERT INTO public.notice VALUES (8167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692581220); INSERT INTO public.notice VALUES (8168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692581819); INSERT INTO public.notice VALUES (8169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692582419); INSERT INTO public.notice VALUES (8170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692583020); INSERT INTO public.notice VALUES (8171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692583620); INSERT INTO public.notice VALUES (8172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692584219); INSERT INTO public.notice VALUES (8173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692584818); INSERT INTO public.notice VALUES (8174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692585420); INSERT INTO public.notice VALUES (8175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692586019); INSERT INTO public.notice VALUES (8176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692586620); INSERT INTO public.notice VALUES (8177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692587220); INSERT INTO public.notice VALUES (8178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692587820); INSERT INTO public.notice VALUES (8179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692588419); INSERT INTO public.notice VALUES (8181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692589620); INSERT INTO public.notice VALUES (8182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692590220); INSERT INTO public.notice VALUES (8183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692590819); INSERT INTO public.notice VALUES (8184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692591418); INSERT INTO public.notice VALUES (8185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692592020); INSERT INTO public.notice VALUES (8186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692592619); INSERT INTO public.notice VALUES (8187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692593219); INSERT INTO public.notice VALUES (8188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692593820); INSERT INTO public.notice VALUES (8189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692594419); INSERT INTO public.notice VALUES (8190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692595019); INSERT INTO public.notice VALUES (8191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692595618); INSERT INTO public.notice VALUES (8192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692596220); INSERT INTO public.notice VALUES (8193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692596819); INSERT INTO public.notice VALUES (8194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692597419); INSERT INTO public.notice VALUES (8195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692598020); INSERT INTO public.notice VALUES (8196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692598620); INSERT INTO public.notice VALUES (8197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692599219); INSERT INTO public.notice VALUES (8198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692599818); INSERT INTO public.notice VALUES (8199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692600420); INSERT INTO public.notice VALUES (8200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692601019); INSERT INTO public.notice VALUES (8201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692601619); INSERT INTO public.notice VALUES (8202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692602220); INSERT INTO public.notice VALUES (8203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692602820); INSERT INTO public.notice VALUES (8204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692603419); INSERT INTO public.notice VALUES (8205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692604019); INSERT INTO public.notice VALUES (8206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692604620); INSERT INTO public.notice VALUES (8207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692605219); INSERT INTO public.notice VALUES (8208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692605819); INSERT INTO public.notice VALUES (8209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692606420); INSERT INTO public.notice VALUES (8210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692607020); INSERT INTO public.notice VALUES (8211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692607619); INSERT INTO public.notice VALUES (8212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692608218); INSERT INTO public.notice VALUES (8213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692608820); INSERT INTO public.notice VALUES (8214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692609419); INSERT INTO public.notice VALUES (8215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692610019); INSERT INTO public.notice VALUES (8216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692610620); INSERT INTO public.notice VALUES (8217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692611220); INSERT INTO public.notice VALUES (8218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692611819); INSERT INTO public.notice VALUES (8221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692613619); INSERT INTO public.notice VALUES (8222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692614219); INSERT INTO public.notice VALUES (8223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692614818); INSERT INTO public.notice VALUES (8224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692615420); INSERT INTO public.notice VALUES (8225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692616019); INSERT INTO public.notice VALUES (8226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692616619); INSERT INTO public.notice VALUES (8227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692617220); INSERT INTO public.notice VALUES (8228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692617819); INSERT INTO public.notice VALUES (8219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692612419); INSERT INTO public.notice VALUES (8220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692613020); INSERT INTO public.notice VALUES (8277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692647220); INSERT INTO public.notice VALUES (9972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693665460); INSERT INTO public.notice VALUES (9975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693667261); INSERT INTO public.notice VALUES (9976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693667860); INSERT INTO public.notice VALUES (9977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693668462); INSERT INTO public.notice VALUES (9979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693669660); INSERT INTO public.notice VALUES (9980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693670260); INSERT INTO public.notice VALUES (9981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693670861); INSERT INTO public.notice VALUES (10135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693763260); INSERT INTO public.notice VALUES (10136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693763862); INSERT INTO public.notice VALUES (10137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693764461); INSERT INTO public.notice VALUES (10138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693765060); INSERT INTO public.notice VALUES (10139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693765660); INSERT INTO public.notice VALUES (8229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692618419); INSERT INTO public.notice VALUES (8230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692619018); INSERT INTO public.notice VALUES (8231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692619620); INSERT INTO public.notice VALUES (8232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692620219); INSERT INTO public.notice VALUES (8233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692620819); INSERT INTO public.notice VALUES (8234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692621420); INSERT INTO public.notice VALUES (8235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692622020); INSERT INTO public.notice VALUES (8236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692622619); INSERT INTO public.notice VALUES (8237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692623218); INSERT INTO public.notice VALUES (8238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692623821); INSERT INTO public.notice VALUES (8239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692624419); INSERT INTO public.notice VALUES (8240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692625020); INSERT INTO public.notice VALUES (8241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692625618); INSERT INTO public.notice VALUES (8242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692626220); INSERT INTO public.notice VALUES (8243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692626819); INSERT INTO public.notice VALUES (8244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692627419); INSERT INTO public.notice VALUES (8245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692628020); INSERT INTO public.notice VALUES (8246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692628620); INSERT INTO public.notice VALUES (8247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692629219); INSERT INTO public.notice VALUES (8248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692629818); INSERT INTO public.notice VALUES (8249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692630420); INSERT INTO public.notice VALUES (8250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692631019); INSERT INTO public.notice VALUES (8251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692631619); INSERT INTO public.notice VALUES (8252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692632220); INSERT INTO public.notice VALUES (8253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692632820); INSERT INTO public.notice VALUES (8254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692633419); INSERT INTO public.notice VALUES (8255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692634020); INSERT INTO public.notice VALUES (8256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692634620); INSERT INTO public.notice VALUES (8257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692635219); INSERT INTO public.notice VALUES (8258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692635819); INSERT INTO public.notice VALUES (8259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692636420); INSERT INTO public.notice VALUES (8260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692637020); INSERT INTO public.notice VALUES (8261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692637619); INSERT INTO public.notice VALUES (8262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692638219); INSERT INTO public.notice VALUES (8263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692638820); INSERT INTO public.notice VALUES (8264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692639420); INSERT INTO public.notice VALUES (8265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692640019); INSERT INTO public.notice VALUES (8266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692640618); INSERT INTO public.notice VALUES (8267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692641220); INSERT INTO public.notice VALUES (8268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692641819); INSERT INTO public.notice VALUES (8269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692642419); INSERT INTO public.notice VALUES (8270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692643020); INSERT INTO public.notice VALUES (8271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692643620); INSERT INTO public.notice VALUES (8272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692644219); INSERT INTO public.notice VALUES (8273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692644819); INSERT INTO public.notice VALUES (8274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692645420); INSERT INTO public.notice VALUES (8275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692646021); INSERT INTO public.notice VALUES (8276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692646619); INSERT INTO public.notice VALUES (8278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692647820); INSERT INTO public.notice VALUES (8279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692648419); INSERT INTO public.notice VALUES (8280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692649019); INSERT INTO public.notice VALUES (8281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692649620); INSERT INTO public.notice VALUES (8282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692650220); INSERT INTO public.notice VALUES (8283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692650819); INSERT INTO public.notice VALUES (8284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692651418); INSERT INTO public.notice VALUES (8285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692652020); INSERT INTO public.notice VALUES (8286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692652619); INSERT INTO public.notice VALUES (8287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692653219); INSERT INTO public.notice VALUES (8288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692653820); INSERT INTO public.notice VALUES (8289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692654420); INSERT INTO public.notice VALUES (8290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692655019); INSERT INTO public.notice VALUES (8291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692655618); INSERT INTO public.notice VALUES (8292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692656220); INSERT INTO public.notice VALUES (8293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692656819); INSERT INTO public.notice VALUES (8294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692657419); INSERT INTO public.notice VALUES (8295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692658020); INSERT INTO public.notice VALUES (8296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692658620); INSERT INTO public.notice VALUES (8297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692659219); INSERT INTO public.notice VALUES (8298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692659818); INSERT INTO public.notice VALUES (8299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692660420); INSERT INTO public.notice VALUES (8300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692661019); INSERT INTO public.notice VALUES (8301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692661619); INSERT INTO public.notice VALUES (8302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692662220); INSERT INTO public.notice VALUES (8303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692662820); INSERT INTO public.notice VALUES (8310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692667020); INSERT INTO public.notice VALUES (8304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692663419); INSERT INTO public.notice VALUES (8305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692664019); INSERT INTO public.notice VALUES (8306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692664620); INSERT INTO public.notice VALUES (8307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692665219); INSERT INTO public.notice VALUES (8308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692665819); INSERT INTO public.notice VALUES (8309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692666418); INSERT INTO public.notice VALUES (8311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692667620); INSERT INTO public.notice VALUES (8312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692668219); INSERT INTO public.notice VALUES (8315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692670019); INSERT INTO public.notice VALUES (8319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692672419); INSERT INTO public.notice VALUES (8321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692673620); INSERT INTO public.notice VALUES (8322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692674219); INSERT INTO public.notice VALUES (8323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692674819); INSERT INTO public.notice VALUES (8324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692675421); INSERT INTO public.notice VALUES (8325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692676020); INSERT INTO public.notice VALUES (8313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692668820); INSERT INTO public.notice VALUES (8314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692669420); INSERT INTO public.notice VALUES (8316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692670618); INSERT INTO public.notice VALUES (8317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692671220); INSERT INTO public.notice VALUES (8318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692671820); INSERT INTO public.notice VALUES (8320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692673020); INSERT INTO public.notice VALUES (8334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692681418); INSERT INTO public.notice VALUES (9974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693666661); INSERT INTO public.notice VALUES (9978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693669061); INSERT INTO public.notice VALUES (10142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693767460); INSERT INTO public.notice VALUES (10143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693768059); INSERT INTO public.notice VALUES (10144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693768661); INSERT INTO public.notice VALUES (10145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693769261); INSERT INTO public.notice VALUES (10146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693769860); INSERT INTO public.notice VALUES (10147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693770461); INSERT INTO public.notice VALUES (8326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692676619); INSERT INTO public.notice VALUES (8327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692677221); INSERT INTO public.notice VALUES (8328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692677820); INSERT INTO public.notice VALUES (8329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692678419); INSERT INTO public.notice VALUES (8330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692679019); INSERT INTO public.notice VALUES (8331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692679620); INSERT INTO public.notice VALUES (8332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692680219); INSERT INTO public.notice VALUES (8333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692680819); INSERT INTO public.notice VALUES (8335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692682020); INSERT INTO public.notice VALUES (8336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692682619); INSERT INTO public.notice VALUES (8337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692683219); INSERT INTO public.notice VALUES (8338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692683820); INSERT INTO public.notice VALUES (8339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692684420); INSERT INTO public.notice VALUES (8340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692685019); INSERT INTO public.notice VALUES (8341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692685618); INSERT INTO public.notice VALUES (8342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692686220); INSERT INTO public.notice VALUES (8378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692707820); INSERT INTO public.notice VALUES (8379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692708419); INSERT INTO public.notice VALUES (8380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692709019); INSERT INTO public.notice VALUES (8381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692709620); INSERT INTO public.notice VALUES (8382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692710219); INSERT INTO public.notice VALUES (8383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692710819); INSERT INTO public.notice VALUES (9982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693671460); INSERT INTO public.notice VALUES (9983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693672060); INSERT INTO public.notice VALUES (9984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693672662); INSERT INTO public.notice VALUES (9985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693673261); INSERT INTO public.notice VALUES (9986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693673860); INSERT INTO public.notice VALUES (9996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693679861); INSERT INTO public.notice VALUES (10011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693688860); INSERT INTO public.notice VALUES (10012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693689460); INSERT INTO public.notice VALUES (8343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692686819); INSERT INTO public.notice VALUES (8344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692687419); INSERT INTO public.notice VALUES (8345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692688020); INSERT INTO public.notice VALUES (8346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692688620); INSERT INTO public.notice VALUES (8347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692689219); INSERT INTO public.notice VALUES (8348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692689819); INSERT INTO public.notice VALUES (8349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692690421); INSERT INTO public.notice VALUES (8350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692691019); INSERT INTO public.notice VALUES (8351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692691619); INSERT INTO public.notice VALUES (8352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692692220); INSERT INTO public.notice VALUES (8353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692692821); INSERT INTO public.notice VALUES (8354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692693419); INSERT INTO public.notice VALUES (8355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692694018); INSERT INTO public.notice VALUES (8356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692694620); INSERT INTO public.notice VALUES (8357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692695219); INSERT INTO public.notice VALUES (8358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692695819); INSERT INTO public.notice VALUES (8359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692696420); INSERT INTO public.notice VALUES (8360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692697020); INSERT INTO public.notice VALUES (8361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692697619); INSERT INTO public.notice VALUES (8362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692698219); INSERT INTO public.notice VALUES (8363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692698820); INSERT INTO public.notice VALUES (8364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692699419); INSERT INTO public.notice VALUES (8365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692700019); INSERT INTO public.notice VALUES (8366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692700618); INSERT INTO public.notice VALUES (8367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692701220); INSERT INTO public.notice VALUES (8368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692701819); INSERT INTO public.notice VALUES (8369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692702420); INSERT INTO public.notice VALUES (8370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692703021); INSERT INTO public.notice VALUES (8371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692703620); INSERT INTO public.notice VALUES (8372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692704219); INSERT INTO public.notice VALUES (8373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692704819); INSERT INTO public.notice VALUES (8374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692705420); INSERT INTO public.notice VALUES (8375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692706019); INSERT INTO public.notice VALUES (8376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692706619); INSERT INTO public.notice VALUES (8377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692707220); INSERT INTO public.notice VALUES (8384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692711421); INSERT INTO public.notice VALUES (8385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692712020); INSERT INTO public.notice VALUES (8386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692712619); INSERT INTO public.notice VALUES (8387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692713219); INSERT INTO public.notice VALUES (8388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692713820); INSERT INTO public.notice VALUES (8389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692714420); INSERT INTO public.notice VALUES (8390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692715019); INSERT INTO public.notice VALUES (8391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692715619); INSERT INTO public.notice VALUES (8392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692716220); INSERT INTO public.notice VALUES (8393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692716819); INSERT INTO public.notice VALUES (8394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692717419); INSERT INTO public.notice VALUES (8395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692718021); INSERT INTO public.notice VALUES (8400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692721019); INSERT INTO public.notice VALUES (8401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692721619); INSERT INTO public.notice VALUES (8418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692731820); INSERT INTO public.notice VALUES (8419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692732419); INSERT INTO public.notice VALUES (8420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692733020); INSERT INTO public.notice VALUES (9987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693674460); INSERT INTO public.notice VALUES (9988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693675061); INSERT INTO public.notice VALUES (10148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693771061); INSERT INTO public.notice VALUES (10149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693771660); INSERT INTO public.notice VALUES (10230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693820261); INSERT INTO public.notice VALUES (10231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693820861); INSERT INTO public.notice VALUES (10232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693821460); INSERT INTO public.notice VALUES (10248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693831061); INSERT INTO public.notice VALUES (8396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692718620); INSERT INTO public.notice VALUES (8397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692719219); INSERT INTO public.notice VALUES (8398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692719819); INSERT INTO public.notice VALUES (8399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692720420); INSERT INTO public.notice VALUES (8402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692722220); INSERT INTO public.notice VALUES (8403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692722820); INSERT INTO public.notice VALUES (8404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692723419); INSERT INTO public.notice VALUES (8405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692724019); INSERT INTO public.notice VALUES (8406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692724620); INSERT INTO public.notice VALUES (8407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692725220); INSERT INTO public.notice VALUES (8408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692725819); INSERT INTO public.notice VALUES (8409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692726421); INSERT INTO public.notice VALUES (8410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692727020); INSERT INTO public.notice VALUES (8411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692727619); INSERT INTO public.notice VALUES (8412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692728219); INSERT INTO public.notice VALUES (12173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com ', 1694986794); INSERT INTO public.notice VALUES (8413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692728820); INSERT INTO public.notice VALUES (8414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692729420); INSERT INTO public.notice VALUES (8415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692730019); INSERT INTO public.notice VALUES (8416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692730618); INSERT INTO public.notice VALUES (8417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692731220); INSERT INTO public.notice VALUES (8421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692733620); INSERT INTO public.notice VALUES (8422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692734219); INSERT INTO public.notice VALUES (8423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692734819); INSERT INTO public.notice VALUES (8424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692735420); INSERT INTO public.notice VALUES (8425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692736020); INSERT INTO public.notice VALUES (8426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692736619); INSERT INTO public.notice VALUES (8427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692737218); INSERT INTO public.notice VALUES (8428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692737820); INSERT INTO public.notice VALUES (8429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692738419); INSERT INTO public.notice VALUES (8430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692739019); INSERT INTO public.notice VALUES (8431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692739620); INSERT INTO public.notice VALUES (8432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692740220); INSERT INTO public.notice VALUES (8433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692740819); INSERT INTO public.notice VALUES (8434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692741418); INSERT INTO public.notice VALUES (8435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692742020); INSERT INTO public.notice VALUES (8436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692742619); INSERT INTO public.notice VALUES (8437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692743219); INSERT INTO public.notice VALUES (8438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692743820); INSERT INTO public.notice VALUES (8439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692744420); INSERT INTO public.notice VALUES (8440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692745019); INSERT INTO public.notice VALUES (8441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692745619); INSERT INTO public.notice VALUES (8442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692746220); INSERT INTO public.notice VALUES (8443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692746819); INSERT INTO public.notice VALUES (8444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692747419); INSERT INTO public.notice VALUES (8445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692748018); INSERT INTO public.notice VALUES (8446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692748620); INSERT INTO public.notice VALUES (8447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692749220); INSERT INTO public.notice VALUES (8463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692758818); INSERT INTO public.notice VALUES (8464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692759420); INSERT INTO public.notice VALUES (8465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692760019); INSERT INTO public.notice VALUES (9989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693675661); INSERT INTO public.notice VALUES (9990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693676260); INSERT INTO public.notice VALUES (9991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693676859); INSERT INTO public.notice VALUES (9992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693677461); INSERT INTO public.notice VALUES (9993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693678060); INSERT INTO public.notice VALUES (9994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693678660); INSERT INTO public.notice VALUES (9995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693679261); INSERT INTO public.notice VALUES (9997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693680460); INSERT INTO public.notice VALUES (9998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693681060); INSERT INTO public.notice VALUES (9999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693681661); INSERT INTO public.notice VALUES (8448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692749819); INSERT INTO public.notice VALUES (8449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692750420); INSERT INTO public.notice VALUES (8450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692751020); INSERT INTO public.notice VALUES (8451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692751619); INSERT INTO public.notice VALUES (8452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692752219); INSERT INTO public.notice VALUES (8453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692752820); INSERT INTO public.notice VALUES (8454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692753419); INSERT INTO public.notice VALUES (8455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692754019); INSERT INTO public.notice VALUES (8456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692754620); INSERT INTO public.notice VALUES (8457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692755220); INSERT INTO public.notice VALUES (8458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692755819); INSERT INTO public.notice VALUES (8459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692756419); INSERT INTO public.notice VALUES (8460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692757020); INSERT INTO public.notice VALUES (8461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692757619); INSERT INTO public.notice VALUES (8462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692758220); INSERT INTO public.notice VALUES (8466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692760619); INSERT INTO public.notice VALUES (8467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692761220); INSERT INTO public.notice VALUES (8468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692761819); INSERT INTO public.notice VALUES (8469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692762419); INSERT INTO public.notice VALUES (8470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692763021); INSERT INTO public.notice VALUES (8471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692763621); INSERT INTO public.notice VALUES (8472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692764220); INSERT INTO public.notice VALUES (8473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692764819); INSERT INTO public.notice VALUES (8474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692765420); INSERT INTO public.notice VALUES (8475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692766020); INSERT INTO public.notice VALUES (8476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692766619); INSERT INTO public.notice VALUES (8477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692767218); INSERT INTO public.notice VALUES (8478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692767821); INSERT INTO public.notice VALUES (8479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692768419); INSERT INTO public.notice VALUES (8480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692769019); INSERT INTO public.notice VALUES (8481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692769619); INSERT INTO public.notice VALUES (8482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692770220); INSERT INTO public.notice VALUES (8483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692770819); INSERT INTO public.notice VALUES (8484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692771419); INSERT INTO public.notice VALUES (8485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692772021); INSERT INTO public.notice VALUES (8486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692772619); INSERT INTO public.notice VALUES (8487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692773219); INSERT INTO public.notice VALUES (8488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692773818); INSERT INTO public.notice VALUES (8489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692774420); INSERT INTO public.notice VALUES (8490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692775019); INSERT INTO public.notice VALUES (8495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692778018); INSERT INTO public.notice VALUES (8496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692778620); INSERT INTO public.notice VALUES (8497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692779219); INSERT INTO public.notice VALUES (10000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693682261); INSERT INTO public.notice VALUES (10001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693682860); INSERT INTO public.notice VALUES (8491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692775619); INSERT INTO public.notice VALUES (8492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692776220); INSERT INTO public.notice VALUES (8493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692776820); INSERT INTO public.notice VALUES (8494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692777419); INSERT INTO public.notice VALUES (8498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692779819); INSERT INTO public.notice VALUES (8499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692780420); INSERT INTO public.notice VALUES (8500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692781020); INSERT INTO public.notice VALUES (8501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692781619); INSERT INTO public.notice VALUES (8502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692782219); INSERT INTO public.notice VALUES (8503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692782820); INSERT INTO public.notice VALUES (8504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692783419); INSERT INTO public.notice VALUES (8505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692784019); INSERT INTO public.notice VALUES (8506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692784620); INSERT INTO public.notice VALUES (8507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692785220); INSERT INTO public.notice VALUES (8508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692785819); INSERT INTO public.notice VALUES (8509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692786419); INSERT INTO public.notice VALUES (8510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692787020); INSERT INTO public.notice VALUES (8511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692787619); INSERT INTO public.notice VALUES (8512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692788219); INSERT INTO public.notice VALUES (8513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692788818); INSERT INTO public.notice VALUES (8514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692789420); INSERT INTO public.notice VALUES (8515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692790019); INSERT INTO public.notice VALUES (8516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692790619); INSERT INTO public.notice VALUES (8517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692791220); INSERT INTO public.notice VALUES (8518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692791820); INSERT INTO public.notice VALUES (8519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692792419); INSERT INTO public.notice VALUES (8520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692793019); INSERT INTO public.notice VALUES (8521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692793620); INSERT INTO public.notice VALUES (8522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692794219); INSERT INTO public.notice VALUES (8523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692794819); INSERT INTO public.notice VALUES (8524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692795419); INSERT INTO public.notice VALUES (8525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692796020); INSERT INTO public.notice VALUES (8526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692796619); INSERT INTO public.notice VALUES (8527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692797219); INSERT INTO public.notice VALUES (8535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692802020); INSERT INTO public.notice VALUES (8537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692803219); INSERT INTO public.notice VALUES (10002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693683459); INSERT INTO public.notice VALUES (10003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693684061); INSERT INTO public.notice VALUES (10004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693684660); INSERT INTO public.notice VALUES (10005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693685260); INSERT INTO public.notice VALUES (10006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693685861); INSERT INTO public.notice VALUES (10007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693686461); INSERT INTO public.notice VALUES (10008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693687060); INSERT INTO public.notice VALUES (10009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693687660); INSERT INTO public.notice VALUES (10010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693688261); INSERT INTO public.notice VALUES (8528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692797820); INSERT INTO public.notice VALUES (8529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692798420); INSERT INTO public.notice VALUES (8530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692799019); INSERT INTO public.notice VALUES (8531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692799618); INSERT INTO public.notice VALUES (8532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692800220); INSERT INTO public.notice VALUES (8533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692800819); INSERT INTO public.notice VALUES (8534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692801419); INSERT INTO public.notice VALUES (8536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692802620); INSERT INTO public.notice VALUES (8538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692803819); INSERT INTO public.notice VALUES (8539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692804420); INSERT INTO public.notice VALUES (8540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692805019); INSERT INTO public.notice VALUES (8541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692805619); INSERT INTO public.notice VALUES (8542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692806220); INSERT INTO public.notice VALUES (8543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692806820); INSERT INTO public.notice VALUES (8544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692807419); INSERT INTO public.notice VALUES (8545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692808019); INSERT INTO public.notice VALUES (8546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692808620); INSERT INTO public.notice VALUES (8547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692809219); INSERT INTO public.notice VALUES (8548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692809819); INSERT INTO public.notice VALUES (8549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692810418); INSERT INTO public.notice VALUES (8550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692811020); INSERT INTO public.notice VALUES (8551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692811619); INSERT INTO public.notice VALUES (8552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692812219); INSERT INTO public.notice VALUES (8553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692812820); INSERT INTO public.notice VALUES (8554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692813420); INSERT INTO public.notice VALUES (8555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692814019); INSERT INTO public.notice VALUES (8556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692814621); INSERT INTO public.notice VALUES (8557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692815220); INSERT INTO public.notice VALUES (8558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692815819); INSERT INTO public.notice VALUES (8559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692816419); INSERT INTO public.notice VALUES (8560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692817020); INSERT INTO public.notice VALUES (8561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692817620); INSERT INTO public.notice VALUES (8562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692818220); INSERT INTO public.notice VALUES (8574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692825420); INSERT INTO public.notice VALUES (10013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693690062); INSERT INTO public.notice VALUES (10014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693690661); INSERT INTO public.notice VALUES (10016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693691860); INSERT INTO public.notice VALUES (10017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693692461); INSERT INTO public.notice VALUES (10018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693693061); INSERT INTO public.notice VALUES (10019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693693661); INSERT INTO public.notice VALUES (10020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693694259); INSERT INTO public.notice VALUES (10021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693694861); INSERT INTO public.notice VALUES (10022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693695460); INSERT INTO public.notice VALUES (10150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693772260); INSERT INTO public.notice VALUES (10151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693772861); INSERT INTO public.notice VALUES (8563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692818818); INSERT INTO public.notice VALUES (8564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692819420); INSERT INTO public.notice VALUES (8565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692820020); INSERT INTO public.notice VALUES (8566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692820619); INSERT INTO public.notice VALUES (8567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692821220); INSERT INTO public.notice VALUES (8568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692821820); INSERT INTO public.notice VALUES (8569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692822419); INSERT INTO public.notice VALUES (8570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692823019); INSERT INTO public.notice VALUES (8571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692823621); INSERT INTO public.notice VALUES (8572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692824220); INSERT INTO public.notice VALUES (8573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692824819); INSERT INTO public.notice VALUES (8575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692826020); INSERT INTO public.notice VALUES (8576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692826619); INSERT INTO public.notice VALUES (8577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692827219); INSERT INTO public.notice VALUES (8578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692827820); INSERT INTO public.notice VALUES (8579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692828419); INSERT INTO public.notice VALUES (8581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692829618); INSERT INTO public.notice VALUES (8582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692830221); INSERT INTO public.notice VALUES (8583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692830819); INSERT INTO public.notice VALUES (8584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692831419); INSERT INTO public.notice VALUES (8585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692832020); INSERT INTO public.notice VALUES (8586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692832620); INSERT INTO public.notice VALUES (8587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692833219); INSERT INTO public.notice VALUES (10015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693691260); INSERT INTO public.notice VALUES (10028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693699061); INSERT INTO public.notice VALUES (10029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693699661); INSERT INTO public.notice VALUES (10030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693700260); INSERT INTO public.notice VALUES (10031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693700861); INSERT INTO public.notice VALUES (10032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693701461); INSERT INTO public.notice VALUES (10033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693702060); INSERT INTO public.notice VALUES (8580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692829019); INSERT INTO public.notice VALUES (8588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692833819); INSERT INTO public.notice VALUES (8589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692834420); INSERT INTO public.notice VALUES (8590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692835020); INSERT INTO public.notice VALUES (8591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692835619); INSERT INTO public.notice VALUES (8592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692836218); INSERT INTO public.notice VALUES (8593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692836820); INSERT INTO public.notice VALUES (8594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692837419); INSERT INTO public.notice VALUES (8595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692838019); INSERT INTO public.notice VALUES (8596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692838620); INSERT INTO public.notice VALUES (8597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692839220); INSERT INTO public.notice VALUES (8598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692839819); INSERT INTO public.notice VALUES (8599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692840418); INSERT INTO public.notice VALUES (8600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692841020); INSERT INTO public.notice VALUES (8601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692841619); INSERT INTO public.notice VALUES (8602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692842219); INSERT INTO public.notice VALUES (8606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692844619); INSERT INTO public.notice VALUES (8607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692845220); INSERT INTO public.notice VALUES (10023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693696060); INSERT INTO public.notice VALUES (10024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693696661); INSERT INTO public.notice VALUES (10152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693773460); INSERT INTO public.notice VALUES (10154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693774662); INSERT INTO public.notice VALUES (10234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693822662); INSERT INTO public.notice VALUES (10235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693823261); INSERT INTO public.notice VALUES (10236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693823860); INSERT INTO public.notice VALUES (10237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693824461); INSERT INTO public.notice VALUES (10238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693825061); INSERT INTO public.notice VALUES (10239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693825660); INSERT INTO public.notice VALUES (10240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693826261); INSERT INTO public.notice VALUES (10241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693826861); INSERT INTO public.notice VALUES (8603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692842820); INSERT INTO public.notice VALUES (8604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692843420); INSERT INTO public.notice VALUES (8605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692844019); INSERT INTO public.notice VALUES (8608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692845820); INSERT INTO public.notice VALUES (8609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692846419); INSERT INTO public.notice VALUES (8610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692847018); INSERT INTO public.notice VALUES (8611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692847620); INSERT INTO public.notice VALUES (8612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692848219); INSERT INTO public.notice VALUES (8613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692848819); INSERT INTO public.notice VALUES (8614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692849420); INSERT INTO public.notice VALUES (8615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692850020); INSERT INTO public.notice VALUES (8616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692850965); INSERT INTO public.notice VALUES (8617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692851564); INSERT INTO public.notice VALUES (8618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692852163); INSERT INTO public.notice VALUES (8619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692852763); INSERT INTO public.notice VALUES (8620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692853364); INSERT INTO public.notice VALUES (8621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692853964); INSERT INTO public.notice VALUES (8622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692854563); INSERT INTO public.notice VALUES (8623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692855165); INSERT INTO public.notice VALUES (8624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692855764); INSERT INTO public.notice VALUES (8625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692856363); INSERT INTO public.notice VALUES (8626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692856963); INSERT INTO public.notice VALUES (8627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692857564); INSERT INTO public.notice VALUES (8628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692858164); INSERT INTO public.notice VALUES (8629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692858763); INSERT INTO public.notice VALUES (8630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692859363); INSERT INTO public.notice VALUES (8631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692859964); INSERT INTO public.notice VALUES (8632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692860563); INSERT INTO public.notice VALUES (8633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692861163); INSERT INTO public.notice VALUES (8634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692861764); INSERT INTO public.notice VALUES (8635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692862364); INSERT INTO public.notice VALUES (8636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692862963); INSERT INTO public.notice VALUES (8637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692863563); INSERT INTO public.notice VALUES (8638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692864164); INSERT INTO public.notice VALUES (8639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692864763); INSERT INTO public.notice VALUES (8640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692865363); INSERT INTO public.notice VALUES (8641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692865964); INSERT INTO public.notice VALUES (8642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692866564); INSERT INTO public.notice VALUES (8643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692867163); INSERT INTO public.notice VALUES (8644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692867763); INSERT INTO public.notice VALUES (8645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692868364); INSERT INTO public.notice VALUES (8646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692868964); INSERT INTO public.notice VALUES (8647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692869563); INSERT INTO public.notice VALUES (8648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692870162); INSERT INTO public.notice VALUES (8649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692870764); INSERT INTO public.notice VALUES (8650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692871363); INSERT INTO public.notice VALUES (8660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692877364); INSERT INTO public.notice VALUES (8661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692877963); INSERT INTO public.notice VALUES (8662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692878563); INSERT INTO public.notice VALUES (8677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692887566); INSERT INTO public.notice VALUES (8678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692888164); INSERT INTO public.notice VALUES (8679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692888763); INSERT INTO public.notice VALUES (8680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692889363); INSERT INTO public.notice VALUES (8687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692893563); INSERT INTO public.notice VALUES (8689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692894764); INSERT INTO public.notice VALUES (8690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692895363); INSERT INTO public.notice VALUES (8691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692895962); INSERT INTO public.notice VALUES (8692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692896564); INSERT INTO public.notice VALUES (8693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692897163); INSERT INTO public.notice VALUES (8694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692897763); INSERT INTO public.notice VALUES (8651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692871963); INSERT INTO public.notice VALUES (8652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692872564); INSERT INTO public.notice VALUES (8653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692873164); INSERT INTO public.notice VALUES (8654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692873763); INSERT INTO public.notice VALUES (8655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692874362); INSERT INTO public.notice VALUES (8656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692874964); INSERT INTO public.notice VALUES (8657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692875564); INSERT INTO public.notice VALUES (8658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692876163); INSERT INTO public.notice VALUES (8659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692876764); INSERT INTO public.notice VALUES (8663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692879164); INSERT INTO public.notice VALUES (8664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692879763); INSERT INTO public.notice VALUES (8665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692880363); INSERT INTO public.notice VALUES (8666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692880964); INSERT INTO public.notice VALUES (8667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692881564); INSERT INTO public.notice VALUES (8668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692882163); INSERT INTO public.notice VALUES (8669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692882763); INSERT INTO public.notice VALUES (8670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692883364); INSERT INTO public.notice VALUES (8671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692883964); INSERT INTO public.notice VALUES (8672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692884563); INSERT INTO public.notice VALUES (8673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692885163); INSERT INTO public.notice VALUES (8674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692885764); INSERT INTO public.notice VALUES (8675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692886363); INSERT INTO public.notice VALUES (8676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692886963); INSERT INTO public.notice VALUES (8681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692889964); INSERT INTO public.notice VALUES (8682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692890563); INSERT INTO public.notice VALUES (8683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692891163); INSERT INTO public.notice VALUES (8684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692891765); INSERT INTO public.notice VALUES (8685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692892364); INSERT INTO public.notice VALUES (8686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692892963); INSERT INTO public.notice VALUES (8688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692894164); INSERT INTO public.notice VALUES (8695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692898364); INSERT INTO public.notice VALUES (8696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692898964); INSERT INTO public.notice VALUES (8697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692899563); INSERT INTO public.notice VALUES (10025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693697261); INSERT INTO public.notice VALUES (10026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693697860); INSERT INTO public.notice VALUES (10027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693698460); INSERT INTO public.notice VALUES (10044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693708660); INSERT INTO public.notice VALUES (10045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693709259); INSERT INTO public.notice VALUES (10046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693709861); INSERT INTO public.notice VALUES (10047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693710460); INSERT INTO public.notice VALUES (10048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693711060); INSERT INTO public.notice VALUES (10049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693711661); INSERT INTO public.notice VALUES (10050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693712261); INSERT INTO public.notice VALUES (10051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693712860); INSERT INTO public.notice VALUES (10060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693718261); INSERT INTO public.notice VALUES (8698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692900162); INSERT INTO public.notice VALUES (8699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692900764); INSERT INTO public.notice VALUES (8700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692901363); INSERT INTO public.notice VALUES (8701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692901963); INSERT INTO public.notice VALUES (8702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692902564); INSERT INTO public.notice VALUES (8703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692903163); INSERT INTO public.notice VALUES (8704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692903763); INSERT INTO public.notice VALUES (8705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692904362); INSERT INTO public.notice VALUES (8706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692904964); INSERT INTO public.notice VALUES (8707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692905564); INSERT INTO public.notice VALUES (8708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692906163); INSERT INTO public.notice VALUES (8709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692906762); INSERT INTO public.notice VALUES (8710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692907364); INSERT INTO public.notice VALUES (8711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692907963); INSERT INTO public.notice VALUES (8712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692908563); INSERT INTO public.notice VALUES (8713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692909164); INSERT INTO public.notice VALUES (8714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692909764); INSERT INTO public.notice VALUES (8715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692910363); INSERT INTO public.notice VALUES (8716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692910963); INSERT INTO public.notice VALUES (8717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692911564); INSERT INTO public.notice VALUES (8718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692912163); INSERT INTO public.notice VALUES (8719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692912763); INSERT INTO public.notice VALUES (8720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692913362); INSERT INTO public.notice VALUES (8721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692913964); INSERT INTO public.notice VALUES (8730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692919363); INSERT INTO public.notice VALUES (8731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692919962); INSERT INTO public.notice VALUES (8732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692920564); INSERT INTO public.notice VALUES (8733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692921163); INSERT INTO public.notice VALUES (8734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692921763); INSERT INTO public.notice VALUES (10034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693702660); INSERT INTO public.notice VALUES (8722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692914563); INSERT INTO public.notice VALUES (8723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692915163); INSERT INTO public.notice VALUES (8724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692915764); INSERT INTO public.notice VALUES (8725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692916363); INSERT INTO public.notice VALUES (8726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692916963); INSERT INTO public.notice VALUES (8727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692917563); INSERT INTO public.notice VALUES (8728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692918164); INSERT INTO public.notice VALUES (8729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692918763); INSERT INTO public.notice VALUES (8735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692922364); INSERT INTO public.notice VALUES (8736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692922964); INSERT INTO public.notice VALUES (8737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692923563); INSERT INTO public.notice VALUES (8738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692924162); INSERT INTO public.notice VALUES (8739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692924764); INSERT INTO public.notice VALUES (8740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692925363); INSERT INTO public.notice VALUES (8741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692926095); INSERT INTO public.notice VALUES (8742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692927105); INSERT INTO public.notice VALUES (8743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692927704); INSERT INTO public.notice VALUES (8744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692928304); INSERT INTO public.notice VALUES (8745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692928905); INSERT INTO public.notice VALUES (8746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692929504); INSERT INTO public.notice VALUES (8747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692930104); INSERT INTO public.notice VALUES (8748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692930703); INSERT INTO public.notice VALUES (8749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692931305); INSERT INTO public.notice VALUES (8750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692931905); INSERT INTO public.notice VALUES (8751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692932504); INSERT INTO public.notice VALUES (8752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692933106); INSERT INTO public.notice VALUES (8753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692933704); INSERT INTO public.notice VALUES (8754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692934304); INSERT INTO public.notice VALUES (8755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692934904); INSERT INTO public.notice VALUES (8756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692935505); INSERT INTO public.notice VALUES (8757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692936104); INSERT INTO public.notice VALUES (8758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692936704); INSERT INTO public.notice VALUES (8760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692937905); INSERT INTO public.notice VALUES (8761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692938504); INSERT INTO public.notice VALUES (10035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693703261); INSERT INTO public.notice VALUES (10036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693703861); INSERT INTO public.notice VALUES (10037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693704460); INSERT INTO public.notice VALUES (10038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693705060); INSERT INTO public.notice VALUES (10039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693705661); INSERT INTO public.notice VALUES (10155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693775261); INSERT INTO public.notice VALUES (10158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693777061); INSERT INTO public.notice VALUES (10161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693778859); INSERT INTO public.notice VALUES (10242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693827461); INSERT INTO public.notice VALUES (10243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693828060); INSERT INTO public.notice VALUES (10244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693828660); INSERT INTO public.notice VALUES (8759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692937305); INSERT INTO public.notice VALUES (8762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692939104); INSERT INTO public.notice VALUES (8763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692939705); INSERT INTO public.notice VALUES (8764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692940305); INSERT INTO public.notice VALUES (8765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692940905); INSERT INTO public.notice VALUES (8766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692941504); INSERT INTO public.notice VALUES (8767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692942105); INSERT INTO public.notice VALUES (8768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692942704); INSERT INTO public.notice VALUES (8769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692943304); INSERT INTO public.notice VALUES (8770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692943905); INSERT INTO public.notice VALUES (8771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692944505); INSERT INTO public.notice VALUES (8772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692945104); INSERT INTO public.notice VALUES (8773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692945704); INSERT INTO public.notice VALUES (8774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692946305); INSERT INTO public.notice VALUES (8775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692946905); INSERT INTO public.notice VALUES (10159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com ', 1693777670); INSERT INTO public.notice VALUES (8776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692947504); INSERT INTO public.notice VALUES (8777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692948105); INSERT INTO public.notice VALUES (8778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692948705); INSERT INTO public.notice VALUES (8779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692949304); INSERT INTO public.notice VALUES (8780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692949904); INSERT INTO public.notice VALUES (8781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692950505); INSERT INTO public.notice VALUES (8782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692951105); INSERT INTO public.notice VALUES (8783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692951704); INSERT INTO public.notice VALUES (8784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692952303); INSERT INTO public.notice VALUES (8785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692952905); INSERT INTO public.notice VALUES (8786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692953505); INSERT INTO public.notice VALUES (8787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692954104); INSERT INTO public.notice VALUES (8788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692954703); INSERT INTO public.notice VALUES (8789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692955305); INSERT INTO public.notice VALUES (8790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692955904); INSERT INTO public.notice VALUES (8791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692956504); INSERT INTO public.notice VALUES (8792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692957105); INSERT INTO public.notice VALUES (8793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692957705); INSERT INTO public.notice VALUES (8794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692958304); INSERT INTO public.notice VALUES (8795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692958903); INSERT INTO public.notice VALUES (8802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692963104); INSERT INTO public.notice VALUES (8803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692963705); INSERT INTO public.notice VALUES (8805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692964904); INSERT INTO public.notice VALUES (8806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692965503); INSERT INTO public.notice VALUES (8807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692966105); INSERT INTO public.notice VALUES (8808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692966705); INSERT INTO public.notice VALUES (8809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692967304); INSERT INTO public.notice VALUES (8810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692967905); INSERT INTO public.notice VALUES (8811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692968505); INSERT INTO public.notice VALUES (8828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692978703); INSERT INTO public.notice VALUES (8796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692959505); INSERT INTO public.notice VALUES (8797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692960104); INSERT INTO public.notice VALUES (8798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692960704); INSERT INTO public.notice VALUES (8799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692961305); INSERT INTO public.notice VALUES (8800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692961905); INSERT INTO public.notice VALUES (8801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692962504); INSERT INTO public.notice VALUES (8804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692964304); INSERT INTO public.notice VALUES (8812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692969105); INSERT INTO public.notice VALUES (8813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692969704); INSERT INTO public.notice VALUES (8814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692970305); INSERT INTO public.notice VALUES (8815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692970905); INSERT INTO public.notice VALUES (8816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692971504); INSERT INTO public.notice VALUES (8817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692972105); INSERT INTO public.notice VALUES (8818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692972705); INSERT INTO public.notice VALUES (8819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692973304); INSERT INTO public.notice VALUES (8820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692973904); INSERT INTO public.notice VALUES (8821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692974505); INSERT INTO public.notice VALUES (8822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692975105); INSERT INTO public.notice VALUES (8823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692975704); INSERT INTO public.notice VALUES (8824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692976303); INSERT INTO public.notice VALUES (8825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692976905); INSERT INTO public.notice VALUES (8826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692977504); INSERT INTO public.notice VALUES (8827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692978104); INSERT INTO public.notice VALUES (10040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693706260); INSERT INTO public.notice VALUES (10041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693706860); INSERT INTO public.notice VALUES (10042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693707461); INSERT INTO public.notice VALUES (10043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693708061); INSERT INTO public.notice VALUES (10052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693713460); INSERT INTO public.notice VALUES (10053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693714061); INSERT INTO public.notice VALUES (10054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693714660); INSERT INTO public.notice VALUES (8829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692979305); INSERT INTO public.notice VALUES (8830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692979904); INSERT INTO public.notice VALUES (8831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692980504); INSERT INTO public.notice VALUES (8832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692981105); INSERT INTO public.notice VALUES (8833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692981705); INSERT INTO public.notice VALUES (8834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692982304); INSERT INTO public.notice VALUES (8835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692982904); INSERT INTO public.notice VALUES (8836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692983505); INSERT INTO public.notice VALUES (8837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692984104); INSERT INTO public.notice VALUES (8838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692984704); INSERT INTO public.notice VALUES (8839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692985304); INSERT INTO public.notice VALUES (8840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692985905); INSERT INTO public.notice VALUES (8841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692986504); INSERT INTO public.notice VALUES (8842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692987104); INSERT INTO public.notice VALUES (8843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692987705); INSERT INTO public.notice VALUES (8844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692988304); INSERT INTO public.notice VALUES (8845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692988904); INSERT INTO public.notice VALUES (8846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692989503); INSERT INTO public.notice VALUES (8847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692990105); INSERT INTO public.notice VALUES (8848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692990705); INSERT INTO public.notice VALUES (8849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692991304); INSERT INTO public.notice VALUES (8855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692994905); INSERT INTO public.notice VALUES (8863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692999704); INSERT INTO public.notice VALUES (8864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693000304); INSERT INTO public.notice VALUES (8865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693000905); INSERT INTO public.notice VALUES (8867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693002104); INSERT INTO public.notice VALUES (8868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693002704); INSERT INTO public.notice VALUES (8869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693003305); INSERT INTO public.notice VALUES (8870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693003904); INSERT INTO public.notice VALUES (8871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693004504); INSERT INTO public.notice VALUES (8850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692991904); INSERT INTO public.notice VALUES (8851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692992505); INSERT INTO public.notice VALUES (8852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692993104); INSERT INTO public.notice VALUES (8853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692993704); INSERT INTO public.notice VALUES (8854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692994305); INSERT INTO public.notice VALUES (8856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692995504); INSERT INTO public.notice VALUES (8857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692996103); INSERT INTO public.notice VALUES (8858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692996705); INSERT INTO public.notice VALUES (8859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692997304); INSERT INTO public.notice VALUES (8860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692997904); INSERT INTO public.notice VALUES (8861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692998503); INSERT INTO public.notice VALUES (8862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1692999105); INSERT INTO public.notice VALUES (8866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693001505); INSERT INTO public.notice VALUES (8886, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693013504); INSERT INTO public.notice VALUES (10055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693715260); INSERT INTO public.notice VALUES (8872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693005105); INSERT INTO public.notice VALUES (8873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693005705); INSERT INTO public.notice VALUES (8874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693006304); INSERT INTO public.notice VALUES (8875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693006904); INSERT INTO public.notice VALUES (8876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693007505); INSERT INTO public.notice VALUES (8877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693008105); INSERT INTO public.notice VALUES (8878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693008704); INSERT INTO public.notice VALUES (8879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693009305); INSERT INTO public.notice VALUES (8880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693009905); INSERT INTO public.notice VALUES (8881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693010504); INSERT INTO public.notice VALUES (8882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693011104); INSERT INTO public.notice VALUES (8883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693011706); INSERT INTO public.notice VALUES (8884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693012305); INSERT INTO public.notice VALUES (8885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693012904); INSERT INTO public.notice VALUES (8887, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693014105); INSERT INTO public.notice VALUES (8888, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693014705); INSERT INTO public.notice VALUES (8889, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693015304); INSERT INTO public.notice VALUES (8890, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693015903); INSERT INTO public.notice VALUES (8891, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693016505); INSERT INTO public.notice VALUES (8892, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693017104); INSERT INTO public.notice VALUES (8893, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693017704); INSERT INTO public.notice VALUES (8894, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693018305); INSERT INTO public.notice VALUES (8895, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693018905); INSERT INTO public.notice VALUES (8896, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693019504); INSERT INTO public.notice VALUES (8897, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693020103); INSERT INTO public.notice VALUES (8898, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693020705); INSERT INTO public.notice VALUES (8899, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693021305); INSERT INTO public.notice VALUES (8900, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693021904); INSERT INTO public.notice VALUES (8901, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693022503); INSERT INTO public.notice VALUES (8902, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693023105); INSERT INTO public.notice VALUES (8903, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693023704); INSERT INTO public.notice VALUES (8904, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693024304); INSERT INTO public.notice VALUES (8905, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693024905); INSERT INTO public.notice VALUES (8906, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693025505); INSERT INTO public.notice VALUES (8907, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693026104); INSERT INTO public.notice VALUES (8908, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693026703); INSERT INTO public.notice VALUES (8909, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693027305); INSERT INTO public.notice VALUES (8910, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693027904); INSERT INTO public.notice VALUES (8911, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693028504); INSERT INTO public.notice VALUES (8912, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693029105); INSERT INTO public.notice VALUES (8913, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693029705); INSERT INTO public.notice VALUES (8914, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693030304); INSERT INTO public.notice VALUES (8915, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693030903); INSERT INTO public.notice VALUES (8916, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693031506); INSERT INTO public.notice VALUES (8918, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693032704); INSERT INTO public.notice VALUES (8917, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693032105); INSERT INTO public.notice VALUES (8919, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693033305); INSERT INTO public.notice VALUES (8920, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693033905); INSERT INTO public.notice VALUES (8921, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693034504); INSERT INTO public.notice VALUES (8922, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693035104); INSERT INTO public.notice VALUES (8923, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693035705); INSERT INTO public.notice VALUES (8924, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693036305); INSERT INTO public.notice VALUES (8925, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693036904); INSERT INTO public.notice VALUES (8926, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693037503); INSERT INTO public.notice VALUES (8927, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693038105); INSERT INTO public.notice VALUES (8928, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693038704); INSERT INTO public.notice VALUES (8929, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693039304); INSERT INTO public.notice VALUES (8930, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693039905); INSERT INTO public.notice VALUES (8931, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693040505); INSERT INTO public.notice VALUES (8932, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693041104); INSERT INTO public.notice VALUES (8933, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693041704); INSERT INTO public.notice VALUES (8934, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693042305); INSERT INTO public.notice VALUES (8935, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693042904); INSERT INTO public.notice VALUES (8936, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693043504); INSERT INTO public.notice VALUES (8937, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693044103); INSERT INTO public.notice VALUES (8938, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693044706); INSERT INTO public.notice VALUES (8950, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693051904); INSERT INTO public.notice VALUES (8951, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693052504); INSERT INTO public.notice VALUES (8952, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693053105); INSERT INTO public.notice VALUES (8953, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693053704); INSERT INTO public.notice VALUES (8954, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693054304); INSERT INTO public.notice VALUES (8955, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693054904); INSERT INTO public.notice VALUES (8956, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693055505); INSERT INTO public.notice VALUES (8957, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693056105); INSERT INTO public.notice VALUES (8984, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693072305); INSERT INTO public.notice VALUES (8939, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693045304); INSERT INTO public.notice VALUES (8940, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693045904); INSERT INTO public.notice VALUES (8941, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693046505); INSERT INTO public.notice VALUES (8942, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693047104); INSERT INTO public.notice VALUES (8943, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693047704); INSERT INTO public.notice VALUES (8944, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693048303); INSERT INTO public.notice VALUES (8945, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693048905); INSERT INTO public.notice VALUES (8946, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693049505); INSERT INTO public.notice VALUES (8947, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693050104); INSERT INTO public.notice VALUES (8948, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693050705); INSERT INTO public.notice VALUES (8949, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693051305); INSERT INTO public.notice VALUES (8958, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693056704); INSERT INTO public.notice VALUES (8959, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693057305); INSERT INTO public.notice VALUES (8960, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693057905); INSERT INTO public.notice VALUES (8961, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693058504); INSERT INTO public.notice VALUES (8962, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693059104); INSERT INTO public.notice VALUES (8963, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693059705); INSERT INTO public.notice VALUES (8964, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693060304); INSERT INTO public.notice VALUES (8965, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693060904); INSERT INTO public.notice VALUES (8966, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693061505); INSERT INTO public.notice VALUES (8967, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693062105); INSERT INTO public.notice VALUES (8968, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693062704); INSERT INTO public.notice VALUES (8969, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693063304); INSERT INTO public.notice VALUES (8970, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693063905); INSERT INTO public.notice VALUES (8971, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693064505); INSERT INTO public.notice VALUES (8972, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693065104); INSERT INTO public.notice VALUES (8973, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693065703); INSERT INTO public.notice VALUES (8974, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693066305); INSERT INTO public.notice VALUES (8975, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693066904); INSERT INTO public.notice VALUES (8976, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693067504); INSERT INTO public.notice VALUES (8977, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693068105); INSERT INTO public.notice VALUES (8978, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693068705); INSERT INTO public.notice VALUES (8979, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693069304); INSERT INTO public.notice VALUES (8980, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693069903); INSERT INTO public.notice VALUES (8981, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693070505); INSERT INTO public.notice VALUES (8982, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693071104); INSERT INTO public.notice VALUES (8983, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693071705); INSERT INTO public.notice VALUES (8990, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693075904); INSERT INTO public.notice VALUES (8991, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693076503); INSERT INTO public.notice VALUES (8992, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693077105); INSERT INTO public.notice VALUES (10056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693715859); INSERT INTO public.notice VALUES (10057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693716461); INSERT INTO public.notice VALUES (10058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693717060); INSERT INTO public.notice VALUES (10059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693717660); INSERT INTO public.notice VALUES (10077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693728460); INSERT INTO public.notice VALUES (8985, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693072905); INSERT INTO public.notice VALUES (8986, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693073504); INSERT INTO public.notice VALUES (8987, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693074103); INSERT INTO public.notice VALUES (8988, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693074705); INSERT INTO public.notice VALUES (8989, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693075304); INSERT INTO public.notice VALUES (8993, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693077704); INSERT INTO public.notice VALUES (8994, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693078304); INSERT INTO public.notice VALUES (8995, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693078905); INSERT INTO public.notice VALUES (8996, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693079505); INSERT INTO public.notice VALUES (8997, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693080104); INSERT INTO public.notice VALUES (8998, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693080704); INSERT INTO public.notice VALUES (8999, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693081305); INSERT INTO public.notice VALUES (9000, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693081904); INSERT INTO public.notice VALUES (9001, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693082504); INSERT INTO public.notice VALUES (9002, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693083105); INSERT INTO public.notice VALUES (9003, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693083705); INSERT INTO public.notice VALUES (9004, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693084305); INSERT INTO public.notice VALUES (9005, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693084904); INSERT INTO public.notice VALUES (9006, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693085505); INSERT INTO public.notice VALUES (9007, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693086104); INSERT INTO public.notice VALUES (9011, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693088504); INSERT INTO public.notice VALUES (10061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693718861); INSERT INTO public.notice VALUES (10062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693719460); INSERT INTO public.notice VALUES (10063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693720060); INSERT INTO public.notice VALUES (10064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693720661); INSERT INTO public.notice VALUES (10065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693721260); INSERT INTO public.notice VALUES (10066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693721860); INSERT INTO public.notice VALUES (10067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693722461); INSERT INTO public.notice VALUES (10068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693723061); INSERT INTO public.notice VALUES (10069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693723661); INSERT INTO public.notice VALUES (9008, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693086704); INSERT INTO public.notice VALUES (9009, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693087303); INSERT INTO public.notice VALUES (9010, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693087905); INSERT INTO public.notice VALUES (9012, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693089104); INSERT INTO public.notice VALUES (9013, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693089705); INSERT INTO public.notice VALUES (9014, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693090305); INSERT INTO public.notice VALUES (9015, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693090904); INSERT INTO public.notice VALUES (9016, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693091503); INSERT INTO public.notice VALUES (9017, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693092105); INSERT INTO public.notice VALUES (9018, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693092704); INSERT INTO public.notice VALUES (9019, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693093304); INSERT INTO public.notice VALUES (9020, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693093905); INSERT INTO public.notice VALUES (9021, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693094505); INSERT INTO public.notice VALUES (9022, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693095104); INSERT INTO public.notice VALUES (9023, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693095703); INSERT INTO public.notice VALUES (9024, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693096306); INSERT INTO public.notice VALUES (9025, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693096904); INSERT INTO public.notice VALUES (9026, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693097504); INSERT INTO public.notice VALUES (9027, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693098104); INSERT INTO public.notice VALUES (9028, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693098705); INSERT INTO public.notice VALUES (9029, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693099304); INSERT INTO public.notice VALUES (9030, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693099904); INSERT INTO public.notice VALUES (9038, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693104705); INSERT INTO public.notice VALUES (9039, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693105305); INSERT INTO public.notice VALUES (9040, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693105904); INSERT INTO public.notice VALUES (9041, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693106503); INSERT INTO public.notice VALUES (9050, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693111905); INSERT INTO public.notice VALUES (9051, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693112504); INSERT INTO public.notice VALUES (10070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693724260); INSERT INTO public.notice VALUES (10071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693724861); INSERT INTO public.notice VALUES (9031, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693100505); INSERT INTO public.notice VALUES (9032, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693101105); INSERT INTO public.notice VALUES (9033, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693101704); INSERT INTO public.notice VALUES (9034, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693102303); INSERT INTO public.notice VALUES (9035, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693102905); INSERT INTO public.notice VALUES (9036, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693103504); INSERT INTO public.notice VALUES (9037, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693104104); INSERT INTO public.notice VALUES (9042, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693107105); INSERT INTO public.notice VALUES (9043, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693107705); INSERT INTO public.notice VALUES (9044, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693108304); INSERT INTO public.notice VALUES (9045, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693108903); INSERT INTO public.notice VALUES (9046, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693109505); INSERT INTO public.notice VALUES (9047, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693110104); INSERT INTO public.notice VALUES (9048, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693110704); INSERT INTO public.notice VALUES (9049, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693111305); INSERT INTO public.notice VALUES (9052, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693113106); INSERT INTO public.notice VALUES (9056, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693115505); INSERT INTO public.notice VALUES (9057, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693116105); INSERT INTO public.notice VALUES (9058, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693116704); INSERT INTO public.notice VALUES (9063, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693119703); INSERT INTO public.notice VALUES (9064, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693120305); INSERT INTO public.notice VALUES (10072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693725461); INSERT INTO public.notice VALUES (10073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693726060); INSERT INTO public.notice VALUES (10074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693726659); INSERT INTO public.notice VALUES (10075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693727261); INSERT INTO public.notice VALUES (10076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693727860); INSERT INTO public.notice VALUES (10160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693778260); INSERT INTO public.notice VALUES (10163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693780060); INSERT INTO public.notice VALUES (10164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693780660); INSERT INTO public.notice VALUES (10166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693781861); INSERT INTO public.notice VALUES (9053, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693113705); INSERT INTO public.notice VALUES (9054, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693114304); INSERT INTO public.notice VALUES (9055, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693114904); INSERT INTO public.notice VALUES (9059, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693117304); INSERT INTO public.notice VALUES (9060, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693117905); INSERT INTO public.notice VALUES (9061, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693118504); INSERT INTO public.notice VALUES (9062, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693119104); INSERT INTO public.notice VALUES (9065, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693120904); INSERT INTO public.notice VALUES (9066, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693121504); INSERT INTO public.notice VALUES (9067, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693122105); INSERT INTO public.notice VALUES (9068, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693122705); INSERT INTO public.notice VALUES (9069, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693123304); INSERT INTO public.notice VALUES (9070, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693123903); INSERT INTO public.notice VALUES (9071, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693124505); INSERT INTO public.notice VALUES (9072, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693125104); INSERT INTO public.notice VALUES (9073, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693125704); INSERT INTO public.notice VALUES (9074, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693126305); INSERT INTO public.notice VALUES (9075, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693126905); INSERT INTO public.notice VALUES (9078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693128705); INSERT INTO public.notice VALUES (9088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693134703); INSERT INTO public.notice VALUES (9089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693135305); INSERT INTO public.notice VALUES (9090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693135905); INSERT INTO public.notice VALUES (9091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693136504); INSERT INTO public.notice VALUES (9109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693147304); INSERT INTO public.notice VALUES (9110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693147905); INSERT INTO public.notice VALUES (10078, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693729061); INSERT INTO public.notice VALUES (10079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693729661); INSERT INTO public.notice VALUES (10080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693730260); INSERT INTO public.notice VALUES (10081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693730860); INSERT INTO public.notice VALUES (10082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693731461); INSERT INTO public.notice VALUES (9076, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693127504); INSERT INTO public.notice VALUES (9077, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693128104); INSERT INTO public.notice VALUES (9079, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693129305); INSERT INTO public.notice VALUES (9080, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693129904); INSERT INTO public.notice VALUES (9081, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693130504); INSERT INTO public.notice VALUES (9082, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693131105); INSERT INTO public.notice VALUES (9083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693131704); INSERT INTO public.notice VALUES (9084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693132304); INSERT INTO public.notice VALUES (9085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693132905); INSERT INTO public.notice VALUES (9086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693133505); INSERT INTO public.notice VALUES (9087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693134104); INSERT INTO public.notice VALUES (9092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693137105); INSERT INTO public.notice VALUES (9093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693137705); INSERT INTO public.notice VALUES (9094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693138304); INSERT INTO public.notice VALUES (9095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693138904); INSERT INTO public.notice VALUES (9096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693139505); INSERT INTO public.notice VALUES (9097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693140104); INSERT INTO public.notice VALUES (9098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693140704); INSERT INTO public.notice VALUES (9099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693141303); INSERT INTO public.notice VALUES (9100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693141905); INSERT INTO public.notice VALUES (9101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693142504); INSERT INTO public.notice VALUES (9102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693143104); INSERT INTO public.notice VALUES (9103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693143705); INSERT INTO public.notice VALUES (9104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693144305); INSERT INTO public.notice VALUES (9105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693144904); INSERT INTO public.notice VALUES (9106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693145505); INSERT INTO public.notice VALUES (9107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693146105); INSERT INTO public.notice VALUES (9108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693146705); INSERT INTO public.notice VALUES (9111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693148505); INSERT INTO public.notice VALUES (9112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693149104); INSERT INTO public.notice VALUES (9113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693149704); INSERT INTO public.notice VALUES (9114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693150305); INSERT INTO public.notice VALUES (9115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693150905); INSERT INTO public.notice VALUES (9116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693151504); INSERT INTO public.notice VALUES (9117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693152103); INSERT INTO public.notice VALUES (9118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693152705); INSERT INTO public.notice VALUES (9119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693153304); INSERT INTO public.notice VALUES (9120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693153904); INSERT INTO public.notice VALUES (9121, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693154505); INSERT INTO public.notice VALUES (9122, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693155105); INSERT INTO public.notice VALUES (9123, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693155705); INSERT INTO public.notice VALUES (9124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693156304); INSERT INTO public.notice VALUES (9125, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693156905); INSERT INTO public.notice VALUES (9126, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693157504); INSERT INTO public.notice VALUES (9127, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693158104); INSERT INTO public.notice VALUES (9128, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693158705); INSERT INTO public.notice VALUES (9133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693161704); INSERT INTO public.notice VALUES (9134, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693162304); INSERT INTO public.notice VALUES (9135, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693162906); INSERT INTO public.notice VALUES (9140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693165904); INSERT INTO public.notice VALUES (9141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693166504); INSERT INTO public.notice VALUES (9142, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693167105); INSERT INTO public.notice VALUES (9143, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693167704); INSERT INTO public.notice VALUES (9144, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693168304); INSERT INTO public.notice VALUES (9145, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693168903); INSERT INTO public.notice VALUES (9146, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693169505); INSERT INTO public.notice VALUES (9147, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693170104); INSERT INTO public.notice VALUES (9148, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693170704); INSERT INTO public.notice VALUES (9149, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693171305); INSERT INTO public.notice VALUES (9150, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693171905); INSERT INTO public.notice VALUES (9129, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693159305); INSERT INTO public.notice VALUES (9130, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693159904); INSERT INTO public.notice VALUES (9131, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693160506); INSERT INTO public.notice VALUES (9132, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693161105); INSERT INTO public.notice VALUES (9136, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693163505); INSERT INTO public.notice VALUES (9137, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693164104); INSERT INTO public.notice VALUES (9138, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693164704); INSERT INTO public.notice VALUES (9139, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693165305); INSERT INTO public.notice VALUES (9166, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693181504); INSERT INTO public.notice VALUES (9167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693182105); INSERT INTO public.notice VALUES (9176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693187504); INSERT INTO public.notice VALUES (9177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693188104); INSERT INTO public.notice VALUES (9197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693200104); INSERT INTO public.notice VALUES (9209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693207304); INSERT INTO public.notice VALUES (9210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693207905); INSERT INTO public.notice VALUES (9151, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693172504); INSERT INTO public.notice VALUES (9152, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693173104); INSERT INTO public.notice VALUES (9153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693173705); INSERT INTO public.notice VALUES (9154, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693174304); INSERT INTO public.notice VALUES (9155, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693174904); INSERT INTO public.notice VALUES (9156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693175503); INSERT INTO public.notice VALUES (9157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693176105); INSERT INTO public.notice VALUES (9158, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693176704); INSERT INTO public.notice VALUES (9159, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693177304); INSERT INTO public.notice VALUES (9160, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693177905); INSERT INTO public.notice VALUES (9161, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693178505); INSERT INTO public.notice VALUES (9162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693179104); INSERT INTO public.notice VALUES (9163, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693179703); INSERT INTO public.notice VALUES (9164, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693180305); INSERT INTO public.notice VALUES (9165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693180905); INSERT INTO public.notice VALUES (9168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693182705); INSERT INTO public.notice VALUES (9169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693183304); INSERT INTO public.notice VALUES (9170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693183903); INSERT INTO public.notice VALUES (9171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693184505); INSERT INTO public.notice VALUES (9172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693185104); INSERT INTO public.notice VALUES (9173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693185704); INSERT INTO public.notice VALUES (9174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693186303); INSERT INTO public.notice VALUES (9175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693186904); INSERT INTO public.notice VALUES (9178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693188705); INSERT INTO public.notice VALUES (9179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693189305); INSERT INTO public.notice VALUES (9180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693189904); INSERT INTO public.notice VALUES (9181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693190503); INSERT INTO public.notice VALUES (9182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693191105); INSERT INTO public.notice VALUES (9183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693191704); INSERT INTO public.notice VALUES (9184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693192304); INSERT INTO public.notice VALUES (9185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693192905); INSERT INTO public.notice VALUES (9186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693193505); INSERT INTO public.notice VALUES (9187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693194104); INSERT INTO public.notice VALUES (9188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693194706); INSERT INTO public.notice VALUES (9189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693195305); INSERT INTO public.notice VALUES (9190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693195904); INSERT INTO public.notice VALUES (9191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693196504); INSERT INTO public.notice VALUES (9192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693197105); INSERT INTO public.notice VALUES (9193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693197705); INSERT INTO public.notice VALUES (9194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693198304); INSERT INTO public.notice VALUES (9195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693198904); INSERT INTO public.notice VALUES (9196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693199505); INSERT INTO public.notice VALUES (9198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693200704); INSERT INTO public.notice VALUES (9199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693201303); INSERT INTO public.notice VALUES (9200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693201905); INSERT INTO public.notice VALUES (9201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693202504); INSERT INTO public.notice VALUES (9202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693203104); INSERT INTO public.notice VALUES (9203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693203705); INSERT INTO public.notice VALUES (9204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693204304); INSERT INTO public.notice VALUES (9205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693204904); INSERT INTO public.notice VALUES (9206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693205503); INSERT INTO public.notice VALUES (9207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693206105); INSERT INTO public.notice VALUES (9208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693206704); INSERT INTO public.notice VALUES (9214, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693210305); INSERT INTO public.notice VALUES (9215, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693210904); INSERT INTO public.notice VALUES (9216, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693211504); INSERT INTO public.notice VALUES (9226, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693217504); INSERT INTO public.notice VALUES (9233, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693221704); INSERT INTO public.notice VALUES (9239, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693225305); INSERT INTO public.notice VALUES (9240, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693225904); INSERT INTO public.notice VALUES (9211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693208504); INSERT INTO public.notice VALUES (9212, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693209104); INSERT INTO public.notice VALUES (9213, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693209704); INSERT INTO public.notice VALUES (9217, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693212105); INSERT INTO public.notice VALUES (9218, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693212705); INSERT INTO public.notice VALUES (9219, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693213304); INSERT INTO public.notice VALUES (9220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693213904); INSERT INTO public.notice VALUES (9221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693214505); INSERT INTO public.notice VALUES (9222, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693215104); INSERT INTO public.notice VALUES (9223, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693215704); INSERT INTO public.notice VALUES (9224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693216303); INSERT INTO public.notice VALUES (9225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693216905); INSERT INTO public.notice VALUES (9227, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693218104); INSERT INTO public.notice VALUES (9228, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693218705); INSERT INTO public.notice VALUES (9229, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693219305); INSERT INTO public.notice VALUES (9230, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693219904); INSERT INTO public.notice VALUES (9231, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693220504); INSERT INTO public.notice VALUES (9232, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693221106); INSERT INTO public.notice VALUES (9234, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693222304); INSERT INTO public.notice VALUES (9235, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693222905); INSERT INTO public.notice VALUES (9236, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693223505); INSERT INTO public.notice VALUES (9237, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693224104); INSERT INTO public.notice VALUES (9238, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693224704); INSERT INTO public.notice VALUES (9247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693230105); INSERT INTO public.notice VALUES (9248, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693230704); INSERT INTO public.notice VALUES (9249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693231303); INSERT INTO public.notice VALUES (9253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693233705); INSERT INTO public.notice VALUES (9254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693234305); INSERT INTO public.notice VALUES (9255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693234905); INSERT INTO public.notice VALUES (9256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693235504); INSERT INTO public.notice VALUES (9241, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693226504); INSERT INTO public.notice VALUES (9242, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693227103); INSERT INTO public.notice VALUES (9243, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693227705); INSERT INTO public.notice VALUES (9244, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693228304); INSERT INTO public.notice VALUES (9245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693228904); INSERT INTO public.notice VALUES (9246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693229505); INSERT INTO public.notice VALUES (9250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693231905); INSERT INTO public.notice VALUES (9251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693232504); INSERT INTO public.notice VALUES (9252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693233104); INSERT INTO public.notice VALUES (9262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693239105); INSERT INTO public.notice VALUES (9263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693239704); INSERT INTO public.notice VALUES (9264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693240305); INSERT INTO public.notice VALUES (9265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693240905); INSERT INTO public.notice VALUES (9266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693241504); INSERT INTO public.notice VALUES (9274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693246304); INSERT INTO public.notice VALUES (9257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693236105); INSERT INTO public.notice VALUES (9258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693236705); INSERT INTO public.notice VALUES (9259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693237304); INSERT INTO public.notice VALUES (9260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693237903); INSERT INTO public.notice VALUES (9261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693238505); INSERT INTO public.notice VALUES (9267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693242104); INSERT INTO public.notice VALUES (9268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693242705); INSERT INTO public.notice VALUES (9269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693243305); INSERT INTO public.notice VALUES (9270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693243904); INSERT INTO public.notice VALUES (9271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693244505); INSERT INTO public.notice VALUES (9272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693245105); INSERT INTO public.notice VALUES (9273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693245705); INSERT INTO public.notice VALUES (9275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693246905); INSERT INTO public.notice VALUES (9276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693247505); INSERT INTO public.notice VALUES (9277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693248104); INSERT INTO public.notice VALUES (9278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693248703); INSERT INTO public.notice VALUES (9279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693249305); INSERT INTO public.notice VALUES (9280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693249904); INSERT INTO public.notice VALUES (9281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693250504); INSERT INTO public.notice VALUES (9282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693251106); INSERT INTO public.notice VALUES (9283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693251705); INSERT INTO public.notice VALUES (9284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693252304); INSERT INTO public.notice VALUES (9285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693252904); INSERT INTO public.notice VALUES (9286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693253505); INSERT INTO public.notice VALUES (9287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693254104); INSERT INTO public.notice VALUES (9288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693254704); INSERT INTO public.notice VALUES (9289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693255303); INSERT INTO public.notice VALUES (9290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693255905); INSERT INTO public.notice VALUES (9291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693256504); INSERT INTO public.notice VALUES (9292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693257104); INSERT INTO public.notice VALUES (9293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693257705); INSERT INTO public.notice VALUES (9294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693258305); INSERT INTO public.notice VALUES (9295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693258904); INSERT INTO public.notice VALUES (9297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693260105); INSERT INTO public.notice VALUES (9298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693260704); INSERT INTO public.notice VALUES (9299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693261304); INSERT INTO public.notice VALUES (9300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693261903); INSERT INTO public.notice VALUES (9301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693262505); INSERT INTO public.notice VALUES (9302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693263104); INSERT INTO public.notice VALUES (9303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693263704); INSERT INTO public.notice VALUES (9304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693264305); INSERT INTO public.notice VALUES (9311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693268505); INSERT INTO public.notice VALUES (9312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693269105); INSERT INTO public.notice VALUES (9313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693269705); INSERT INTO public.notice VALUES (9314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693270304); INSERT INTO public.notice VALUES (9296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693259504); INSERT INTO public.notice VALUES (9305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693264905); INSERT INTO public.notice VALUES (9306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693265505); INSERT INTO public.notice VALUES (9307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693266104); INSERT INTO public.notice VALUES (9308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693266705); INSERT INTO public.notice VALUES (9309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693267305); INSERT INTO public.notice VALUES (9310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693267904); INSERT INTO public.notice VALUES (9320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693273904); INSERT INTO public.notice VALUES (9321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693274504); INSERT INTO public.notice VALUES (9322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693275105); INSERT INTO public.notice VALUES (9323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693275705); INSERT INTO public.notice VALUES (9324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693276304); INSERT INTO public.notice VALUES (9325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693276904); INSERT INTO public.notice VALUES (9326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693277505); INSERT INTO public.notice VALUES (9327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693278105); INSERT INTO public.notice VALUES (9315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693270905); INSERT INTO public.notice VALUES (9316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693271504); INSERT INTO public.notice VALUES (9317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693272104); INSERT INTO public.notice VALUES (9318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693272703); INSERT INTO public.notice VALUES (9319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693273305); INSERT INTO public.notice VALUES (9328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693278704); INSERT INTO public.notice VALUES (9329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693279305); INSERT INTO public.notice VALUES (9330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693279905); INSERT INTO public.notice VALUES (9331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693280504); INSERT INTO public.notice VALUES (9332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693281103); INSERT INTO public.notice VALUES (9333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693281705); INSERT INTO public.notice VALUES (9334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693282304); INSERT INTO public.notice VALUES (9335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693282904); INSERT INTO public.notice VALUES (9336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693283505); INSERT INTO public.notice VALUES (9337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693284105); INSERT INTO public.notice VALUES (9338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693284704); INSERT INTO public.notice VALUES (9352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693293104); INSERT INTO public.notice VALUES (10083, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693732061); INSERT INTO public.notice VALUES (10162, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693779461); INSERT INTO public.notice VALUES (10165, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693781261); INSERT INTO public.notice VALUES (10172, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693785462); INSERT INTO public.notice VALUES (10173, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693786061); INSERT INTO public.notice VALUES (10174, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com ', 1693786670); INSERT INTO public.notice VALUES (10175, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693787260); INSERT INTO public.notice VALUES (10179, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693789662); INSERT INTO public.notice VALUES (10180, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693790261); INSERT INTO public.notice VALUES (10181, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693790861); INSERT INTO public.notice VALUES (10184, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693792661); INSERT INTO public.notice VALUES (10185, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693793260); INSERT INTO public.notice VALUES (10186, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693793860); INSERT INTO public.notice VALUES (10187, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693794461); INSERT INTO public.notice VALUES (9339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693285304); INSERT INTO public.notice VALUES (9340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693285905); INSERT INTO public.notice VALUES (9341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693286504); INSERT INTO public.notice VALUES (9342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693287104); INSERT INTO public.notice VALUES (9343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693287703); INSERT INTO public.notice VALUES (9344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693288305); INSERT INTO public.notice VALUES (9345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693288904); INSERT INTO public.notice VALUES (9346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693289504); INSERT INTO public.notice VALUES (9347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693290105); INSERT INTO public.notice VALUES (9348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693290705); INSERT INTO public.notice VALUES (9349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693291304); INSERT INTO public.notice VALUES (9350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693291904); INSERT INTO public.notice VALUES (9351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693292505); INSERT INTO public.notice VALUES (9353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693293704); INSERT INTO public.notice VALUES (9354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693294303); INSERT INTO public.notice VALUES (9355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693294905); INSERT INTO public.notice VALUES (9356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693295504); INSERT INTO public.notice VALUES (9357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693296104); INSERT INTO public.notice VALUES (9358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693296706); INSERT INTO public.notice VALUES (9359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693297305); INSERT INTO public.notice VALUES (9360, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693297904); INSERT INTO public.notice VALUES (9361, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693298504); INSERT INTO public.notice VALUES (10084, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693732660); INSERT INTO public.notice VALUES (10085, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693733262); INSERT INTO public.notice VALUES (10086, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693733861); INSERT INTO public.notice VALUES (10088, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693735060); INSERT INTO public.notice VALUES (10167, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693782460); INSERT INTO public.notice VALUES (10168, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693783060); INSERT INTO public.notice VALUES (10169, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693783661); INSERT INTO public.notice VALUES (10170, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693784260); INSERT INTO public.notice VALUES (9362, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693299105); INSERT INTO public.notice VALUES (9363, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693299704); INSERT INTO public.notice VALUES (9364, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693300304); INSERT INTO public.notice VALUES (9365, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693300911); INSERT INTO public.notice VALUES (9366, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693301505); INSERT INTO public.notice VALUES (9367, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693302461); INSERT INTO public.notice VALUES (9368, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693303060); INSERT INTO public.notice VALUES (9369, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693303660); INSERT INTO public.notice VALUES (9370, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693304261); INSERT INTO public.notice VALUES (9371, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693304860); INSERT INTO public.notice VALUES (9372, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693305460); INSERT INTO public.notice VALUES (9373, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693306059); INSERT INTO public.notice VALUES (9374, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693306661); INSERT INTO public.notice VALUES (9375, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693307265); INSERT INTO public.notice VALUES (9376, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693307860); INSERT INTO public.notice VALUES (9377, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693308461); INSERT INTO public.notice VALUES (9378, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693309061); INSERT INTO public.notice VALUES (9379, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693309660); INSERT INTO public.notice VALUES (9380, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693310260); INSERT INTO public.notice VALUES (9381, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693310861); INSERT INTO public.notice VALUES (9402, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693323462); INSERT INTO public.notice VALUES (9403, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693324061); INSERT INTO public.notice VALUES (9404, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693324660); INSERT INTO public.notice VALUES (9405, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693325260); INSERT INTO public.notice VALUES (9406, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693325861); INSERT INTO public.notice VALUES (9407, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693326462); INSERT INTO public.notice VALUES (10087, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693734460); INSERT INTO public.notice VALUES (10089, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693735661); INSERT INTO public.notice VALUES (10098, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693741060); INSERT INTO public.notice VALUES (10171, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693784860); INSERT INTO public.notice VALUES (9382, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693311461); INSERT INTO public.notice VALUES (9383, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693312060); INSERT INTO public.notice VALUES (9384, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693312661); INSERT INTO public.notice VALUES (9385, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693313261); INSERT INTO public.notice VALUES (9386, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693313860); INSERT INTO public.notice VALUES (9387, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693314460); INSERT INTO public.notice VALUES (9388, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693315061); INSERT INTO public.notice VALUES (9389, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693315661); INSERT INTO public.notice VALUES (9390, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693316260); INSERT INTO public.notice VALUES (9391, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693316860); INSERT INTO public.notice VALUES (9392, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693317461); INSERT INTO public.notice VALUES (9393, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693318060); INSERT INTO public.notice VALUES (9394, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693318660); INSERT INTO public.notice VALUES (9395, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693319261); INSERT INTO public.notice VALUES (9396, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693319861); INSERT INTO public.notice VALUES (9397, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693320461); INSERT INTO public.notice VALUES (9398, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693321060); INSERT INTO public.notice VALUES (9399, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693321661); INSERT INTO public.notice VALUES (9400, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693322260); INSERT INTO public.notice VALUES (9401, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693322860); INSERT INTO public.notice VALUES (9408, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693327060); INSERT INTO public.notice VALUES (9409, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693327659); INSERT INTO public.notice VALUES (9410, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693328261); INSERT INTO public.notice VALUES (9411, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693328860); INSERT INTO public.notice VALUES (9412, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693329460); INSERT INTO public.notice VALUES (9413, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693330061); INSERT INTO public.notice VALUES (9414, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693330661); INSERT INTO public.notice VALUES (9415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693331260); INSERT INTO public.notice VALUES (9416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693331860); INSERT INTO public.notice VALUES (9417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693332461); INSERT INTO public.notice VALUES (9418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693333060); INSERT INTO public.notice VALUES (9419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693333660); INSERT INTO public.notice VALUES (9425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693337262); INSERT INTO public.notice VALUES (9426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693337860); INSERT INTO public.notice VALUES (9427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693338459); INSERT INTO public.notice VALUES (9428, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693339061); INSERT INTO public.notice VALUES (9429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693339661); INSERT INTO public.notice VALUES (10090, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693736261); INSERT INTO public.notice VALUES (10091, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693736860); INSERT INTO public.notice VALUES (10092, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693737462); INSERT INTO public.notice VALUES (10093, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693738061); INSERT INTO public.notice VALUES (10176, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693787861); INSERT INTO public.notice VALUES (10177, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693788461); INSERT INTO public.notice VALUES (10178, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693789060); INSERT INTO public.notice VALUES (10182, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693791460); INSERT INTO public.notice VALUES (9420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693334261); INSERT INTO public.notice VALUES (9421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693334861); INSERT INTO public.notice VALUES (9422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693335460); INSERT INTO public.notice VALUES (9423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693336060); INSERT INTO public.notice VALUES (9424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693336661); INSERT INTO public.notice VALUES (9430, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693340260); INSERT INTO public.notice VALUES (9431, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693340861); INSERT INTO public.notice VALUES (9432, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693341461); INSERT INTO public.notice VALUES (9433, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693342060); INSERT INTO public.notice VALUES (9434, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693342659); INSERT INTO public.notice VALUES (9435, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693343261); INSERT INTO public.notice VALUES (9436, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693343861); INSERT INTO public.notice VALUES (9437, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693344460); INSERT INTO public.notice VALUES (9438, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693345059); INSERT INTO public.notice VALUES (9439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693345661); INSERT INTO public.notice VALUES (9440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693346260); INSERT INTO public.notice VALUES (9442, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693347461); INSERT INTO public.notice VALUES (9443, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693348061); INSERT INTO public.notice VALUES (10094, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693738660); INSERT INTO public.notice VALUES (10183, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693792061); INSERT INTO public.notice VALUES (10188, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693795061); INSERT INTO public.notice VALUES (10189, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693795660); INSERT INTO public.notice VALUES (10190, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693796259); INSERT INTO public.notice VALUES (10191, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693796861); INSERT INTO public.notice VALUES (10192, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693797460); INSERT INTO public.notice VALUES (10193, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693798060); INSERT INTO public.notice VALUES (10220, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693814261); INSERT INTO public.notice VALUES (10221, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693814860); INSERT INTO public.notice VALUES (10224, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693816661); INSERT INTO public.notice VALUES (10225, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693817260); INSERT INTO public.notice VALUES (9441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693346860); INSERT INTO public.notice VALUES (9444, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693348660); INSERT INTO public.notice VALUES (9445, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693349260); INSERT INTO public.notice VALUES (9446, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693349861); INSERT INTO public.notice VALUES (9447, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693350460); INSERT INTO public.notice VALUES (9448, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693351060); INSERT INTO public.notice VALUES (9449, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693351659); INSERT INTO public.notice VALUES (9450, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693352261); INSERT INTO public.notice VALUES (9451, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693352860); INSERT INTO public.notice VALUES (9452, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693353459); INSERT INTO public.notice VALUES (9453, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693354061); INSERT INTO public.notice VALUES (9454, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693354661); INSERT INTO public.notice VALUES (9455, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693355260); INSERT INTO public.notice VALUES (9456, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693355860); INSERT INTO public.notice VALUES (9457, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693356461); INSERT INTO public.notice VALUES (9458, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693357060); INSERT INTO public.notice VALUES (9459, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693357660); INSERT INTO public.notice VALUES (9460, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693358261); INSERT INTO public.notice VALUES (9461, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693358861); INSERT INTO public.notice VALUES (9462, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693359460); INSERT INTO public.notice VALUES (9463, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693360060); INSERT INTO public.notice VALUES (9464, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693360661); INSERT INTO public.notice VALUES (9465, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693361261); INSERT INTO public.notice VALUES (9466, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693361860); INSERT INTO public.notice VALUES (9467, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693362459); INSERT INTO public.notice VALUES (9468, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693363061); INSERT INTO public.notice VALUES (9469, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693363660); INSERT INTO public.notice VALUES (9470, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693364259); INSERT INTO public.notice VALUES (9471, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693364861); INSERT INTO public.notice VALUES (9472, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693365461); INSERT INTO public.notice VALUES (9473, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693366060); INSERT INTO public.notice VALUES (9474, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693366661); INSERT INTO public.notice VALUES (9485, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693373261); INSERT INTO public.notice VALUES (9486, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693373861); INSERT INTO public.notice VALUES (9487, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693374460); INSERT INTO public.notice VALUES (9496, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693379861); INSERT INTO public.notice VALUES (10095, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693739260); INSERT INTO public.notice VALUES (10096, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693739862); INSERT INTO public.notice VALUES (10097, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693740461); INSERT INTO public.notice VALUES (10102, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693743460); INSERT INTO public.notice VALUES (10104, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693744661); INSERT INTO public.notice VALUES (10194, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693798661); INSERT INTO public.notice VALUES (10195, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693799261); INSERT INTO public.notice VALUES (10196, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693799860); INSERT INTO public.notice VALUES (10197, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693800460); INSERT INTO public.notice VALUES (9475, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693367261); INSERT INTO public.notice VALUES (9476, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693367860); INSERT INTO public.notice VALUES (9477, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693368460); INSERT INTO public.notice VALUES (9478, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693369061); INSERT INTO public.notice VALUES (9479, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693369661); INSERT INTO public.notice VALUES (9480, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693370260); INSERT INTO public.notice VALUES (9481, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693370860); INSERT INTO public.notice VALUES (9482, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693371461); INSERT INTO public.notice VALUES (9483, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693372060); INSERT INTO public.notice VALUES (9484, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693372660); INSERT INTO public.notice VALUES (9488, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693375059); INSERT INTO public.notice VALUES (9489, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693375661); INSERT INTO public.notice VALUES (9490, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693376260); INSERT INTO public.notice VALUES (9491, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693376860); INSERT INTO public.notice VALUES (9492, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693377461); INSERT INTO public.notice VALUES (9493, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693378061); INSERT INTO public.notice VALUES (9494, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693378660); INSERT INTO public.notice VALUES (9495, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693379260); INSERT INTO public.notice VALUES (9497, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693380461); INSERT INTO public.notice VALUES (9498, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693381060); INSERT INTO public.notice VALUES (9499, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693381661); INSERT INTO public.notice VALUES (9500, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693382261); INSERT INTO public.notice VALUES (9501, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693382860); INSERT INTO public.notice VALUES (9502, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693383460); INSERT INTO public.notice VALUES (9503, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693384061); INSERT INTO public.notice VALUES (9504, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693384660); INSERT INTO public.notice VALUES (9505, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693385260); INSERT INTO public.notice VALUES (9506, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693385859); INSERT INTO public.notice VALUES (9507, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693386461); INSERT INTO public.notice VALUES (9508, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693387061); INSERT INTO public.notice VALUES (9509, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693387660); INSERT INTO public.notice VALUES (9510, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693388261); INSERT INTO public.notice VALUES (9511, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693388861); INSERT INTO public.notice VALUES (9512, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693389460); INSERT INTO public.notice VALUES (9513, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693390059); INSERT INTO public.notice VALUES (9514, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693390661); INSERT INTO public.notice VALUES (9515, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693391260); INSERT INTO public.notice VALUES (9516, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693391860); INSERT INTO public.notice VALUES (9517, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693392461); INSERT INTO public.notice VALUES (9518, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693393061); INSERT INTO public.notice VALUES (9519, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693393660); INSERT INTO public.notice VALUES (9520, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693394260); INSERT INTO public.notice VALUES (9521, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693394861); INSERT INTO public.notice VALUES (9522, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693395461); INSERT INTO public.notice VALUES (9523, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693396060); INSERT INTO public.notice VALUES (9524, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693396659); INSERT INTO public.notice VALUES (9525, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693397261); INSERT INTO public.notice VALUES (9526, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693397861); INSERT INTO public.notice VALUES (9527, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693398460); INSERT INTO public.notice VALUES (9528, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693399061); INSERT INTO public.notice VALUES (9529, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693399660); INSERT INTO public.notice VALUES (9530, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693400260); INSERT INTO public.notice VALUES (9531, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693400862); INSERT INTO public.notice VALUES (9532, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693401461); INSERT INTO public.notice VALUES (9533, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693402060); INSERT INTO public.notice VALUES (9534, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693402660); INSERT INTO public.notice VALUES (9535, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693403262); INSERT INTO public.notice VALUES (9536, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693403861); INSERT INTO public.notice VALUES (9543, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693408061); INSERT INTO public.notice VALUES (9544, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693408661); INSERT INTO public.notice VALUES (9537, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693404461); INSERT INTO public.notice VALUES (9538, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693405060); INSERT INTO public.notice VALUES (9539, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693405662); INSERT INTO public.notice VALUES (9540, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693406260); INSERT INTO public.notice VALUES (9541, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693406860); INSERT INTO public.notice VALUES (9542, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693407462); INSERT INTO public.notice VALUES (9545, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693409260); INSERT INTO public.notice VALUES (9546, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693409861); INSERT INTO public.notice VALUES (9547, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693410461); INSERT INTO public.notice VALUES (9555, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693415260); INSERT INTO public.notice VALUES (9556, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693415860); INSERT INTO public.notice VALUES (9557, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693416461); INSERT INTO public.notice VALUES (9558, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693417061); INSERT INTO public.notice VALUES (9559, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693417660); INSERT INTO public.notice VALUES (9564, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693420661); INSERT INTO public.notice VALUES (9548, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693411061); INSERT INTO public.notice VALUES (9549, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693411660); INSERT INTO public.notice VALUES (9550, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693412261); INSERT INTO public.notice VALUES (9551, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693412860); INSERT INTO public.notice VALUES (9552, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693413460); INSERT INTO public.notice VALUES (9553, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693414061); INSERT INTO public.notice VALUES (9554, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693414661); INSERT INTO public.notice VALUES (9560, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693418261); INSERT INTO public.notice VALUES (9561, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693418861); INSERT INTO public.notice VALUES (9562, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693419460); INSERT INTO public.notice VALUES (9563, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693420060); INSERT INTO public.notice VALUES (9566, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693421860); INSERT INTO public.notice VALUES (9567, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693422459); INSERT INTO public.notice VALUES (9568, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693423062); INSERT INTO public.notice VALUES (9569, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693423660); INSERT INTO public.notice VALUES (9565, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693421261); INSERT INTO public.notice VALUES (9573, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693426060); INSERT INTO public.notice VALUES (9574, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693426660); INSERT INTO public.notice VALUES (9588, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693435060); INSERT INTO public.notice VALUES (9589, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693435662); INSERT INTO public.notice VALUES (9590, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693436261); INSERT INTO public.notice VALUES (9591, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693436860); INSERT INTO public.notice VALUES (9592, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693437460); INSERT INTO public.notice VALUES (9593, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693438061); INSERT INTO public.notice VALUES (9601, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693442861); INSERT INTO public.notice VALUES (9602, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693443460); INSERT INTO public.notice VALUES (9603, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693444061); INSERT INTO public.notice VALUES (9604, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693444661); INSERT INTO public.notice VALUES (9605, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693445260); INSERT INTO public.notice VALUES (9606, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693445860); INSERT INTO public.notice VALUES (9570, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693424260); INSERT INTO public.notice VALUES (9571, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693424861); INSERT INTO public.notice VALUES (9572, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693425461); INSERT INTO public.notice VALUES (9575, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693427261); INSERT INTO public.notice VALUES (9576, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693427861); INSERT INTO public.notice VALUES (9577, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693428460); INSERT INTO public.notice VALUES (9578, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693429061); INSERT INTO public.notice VALUES (9579, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693429661); INSERT INTO public.notice VALUES (9580, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693430260); INSERT INTO public.notice VALUES (9581, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693430860); INSERT INTO public.notice VALUES (9582, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693431461); INSERT INTO public.notice VALUES (9583, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693432061); INSERT INTO public.notice VALUES (9584, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693432660); INSERT INTO public.notice VALUES (9585, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693433261); INSERT INTO public.notice VALUES (9586, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693433861); INSERT INTO public.notice VALUES (9587, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693434460); INSERT INTO public.notice VALUES (9594, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693438661); INSERT INTO public.notice VALUES (9595, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693439260); INSERT INTO public.notice VALUES (9596, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693439862); INSERT INTO public.notice VALUES (9597, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693440461); INSERT INTO public.notice VALUES (9598, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693441060); INSERT INTO public.notice VALUES (9599, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693441660); INSERT INTO public.notice VALUES (9600, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693442261); INSERT INTO public.notice VALUES (9608, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693447061); INSERT INTO public.notice VALUES (9609, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693447660); INSERT INTO public.notice VALUES (9612, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693449461); INSERT INTO public.notice VALUES (9613, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693450060); INSERT INTO public.notice VALUES (10099, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693741660); INSERT INTO public.notice VALUES (10100, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693742261); INSERT INTO public.notice VALUES (10101, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693742861); INSERT INTO public.notice VALUES (9607, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693446461); INSERT INTO public.notice VALUES (9610, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693448260); INSERT INTO public.notice VALUES (9611, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693448861); INSERT INTO public.notice VALUES (9614, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693450661); INSERT INTO public.notice VALUES (9615, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693451261); INSERT INTO public.notice VALUES (9616, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693451860); INSERT INTO public.notice VALUES (9617, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693452460); INSERT INTO public.notice VALUES (9618, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693453061); INSERT INTO public.notice VALUES (9619, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693453661); INSERT INTO public.notice VALUES (9620, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693454260); INSERT INTO public.notice VALUES (9621, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693454861); INSERT INTO public.notice VALUES (9622, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693455461); INSERT INTO public.notice VALUES (9623, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693456060); INSERT INTO public.notice VALUES (9624, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693456660); INSERT INTO public.notice VALUES (9625, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693457261); INSERT INTO public.notice VALUES (9626, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693457861); INSERT INTO public.notice VALUES (9630, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693460260); INSERT INTO public.notice VALUES (9631, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693460860); INSERT INTO public.notice VALUES (9632, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693461461); INSERT INTO public.notice VALUES (9637, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693464462); INSERT INTO public.notice VALUES (9638, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693465060); INSERT INTO public.notice VALUES (9639, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693465662); INSERT INTO public.notice VALUES (9640, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693466261); INSERT INTO public.notice VALUES (9641, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693466861); INSERT INTO public.notice VALUES (9642, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693467460); INSERT INTO public.notice VALUES (9643, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693468061); INSERT INTO public.notice VALUES (9646, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693469860); INSERT INTO public.notice VALUES (9654, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693474662); INSERT INTO public.notice VALUES (9655, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693475261); INSERT INTO public.notice VALUES (9656, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693475860); INSERT INTO public.notice VALUES (9627, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693458461); INSERT INTO public.notice VALUES (9628, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693459060); INSERT INTO public.notice VALUES (9629, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693459661); INSERT INTO public.notice VALUES (9633, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693462061); INSERT INTO public.notice VALUES (9634, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693462660); INSERT INTO public.notice VALUES (9635, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693463260); INSERT INTO public.notice VALUES (9636, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693463861); INSERT INTO public.notice VALUES (9644, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693468661); INSERT INTO public.notice VALUES (9645, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693469260); INSERT INTO public.notice VALUES (9647, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693470461); INSERT INTO public.notice VALUES (9648, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693471060); INSERT INTO public.notice VALUES (9649, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693471660); INSERT INTO public.notice VALUES (9650, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693472261); INSERT INTO public.notice VALUES (9651, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693472861); INSERT INTO public.notice VALUES (9652, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693473461); INSERT INTO public.notice VALUES (9653, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693474060); INSERT INTO public.notice VALUES (9657, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693476461); INSERT INTO public.notice VALUES (9658, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693477061); INSERT INTO public.notice VALUES (9659, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693477660); INSERT INTO public.notice VALUES (9660, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693478260); INSERT INTO public.notice VALUES (9661, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693478862); INSERT INTO public.notice VALUES (9662, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693479461); INSERT INTO public.notice VALUES (9663, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693480060); INSERT INTO public.notice VALUES (9664, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693480660); INSERT INTO public.notice VALUES (9665, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693481261); INSERT INTO public.notice VALUES (9666, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693481862); INSERT INTO public.notice VALUES (9667, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693482460); INSERT INTO public.notice VALUES (9668, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693483062); INSERT INTO public.notice VALUES (9669, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693483661); INSERT INTO public.notice VALUES (9670, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693484260); INSERT INTO public.notice VALUES (9671, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693484860); INSERT INTO public.notice VALUES (9672, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693485461); INSERT INTO public.notice VALUES (9673, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693486061); INSERT INTO public.notice VALUES (9674, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693486660); INSERT INTO public.notice VALUES (9675, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693487261); INSERT INTO public.notice VALUES (9676, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693487861); INSERT INTO public.notice VALUES (9677, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693488460); INSERT INTO public.notice VALUES (9678, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693489060); INSERT INTO public.notice VALUES (9679, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693489661); INSERT INTO public.notice VALUES (9680, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693490261); INSERT INTO public.notice VALUES (9681, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693490860); INSERT INTO public.notice VALUES (9682, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693491460); INSERT INTO public.notice VALUES (9683, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693492061); INSERT INTO public.notice VALUES (9684, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693492661); INSERT INTO public.notice VALUES (9685, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693493260); INSERT INTO public.notice VALUES (9686, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693493862); INSERT INTO public.notice VALUES (9687, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693494461); INSERT INTO public.notice VALUES (9688, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693495061); INSERT INTO public.notice VALUES (9689, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693495660); INSERT INTO public.notice VALUES (9690, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693496261); INSERT INTO public.notice VALUES (9691, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693496861); INSERT INTO public.notice VALUES (9692, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693497460); INSERT INTO public.notice VALUES (9693, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693498061); INSERT INTO public.notice VALUES (9694, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693498661); INSERT INTO public.notice VALUES (9695, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693499260); INSERT INTO public.notice VALUES (9696, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693499862); INSERT INTO public.notice VALUES (9697, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693500461); INSERT INTO public.notice VALUES (9698, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693501061); INSERT INTO public.notice VALUES (9699, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693501660); INSERT INTO public.notice VALUES (9700, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693502259); INSERT INTO public.notice VALUES (9701, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693502861); INSERT INTO public.notice VALUES (9702, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693503460); INSERT INTO public.notice VALUES (9703, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693504060); INSERT INTO public.notice VALUES (9704, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693504661); INSERT INTO public.notice VALUES (9705, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693505261); INSERT INTO public.notice VALUES (9709, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693507660); INSERT INTO public.notice VALUES (9710, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693508260); INSERT INTO public.notice VALUES (9711, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693508861); INSERT INTO public.notice VALUES (10103, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693744059); INSERT INTO public.notice VALUES (10124, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693756660); INSERT INTO public.notice VALUES (10133, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com ', 1693762071); INSERT INTO public.notice VALUES (10140, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693766261); INSERT INTO public.notice VALUES (10141, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693766861); INSERT INTO public.notice VALUES (10153, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693774060); INSERT INTO public.notice VALUES (10156, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693775860); INSERT INTO public.notice VALUES (10157, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693776460); INSERT INTO public.notice VALUES (9706, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693505860); INSERT INTO public.notice VALUES (9707, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693506460); INSERT INTO public.notice VALUES (9708, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693507061); INSERT INTO public.notice VALUES (9712, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693509461); INSERT INTO public.notice VALUES (9713, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693510060); INSERT INTO public.notice VALUES (9714, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693510660); INSERT INTO public.notice VALUES (9715, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693511261); INSERT INTO public.notice VALUES (9716, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693511861); INSERT INTO public.notice VALUES (9717, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693512460); INSERT INTO public.notice VALUES (9718, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693513061); INSERT INTO public.notice VALUES (9719, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693513661); INSERT INTO public.notice VALUES (9720, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693514260); INSERT INTO public.notice VALUES (9721, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693514860); INSERT INTO public.notice VALUES (9722, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693515461); INSERT INTO public.notice VALUES (9723, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693516061); INSERT INTO public.notice VALUES (9724, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693516660); INSERT INTO public.notice VALUES (9725, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693517260); INSERT INTO public.notice VALUES (9731, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693520860); INSERT INTO public.notice VALUES (9732, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693521460); INSERT INTO public.notice VALUES (9743, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693528060); INSERT INTO public.notice VALUES (9744, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693528661); INSERT INTO public.notice VALUES (9745, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693529261); INSERT INTO public.notice VALUES (9746, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693529860); INSERT INTO public.notice VALUES (9747, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693530459); INSERT INTO public.notice VALUES (9748, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693531061); INSERT INTO public.notice VALUES (9779, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693549660); INSERT INTO public.notice VALUES (9781, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693550861); INSERT INTO public.notice VALUES (10105, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693745260); INSERT INTO public.notice VALUES (10106, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693745860); INSERT INTO public.notice VALUES (10107, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693746461); INSERT INTO public.notice VALUES (9726, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693517861); INSERT INTO public.notice VALUES (9727, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693518461); INSERT INTO public.notice VALUES (9728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693519060); INSERT INTO public.notice VALUES (9729, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693519661); INSERT INTO public.notice VALUES (9730, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693520261); INSERT INTO public.notice VALUES (9733, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693522061); INSERT INTO public.notice VALUES (9734, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693522661); INSERT INTO public.notice VALUES (9735, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693523260); INSERT INTO public.notice VALUES (9736, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693523860); INSERT INTO public.notice VALUES (9737, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693524461); INSERT INTO public.notice VALUES (9738, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693525060); INSERT INTO public.notice VALUES (9739, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693525660); INSERT INTO public.notice VALUES (9740, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693526261); INSERT INTO public.notice VALUES (9741, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693526861); INSERT INTO public.notice VALUES (9742, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693527460); INSERT INTO public.notice VALUES (9749, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693531660); INSERT INTO public.notice VALUES (9750, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693532260); INSERT INTO public.notice VALUES (9751, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693532861); INSERT INTO public.notice VALUES (9752, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693533461); INSERT INTO public.notice VALUES (9753, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693534060); INSERT INTO public.notice VALUES (9754, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693534660); INSERT INTO public.notice VALUES (9755, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693535261); INSERT INTO public.notice VALUES (9756, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693535860); INSERT INTO public.notice VALUES (9757, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693536460); INSERT INTO public.notice VALUES (9758, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693537061); INSERT INTO public.notice VALUES (9759, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693537661); INSERT INTO public.notice VALUES (9760, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693538260); INSERT INTO public.notice VALUES (9761, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693538860); INSERT INTO public.notice VALUES (9762, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693539461); INSERT INTO public.notice VALUES (9763, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693540060); INSERT INTO public.notice VALUES (9764, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693540660); INSERT INTO public.notice VALUES (9765, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693541265); INSERT INTO public.notice VALUES (9766, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693541861); INSERT INTO public.notice VALUES (9767, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693542460); INSERT INTO public.notice VALUES (9768, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693543060); INSERT INTO public.notice VALUES (9769, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693543662); INSERT INTO public.notice VALUES (9770, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693544261); INSERT INTO public.notice VALUES (9771, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693544861); INSERT INTO public.notice VALUES (9772, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693545460); INSERT INTO public.notice VALUES (9773, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693546061); INSERT INTO public.notice VALUES (9774, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693546660); INSERT INTO public.notice VALUES (9775, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693547260); INSERT INTO public.notice VALUES (9776, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693547861); INSERT INTO public.notice VALUES (9777, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693548461); INSERT INTO public.notice VALUES (9778, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693549060); INSERT INTO public.notice VALUES (9780, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693550261); INSERT INTO public.notice VALUES (9782, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693551460); INSERT INTO public.notice VALUES (9783, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693552059); INSERT INTO public.notice VALUES (9784, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693552661); INSERT INTO public.notice VALUES (9785, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693553260); INSERT INTO public.notice VALUES (9786, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693553860); INSERT INTO public.notice VALUES (9787, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693554461); INSERT INTO public.notice VALUES (9788, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693555061); INSERT INTO public.notice VALUES (9789, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693555660); INSERT INTO public.notice VALUES (9790, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693556259); INSERT INTO public.notice VALUES (9791, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693556861); INSERT INTO public.notice VALUES (9792, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693557460); INSERT INTO public.notice VALUES (9793, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693558060); INSERT INTO public.notice VALUES (9794, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693558661); INSERT INTO public.notice VALUES (9795, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693559261); INSERT INTO public.notice VALUES (9796, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693559860); INSERT INTO public.notice VALUES (9797, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693560460); INSERT INTO public.notice VALUES (9798, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693561062); INSERT INTO public.notice VALUES (9799, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693561661); INSERT INTO public.notice VALUES (9800, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693562260); INSERT INTO public.notice VALUES (9801, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693562859); INSERT INTO public.notice VALUES (9802, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693563461); INSERT INTO public.notice VALUES (9803, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693564061); INSERT INTO public.notice VALUES (9804, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693564660); INSERT INTO public.notice VALUES (9805, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693565261); INSERT INTO public.notice VALUES (9806, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693565861); INSERT INTO public.notice VALUES (9807, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693566460); INSERT INTO public.notice VALUES (9808, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693567060); INSERT INTO public.notice VALUES (9809, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693567661); INSERT INTO public.notice VALUES (9824, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693576660); INSERT INTO public.notice VALUES (9810, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693568260); INSERT INTO public.notice VALUES (9811, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693568860); INSERT INTO public.notice VALUES (9812, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693569461); INSERT INTO public.notice VALUES (9813, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693570061); INSERT INTO public.notice VALUES (9814, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693570660); INSERT INTO public.notice VALUES (9815, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693571259); INSERT INTO public.notice VALUES (9816, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693571861); INSERT INTO public.notice VALUES (9817, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693572460); INSERT INTO public.notice VALUES (9818, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693573060); INSERT INTO public.notice VALUES (9819, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693573662); INSERT INTO public.notice VALUES (9820, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693574261); INSERT INTO public.notice VALUES (9821, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693574860); INSERT INTO public.notice VALUES (9822, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693575460); INSERT INTO public.notice VALUES (9823, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693576061); INSERT INTO public.notice VALUES (9832, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693581460); INSERT INTO public.notice VALUES (9825, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693577260); INSERT INTO public.notice VALUES (9826, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693577862); INSERT INTO public.notice VALUES (9827, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693578462); INSERT INTO public.notice VALUES (9828, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693579061); INSERT INTO public.notice VALUES (9829, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693579660); INSERT INTO public.notice VALUES (9830, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693580261); INSERT INTO public.notice VALUES (9831, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693580861); INSERT INTO public.notice VALUES (10108, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693747061); INSERT INTO public.notice VALUES (10109, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693747660); INSERT INTO public.notice VALUES (10198, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693801061); INSERT INTO public.notice VALUES (10199, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693801660); INSERT INTO public.notice VALUES (10200, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693802260); INSERT INTO public.notice VALUES (10201, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693802861); INSERT INTO public.notice VALUES (10202, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693803461); INSERT INTO public.notice VALUES (10203, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693804060); INSERT INTO public.notice VALUES (9833, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693582060); INSERT INTO public.notice VALUES (9834, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693582661); INSERT INTO public.notice VALUES (9835, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693583260); INSERT INTO public.notice VALUES (9836, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693583860); INSERT INTO public.notice VALUES (9837, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693584461); INSERT INTO public.notice VALUES (9838, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693585061); INSERT INTO public.notice VALUES (9839, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693585660); INSERT INTO public.notice VALUES (9840, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693586259); INSERT INTO public.notice VALUES (9841, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693586861); INSERT INTO public.notice VALUES (9842, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693587460); INSERT INTO public.notice VALUES (9843, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693588060); INSERT INTO public.notice VALUES (9844, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693588661); INSERT INTO public.notice VALUES (9845, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693589261); INSERT INTO public.notice VALUES (9846, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693589860); INSERT INTO public.notice VALUES (9847, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693590460); INSERT INTO public.notice VALUES (9848, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693591061); INSERT INTO public.notice VALUES (9849, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693591661); INSERT INTO public.notice VALUES (9850, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693592260); INSERT INTO public.notice VALUES (9851, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693592860); INSERT INTO public.notice VALUES (9852, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693593461); INSERT INTO public.notice VALUES (9853, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693594060); INSERT INTO public.notice VALUES (9854, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693594660); INSERT INTO public.notice VALUES (9855, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693595261); INSERT INTO public.notice VALUES (9856, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693595861); INSERT INTO public.notice VALUES (9869, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693603661); INSERT INTO public.notice VALUES (9870, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693604261); INSERT INTO public.notice VALUES (9871, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693604860); INSERT INTO public.notice VALUES (9873, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693606061); INSERT INTO public.notice VALUES (9874, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693606661); INSERT INTO public.notice VALUES (9875, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693607260); INSERT INTO public.notice VALUES (9857, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693596460); INSERT INTO public.notice VALUES (9858, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693597060); INSERT INTO public.notice VALUES (9859, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693597661); INSERT INTO public.notice VALUES (9860, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693598261); INSERT INTO public.notice VALUES (9861, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693598860); INSERT INTO public.notice VALUES (9862, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693599461); INSERT INTO public.notice VALUES (9863, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693600061); INSERT INTO public.notice VALUES (9864, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693600660); INSERT INTO public.notice VALUES (9865, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693601260); INSERT INTO public.notice VALUES (9866, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693601861); INSERT INTO public.notice VALUES (9867, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693602460); INSERT INTO public.notice VALUES (9868, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693603060); INSERT INTO public.notice VALUES (9872, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693605460); INSERT INTO public.notice VALUES (9876, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693607860); INSERT INTO public.notice VALUES (9877, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693608461); INSERT INTO public.notice VALUES (9878, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693609061); INSERT INTO public.notice VALUES (9879, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693609660); INSERT INTO public.notice VALUES (9880, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693610261); INSERT INTO public.notice VALUES (9881, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693610861); INSERT INTO public.notice VALUES (9882, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693611460); INSERT INTO public.notice VALUES (10110, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693748261); INSERT INTO public.notice VALUES (10111, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693748861); INSERT INTO public.notice VALUES (10112, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693749461); INSERT INTO public.notice VALUES (10113, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693750060); INSERT INTO public.notice VALUES (10114, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693750659); INSERT INTO public.notice VALUES (10115, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693751261); INSERT INTO public.notice VALUES (10116, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693751862); INSERT INTO public.notice VALUES (10117, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693752460); INSERT INTO public.notice VALUES (10118, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693753062); INSERT INTO public.notice VALUES (10119, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693753661); INSERT INTO public.notice VALUES (9883, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693612060); INSERT INTO public.notice VALUES (9884, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693612661); INSERT INTO public.notice VALUES (9885, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693613261); INSERT INTO public.notice VALUES (10120, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693754260); INSERT INTO public.notice VALUES (10204, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693804660); INSERT INTO public.notice VALUES (10205, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693805261); INSERT INTO public.notice VALUES (10206, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693805860); INSERT INTO public.notice VALUES (10207, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693806460); INSERT INTO public.notice VALUES (10208, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693807059); INSERT INTO public.notice VALUES (10209, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693807661); INSERT INTO public.notice VALUES (10210, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693808260); INSERT INTO public.notice VALUES (10211, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693808860); INSERT INTO public.notice VALUES (10245, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693829261); INSERT INTO public.notice VALUES (10246, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693829860); INSERT INTO public.notice VALUES (10247, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693830460); INSERT INTO public.notice VALUES (10249, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693831661); INSERT INTO public.notice VALUES (10251, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693832860); INSERT INTO public.notice VALUES (10252, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693833461); INSERT INTO public.notice VALUES (10265, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693841261); INSERT INTO public.notice VALUES (10266, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693841862); INSERT INTO public.notice VALUES (10267, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693842461); INSERT INTO public.notice VALUES (10268, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693843060); INSERT INTO public.notice VALUES (10269, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693843660); INSERT INTO public.notice VALUES (10271, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693844861); INSERT INTO public.notice VALUES (10288, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693855061); INSERT INTO public.notice VALUES (10289, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693855661); INSERT INTO public.notice VALUES (10290, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693856260); INSERT INTO public.notice VALUES (10291, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693856859); INSERT INTO public.notice VALUES (10292, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693857461); INSERT INTO public.notice VALUES (10293, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693858060); INSERT INTO public.notice VALUES (10250, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693832261); INSERT INTO public.notice VALUES (10253, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693834061); INSERT INTO public.notice VALUES (10254, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693834660); INSERT INTO public.notice VALUES (10255, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693835262); INSERT INTO public.notice VALUES (10256, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693835861); INSERT INTO public.notice VALUES (10257, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693836460); INSERT INTO public.notice VALUES (10258, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693837060); INSERT INTO public.notice VALUES (10259, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693837662); INSERT INTO public.notice VALUES (10260, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693838261); INSERT INTO public.notice VALUES (10261, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693838861); INSERT INTO public.notice VALUES (10262, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693839461); INSERT INTO public.notice VALUES (10263, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693840061); INSERT INTO public.notice VALUES (10264, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693840661); INSERT INTO public.notice VALUES (10270, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': fatal: unable to access ''https://gitlab.com/dongtv2510/quanly-datdai.git/'': Could not resolve host: gitlab.com ', 1693844271); INSERT INTO public.notice VALUES (10272, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693845460); INSERT INTO public.notice VALUES (10273, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693846059); INSERT INTO public.notice VALUES (10274, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693846661); INSERT INTO public.notice VALUES (10275, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693847260); INSERT INTO public.notice VALUES (10276, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693847860); INSERT INTO public.notice VALUES (10277, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693848461); INSERT INTO public.notice VALUES (10278, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693849061); INSERT INTO public.notice VALUES (10279, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693849660); INSERT INTO public.notice VALUES (10280, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693850260); INSERT INTO public.notice VALUES (10281, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693850861); INSERT INTO public.notice VALUES (10282, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693851460); INSERT INTO public.notice VALUES (10283, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693852060); INSERT INTO public.notice VALUES (10284, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693852661); INSERT INTO public.notice VALUES (10285, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693853261); INSERT INTO public.notice VALUES (10286, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693853860); INSERT INTO public.notice VALUES (10287, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693854460); INSERT INTO public.notice VALUES (10300, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693862261); INSERT INTO public.notice VALUES (10294, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693858660); INSERT INTO public.notice VALUES (10295, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693859261); INSERT INTO public.notice VALUES (10296, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693859861); INSERT INTO public.notice VALUES (10297, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693860460); INSERT INTO public.notice VALUES (10298, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693861060); INSERT INTO public.notice VALUES (10299, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693861661); INSERT INTO public.notice VALUES (13415, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695731983); INSERT INTO public.notice VALUES (13416, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695732584); INSERT INTO public.notice VALUES (13417, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695733183); INSERT INTO public.notice VALUES (13418, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695733783); INSERT INTO public.notice VALUES (13429, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695740383); INSERT INTO public.notice VALUES (13439, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695746383); INSERT INTO public.notice VALUES (13440, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695746983); INSERT INTO public.notice VALUES (13441, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695747584); INSERT INTO public.notice VALUES (13728, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695919785); INSERT INTO public.notice VALUES (10301, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693862860); INSERT INTO public.notice VALUES (10302, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693863461); INSERT INTO public.notice VALUES (10303, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693864061); INSERT INTO public.notice VALUES (10304, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693864660); INSERT INTO public.notice VALUES (10305, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693865260); INSERT INTO public.notice VALUES (10306, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693865861); INSERT INTO public.notice VALUES (10307, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693866461); INSERT INTO public.notice VALUES (10308, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693867060); INSERT INTO public.notice VALUES (10309, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693867660); INSERT INTO public.notice VALUES (10310, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693868261); INSERT INTO public.notice VALUES (10311, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693868861); INSERT INTO public.notice VALUES (10312, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693869460); INSERT INTO public.notice VALUES (10313, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693870060); INSERT INTO public.notice VALUES (10314, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693870661); INSERT INTO public.notice VALUES (10315, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693871260); INSERT INTO public.notice VALUES (10316, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693871860); INSERT INTO public.notice VALUES (10317, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693872461); INSERT INTO public.notice VALUES (10318, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693873061); INSERT INTO public.notice VALUES (10319, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693873660); INSERT INTO public.notice VALUES (10320, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693874260); INSERT INTO public.notice VALUES (10321, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693874861); INSERT INTO public.notice VALUES (10322, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693875460); INSERT INTO public.notice VALUES (10323, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693876060); INSERT INTO public.notice VALUES (10324, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693876661); INSERT INTO public.notice VALUES (10325, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693877261); INSERT INTO public.notice VALUES (10326, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693877860); INSERT INTO public.notice VALUES (10327, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693878460); INSERT INTO public.notice VALUES (10328, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693879061); INSERT INTO public.notice VALUES (10329, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693879660); INSERT INTO public.notice VALUES (10330, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693880260); INSERT INTO public.notice VALUES (10331, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693880860); INSERT INTO public.notice VALUES (10332, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693881461); INSERT INTO public.notice VALUES (10333, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693882062); INSERT INTO public.notice VALUES (10334, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693882660); INSERT INTO public.notice VALUES (10335, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693883261); INSERT INTO public.notice VALUES (10336, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693883861); INSERT INTO public.notice VALUES (10337, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693884460); INSERT INTO public.notice VALUES (10338, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693885062); INSERT INTO public.notice VALUES (10339, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693885661); INSERT INTO public.notice VALUES (10340, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693886260); INSERT INTO public.notice VALUES (10343, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693888085); INSERT INTO public.notice VALUES (10344, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693888661); INSERT INTO public.notice VALUES (10345, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693889260); INSERT INTO public.notice VALUES (10346, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693889862); INSERT INTO public.notice VALUES (10347, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693890472); INSERT INTO public.notice VALUES (10341, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693886860); INSERT INTO public.notice VALUES (10342, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693887462); INSERT INTO public.notice VALUES (10351, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693892860); INSERT INTO public.notice VALUES (10352, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693893460); INSERT INTO public.notice VALUES (10355, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693895260); INSERT INTO public.notice VALUES (10359, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693897660); INSERT INTO public.notice VALUES (13419, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695734382); INSERT INTO public.notice VALUES (13420, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695734984); INSERT INTO public.notice VALUES (13421, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695735583); INSERT INTO public.notice VALUES (13422, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695736183); INSERT INTO public.notice VALUES (13423, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695736784); INSERT INTO public.notice VALUES (13424, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695737384); INSERT INTO public.notice VALUES (13425, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695737983); INSERT INTO public.notice VALUES (13426, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695738582); INSERT INTO public.notice VALUES (13427, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1695739184); INSERT INTO public.notice VALUES (10348, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693891060); INSERT INTO public.notice VALUES (10349, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693891660); INSERT INTO public.notice VALUES (10350, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693892262); INSERT INTO public.notice VALUES (10353, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693894061); INSERT INTO public.notice VALUES (10354, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693894661); INSERT INTO public.notice VALUES (10356, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693895860); INSERT INTO public.notice VALUES (10357, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git'': remote: HTTP Basic: Access denied. The provided password or token is incorrect or your account has 2FA enabled and you must use a personal access token instead of a password. See https://gitlab.com/help/topics/git/troubleshooting_git#error-on-git-fetch-http-basic-access-denied fatal: Authentication failed for ''https://gitlab.com/dongtv2510/quanly-datdai.git/'' ', 1693896461); INSERT INTO public.notice VALUES (10358, 1, 'Failed to update mirror repository ''C:\opt\gitea\data\gitea-repositories\dongvntran\quanly-datdai.git''